@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #e8dfd0;
  --charcoal: #1c1c1c;
  --gold: #c4a35a;
  --olive: #3a4a3a;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--charcoal); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(28,28,28,0.95); backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.nav-logo { font-family: var(--font-display); color: var(--cream); font-size: 1.35rem; font-weight: 600; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.75rem; color: rgba(232,223,208,0.8); letter-spacing: 0.15em; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  margin-left: 1rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal); padding: 0.625rem 1.25rem; border-radius: 2px; transition: opacity 0.3s;
}
.nav-cta:hover { opacity: 0.9; }
.nav-hamburger { display: none; background: none; border: none; color: var(--cream); cursor: pointer; }
.nav-mobile { display: none; background: var(--charcoal); border-top: 1px solid rgba(232,223,208,0.1); padding: 0.5rem 1.5rem 1.5rem; }
.nav-mobile a { display: block; padding: 0.75rem 0; font-size: 0.75rem; color: rgba(232,223,208,0.8); letter-spacing: 0.15em; text-transform: uppercase; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-cta { display: block; text-align: center; margin-top: 0.75rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold); color: var(--charcoal); padding: 0.625rem 1.25rem; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-mobile.open { display: block; }
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(28,28,28,0.6); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }
.hero-eyebrow { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero h1 { font-family: var(--font-display); color: var(--cream); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-sub { color: rgba(232,223,208,0.8); font-size: 1rem; max-width: 40rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; background: var(--gold); color: var(--charcoal); padding: 0.875rem 2rem; border-radius: 2px; transition: opacity 0.3s; border: none; cursor: pointer; }
.btn-gold:hover { opacity: 0.9; }
.btn-outline { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; border: 2px solid var(--cream); color: var(--cream); padding: 0.875rem 2rem; border-radius: 2px; background: transparent; transition: background 0.3s; cursor: pointer; }
.btn-outline:hover { background: rgba(232,223,208,0.1); }

/* ─── SECTIONS ─────────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; }
.section-header { text-align: center; margin-bottom: 4rem; }

.bg-cream { background: var(--cream); }
.bg-charcoal { background: var(--charcoal); }
.bg-olive { background: var(--olive); }
.text-cream { color: var(--cream); }
.text-charcoal { color: var(--charcoal); }

@media (min-width: 768px) { .section { padding: 7rem 3rem; } }
@media (min-width: 1024px) { .section { padding: 8rem 5rem; } }

/* ─── ABOUT ────────────────────────────────────────── */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-img { width: 100%; height: 400px; object-fit: cover; border-radius: 2px; transition: transform 0.7s; }
.about-img-wrap { overflow: hidden; border-radius: 2px; }
.about-img-wrap:hover .about-img { transform: scale(1.05); }
@media (min-width: 768px) { .about-img { height: 520px; } }
.about-text { color: rgba(28,28,28,0.8); line-height: 1.7; margin-bottom: 1.5rem; }
.about-stats { display: flex; gap: 3rem; margin-top: 2rem; }
.about-stat-num { font-family: var(--font-display); color: var(--gold); font-size: 1.8rem; font-weight: 700; }
.about-stat-label { font-size: 0.8rem; color: rgba(28,28,28,0.6); margin-top: 0.25rem; }

/* ─── SERVICES ─────────────────────────────────────── */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }
.service-card {
  background: var(--charcoal); border: 1px solid rgba(232,223,208,0.1);
  border-radius: 2px; padding: 2rem; transition: border-color 0.3s;
}
.service-card:hover { border-color: rgba(196,163,90,0.4); }
.service-icon { color: var(--gold); margin-bottom: 1.25rem; font-size: 2rem; }
.service-card h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.2rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { color: rgba(232,223,208,0.6); font-size: 0.85rem; line-height: 1.6; }

/* ─── PROCESS ──────────────────────────────────────── */
.process-grid { display: grid; gap: 2rem; text-align: center; }
@media (min-width: 768px) { .process-grid { grid-template-columns: 1fr 1fr 1fr; gap: 4rem; } }
.process-num { font-family: var(--font-display); color: rgba(196,163,90,0.4); font-size: 4rem; font-weight: 700; margin-bottom: 1rem; }
.process-title { font-family: var(--font-display); color: var(--charcoal); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.75rem; }
.process-desc { color: rgba(28,28,28,0.7); font-size: 0.85rem; line-height: 1.6; max-width: 20rem; margin: 0 auto; }
.process-note { color: rgba(28,28,28,0.7); font-size: 0.85rem; text-align: center; margin-top: 2.5rem; }

/* ─── PROJECTS ─────────────────────────────────────── */
.projects-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .projects-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.project-card { position: relative; overflow: hidden; border-radius: 2px; display: block; }
.project-card img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.7s; }
@media (min-width: 768px) { .project-card img { height: 360px; } }
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.9), rgba(28,28,28,0.3) 50%, transparent);
}
.project-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2rem; }
.project-card-cat { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.5rem; }
.project-card h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
.project-card p { color: rgba(232,223,208,0.6); font-size: 0.8rem; line-height: 1.5; }

/* ─── TESTIMONIALS ─────────────────────────────────── */
.testimonials-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr 1fr; } }
.testimonial-card {
  background: var(--cream); border: 1px solid rgba(28,28,28,0.1);
  border-radius: 2px; padding: 2rem; transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.15em; }
.testimonial-text { color: rgba(28,28,28,0.8); font-size: 0.85rem; line-height: 1.6; font-style: italic; margin-bottom: 1.5rem; }
.testimonial-name { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); }
.testimonial-location { font-size: 0.7rem; color: rgba(28,28,28,0.5); }

/* ─── FAQ ──────────────────────────────────────────── */
.faq-wrap { max-width: 48rem; margin: 0 auto; }
.faq-item { border: 1px solid rgba(28,28,28,0.1); border-radius: 2px; margin-bottom: 0.5rem; background: var(--cream); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--charcoal); text-align: left;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.25rem 1rem; font-size: 0.85rem; color: rgba(28,28,28,0.7); line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-subtitle { color: rgba(28,28,28,0.7); font-size: 0.85rem; margin-top: 1rem; }

.faq-open-item { border: 1px solid rgba(28,28,28,0.1); border-radius: 2px; background: var(--cream); padding: 1.5rem 1.5rem; margin-bottom: 1rem; }
.faq-open-item h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.faq-open-item p { font-size: 0.85rem; color: rgba(28,28,28,0.7); line-height: 1.7; }
.faq-open-item p a { transition: color 0.3s; }
.faq-open-item p a:hover { opacity: 0.8; }
.faq-group-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(28,28,28,0.1); }

/* ─── SERVICE AREA ─────────────────────────────────── */
.service-area-body { max-width: 48rem; margin: 0 auto 3rem; text-align: center; }
.service-area-body p { color: rgba(232,223,208,0.75); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.25rem; }
.service-area-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .service-area-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; } }
.service-area-card { border: 1px solid rgba(232,223,208,0.1); border-radius: 2px; padding: 2rem; }
.service-area-card h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-area-card p { color: rgba(232,223,208,0.6); font-size: 0.85rem; line-height: 1.65; }
.service-area-highlight { color: var(--gold) !important; font-weight: 600; font-size: 1rem !important; margin-bottom: 0.75rem !important; }
.service-area-closing { max-width: 48rem; margin: 0 auto 2.5rem; text-align: center; }
.service-area-closing h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.4rem; font-weight: 600; margin-bottom: 1rem; }
.service-area-closing p { color: rgba(232,223,208,0.7); font-size: 0.9rem; line-height: 1.7; }
.service-area-cta { text-align: center; margin-bottom: 1rem; }
.service-area-cta-text { color: rgba(232,223,208,0.8); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }

/* ─── CLOSING CTA ──────────────────────────────────── */
.closing-cta { padding: 6rem 1.5rem; background: var(--olive); text-align: center; }
.closing-cta h2 { font-family: var(--font-display); color: var(--cream); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; }
.closing-cta p { color: rgba(232,223,208,0.7); font-size: 1rem; line-height: 1.7; max-width: 36rem; margin: 0 auto 2.5rem; }

/* ─── CONTACT ──────────────────────────────────────── */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-info p { color: rgba(232,223,208,0.6); font-size: 0.85rem; margin-bottom: 0.75rem; }
.contact-desc { color: rgba(232,223,208,0.7); line-height: 1.7; margin-bottom: 2rem; }

/* Form layout */
.quote-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; gap: 1.5rem; margin-bottom: 0; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* Field wrapper */
.form-field { margin-bottom: 1.5rem; }
.form-field-full { margin-bottom: 1.5rem; }

/* Labels */
.form-label {
  display: block; font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,223,208,0.7);
  margin-bottom: 0.5rem;
}
.form-optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(232,223,208,0.4); }

/* Inputs */
.form-input {
  width: 100%; background: rgba(232,223,208,0.04); border: 1px solid rgba(232,223,208,0.15);
  color: var(--cream); font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.875rem 1rem; border-radius: 2px; outline: none; transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
.form-input::placeholder { color: rgba(232,223,208,0.25); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(196,163,90,0.15); }
textarea.form-input { resize: vertical; min-height: 7rem; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23c4a35a' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* Submit */
.form-submit { width: 100%; margin-top: 0.5rem; padding: 1rem 2rem; font-size: 0.8rem; }

/* Microcopy */
.form-microcopy {
  text-align: center; font-family: var(--font-body); font-size: 0.75rem;
  color: rgba(232,223,208,0.4); margin-top: 1rem; letter-spacing: 0.02em;
}

/* Success */
.form-success-msg { display: none; text-align: center; padding: 2rem 0; color: var(--gold); font-family: var(--font-display); font-size: 1.3rem; }

/* Mobile form spacing */
@media (max-width: 639px) {
  .form-row { gap: 0; }
  .form-field { margin-bottom: 1.25rem; }
  .form-input { padding: 1rem; font-size: 1rem; }
  .form-submit { padding: 1.1rem 2rem; font-size: 0.85rem; }
  .form-label { font-size: 0.8rem; margin-bottom: 0.6rem; }
}

/* ─── FOOTER ───────────────────────────────────────── */
footer { background: var(--charcoal); border-top: 1px solid rgba(232,223,208,0.1); padding: 4rem 1.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { font-family: var(--font-display); color: var(--cream); font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.footer-desc { color: rgba(232,223,208,0.5); font-size: 0.85rem; line-height: 1.6; }
.footer-heading { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-list li { color: rgba(232,223,208,0.6); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-list a:hover { color: var(--gold); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(232,223,208,0.1); text-align: center; color: rgba(232,223,208,0.3); font-size: 0.7rem; }

/* ─── PROJECT DETAIL ───────────────────────────────── */
.detail-section { min-height: 100vh; background: var(--cream); padding-top: 7rem; padding-bottom: 5rem; }
.detail-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .detail-inner { padding: 0 3rem; } }
@media (min-width: 1024px) { .detail-inner { padding: 0 5rem; } }
.detail-back { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(28,28,28,0.6); font-size: 0.85rem; margin-bottom: 2.5rem; transition: color 0.3s; }
.detail-back:hover { color: var(--gold); }
.detail-header { margin-bottom: 3rem; }
.detail-cat { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.75rem; }
.detail-title { font-family: var(--font-display); color: var(--charcoal); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; }
.detail-desc { color: rgba(28,28,28,0.7); font-size: 1.05rem; max-width: 40rem; }
.detail-price { color: var(--charcoal); font-weight: 600; margin-top: 1rem; }
.gallery-masonry { columns: 1; gap: 1rem; }
@media (min-width: 640px) { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }
.gallery-masonry img {
  width: 100%; border-radius: 2px; margin-bottom: 1rem;
  break-inside: avoid; transition: transform 0.7s;
}
.gallery-masonry img:hover { transform: scale(1.05); }

/* ─── PROJECT DETAIL EXTRAS ──────────────────────── */
.project-details-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.5rem;
  margin-bottom: 2.5rem; padding: 1.5rem; border: 1px solid rgba(28,28,28,0.1); border-radius: 2px;
}
.project-details-grid dt { font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.project-details-grid dd { font-size: 0.9rem; color: rgba(28,28,28,0.75); }
.project-craftsmanship { margin-bottom: 2.5rem; max-width: 40rem; }
.project-craftsmanship h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.75rem; }
.project-craftsmanship p { color: rgba(28,28,28,0.75); font-size: 0.95rem; line-height: 1.75; }
.project-cta-block {
  text-align: center; padding: 3rem 2rem; margin: 3rem 0;
  background: var(--charcoal); border-radius: 2px;
}
.project-cta-block p { color: rgba(232,223,208,0.8); font-size: 1rem; line-height: 1.7; max-width: 36rem; margin: 0 auto 1.5rem; }
.project-internal-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; margin-bottom: 2rem; }
.project-internal-links a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(196,163,90,0.3); padding-bottom: 0.25rem; transition: border-color 0.3s;
}
.project-internal-links a:hover { border-color: var(--gold); }

/* ─── SERVICE AREA PAGE ────────────────────────────── */
.sa-page-content { max-width: 48rem; }
.sa-intro { color: rgba(28,28,28,0.8); font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
.sa-page-content h2 { font-family: var(--font-display); color: var(--charcoal); font-size: 1.5rem; font-weight: 600; margin: 2.5rem 0 1rem; }
.sa-page-content p { color: rgba(28,28,28,0.75); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }
.sa-list { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.sa-list li { color: rgba(28,28,28,0.75); font-size: 0.95rem; line-height: 1.8; list-style: disc; }
.sa-list-locations { columns: 2; }
@media (min-width: 640px) { .sa-list-locations { columns: 3; } }
.sa-page-cta { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(28,28,28,0.1); text-align: center; }
.sa-page-cta h2 { text-align: center; }
.sa-page-cta p { text-align: center; margin-bottom: 1.5rem; }

/* ─── BLOG INDEX ───────────────────────────────────── */
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.blog-card { background: var(--cream); border: 1px solid rgba(28,28,28,0.08); border-radius: 2px; overflow: hidden; transition: box-shadow 0.3s; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.blog-card-img { width: 100%; height: 220px; object-fit: cover; }
@media (min-width: 768px) { .blog-card-img { height: 260px; } }
.blog-card-body { padding: 1.75rem; }
.blog-card-meta { font-size: 0.7rem; color: rgba(28,28,28,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; margin-bottom: 0.75rem; }
.blog-card-title a { color: inherit; transition: color 0.3s; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 0.85rem; color: rgba(28,28,28,0.65); line-height: 1.65; margin-bottom: 1.25rem; }
.blog-card-link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); border-bottom: 1px solid rgba(196,163,90,0.3); padding-bottom: 2px; transition: border-color 0.3s; }
.blog-card-link:hover { border-color: var(--gold); }

/* ─── BLOG POST ────────────────────────────────────── */
.blog-post { max-width: 44rem; }
.blog-post-hero { width: 100%; height: auto; border-radius: 2px; margin-bottom: 2rem; }
.blog-post-meta { font-size: 0.7rem; color: rgba(28,28,28,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.blog-post h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 1rem; }
.blog-post h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--charcoal); margin: 2.5rem 0 1rem; }
.blog-post h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--charcoal); margin: 2rem 0 0.75rem; }
.blog-post p { font-size: 0.95rem; color: rgba(28,28,28,0.8); line-height: 1.8; margin-bottom: 1.25rem; }
.blog-post strong { color: var(--charcoal); }
.blog-post ul, .blog-post ol { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.blog-post li { font-size: 0.95rem; color: rgba(28,28,28,0.75); line-height: 1.8; margin-bottom: 0.25rem; list-style: disc; }
.blog-post ol li { list-style: decimal; }
.blog-post hr { border: none; border-top: 1px solid rgba(28,28,28,0.1); margin: 2.5rem 0; }
.blog-post a { color: var(--gold); transition: opacity 0.3s; }
.blog-post a:hover { opacity: 0.8; }
.blog-post-cta { text-align: center; padding: 2.5rem 2rem; margin: 3rem 0 2rem; background: var(--charcoal); border-radius: 2px; }
.blog-post-cta p { color: rgba(232,223,208,0.8); font-size: 1rem; line-height: 1.7; max-width: 36rem; margin: 0 auto 1.5rem; }
.blog-post-links { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(28,28,28,0.1); }
.blog-post-links h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 1rem; }
.blog-post-links ul { padding-left: 0; }
.blog-post-links li { list-style: none; margin-bottom: 0.5rem; }
.blog-post-links a { font-size: 0.85rem; }

/* ─── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp 0.6s ease both; }
