/* =================================================================
   Fernanda Design Studio — landing page styles
   Palette: ivory / greige / charcoal with a warm brass accent.
   Type: Cormorant Garamond (display serif) + Jost (sans).
   ================================================================= */

:root {
  --ivory:    #f7f4ef;
  --cream:    #efeae1;
  --greige:   #d9d1c4;
  --taupe:    #a99b87;
  --charcoal: #2c2a27;
  --ink:      #1c1b19;
  --brass:    #a9874f;
  --brass-dk: #8a6d3a;
  --white:    #ffffff;

  --maxw: 1140px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brass);
  margin-bottom: 0.9rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 36px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-weight: 400;
}
.btn-primary { background: #A0220A; color: var(--white); }
.btn-primary:hover { background: #7D1A08; color: var(--white); }
.btn-ghost { background: transparent; color: var(--ivory); border-color: rgba(247,244,239,0.6); }
.btn-ghost:hover { background: var(--ivory); color: var(--charcoal); }
.btn-block { width: 100%; text-align: center; border: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--greige);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-logo { height: 40px; }
.brand-mark { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); letter-spacing: 0.02em; }
.brand-sub { font-family: var(--sans); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.34em; color: var(--taupe); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { text-decoration: none; color: var(--charcoal); font-size: 0.84rem; letter-spacing: 0.06em; transition: color 0.2s; }
.nav a:hover { color: var(--brass); }
.nav-cta { border: 1px solid var(--charcoal); padding: 11px 20px; }
.nav-cta:hover { background: var(--charcoal); color: var(--ivory) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); transition: 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 86vh; display: flex; align-items: center; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: url('assets/images/hero.jpg') center/cover no-repeat;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Static hero image on mobile (save data) and when reduced motion is preferred */
@media (max-width: 768px) { .hero-video { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,19,17,0.62) 0%, rgba(20,19,17,0.30) 60%, rgba(20,19,17,0.12) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--ivory); padding-top: 60px; padding-bottom: 60px; max-width: 760px; }
.hero-content .eyebrow { color: #e6d3b3; }
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); color: var(--ivory); font-weight: 500; text-wrap: balance; max-width: 12ch; }
.hero-lede { font-size: 1.12rem; margin: 1.6rem 0 2.4rem; max-width: 540px; color: #ece7df; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust { background: var(--charcoal); color: var(--ivory); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 30px 28px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.trust-item strong { font-family: var(--serif); font-size: 1.25rem; color: #e6d3b3; font-weight: 500; }
.trust-item span { font-size: 0.78rem; letter-spacing: 0.08em; color: #c9c2b6; text-transform: uppercase; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--cream); }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-lede { margin-top: 1rem; color: #5b564e; font-size: 1.05rem; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: var(--white); padding: 44px 34px; border: 1px solid var(--greige); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(44,42,39,0.10); }
.card-icon { font-size: 1.8rem; color: var(--brass); margin-bottom: 18px; }
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { color: #5b564e; font-size: 0.96rem; }

/* ---------- Gallery ----------
   Replace each background with a real photo:
   .work-1 { background: url('assets/images/work-1.jpg') center/cover; }
*/
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-tile {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  display: flex; align-items: flex-end;
  background-size: cover; background-position: center;
}
.work-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,19,17,0.55), transparent 55%); transition: opacity 0.3s; }
.work-tile figcaption { position: relative; z-index: 2; color: var(--ivory); padding: 18px 20px; font-size: 0.86rem; letter-spacing: 0.06em; }
.work-tile:hover { transform: none; }
.work-1 { background-image: url('assets/images/work-1.jpg'); }
.work-2 { background-image: url('assets/images/work-2.jpg'); }
.work-3 { background-image: url('assets/images/work-3.jpg'); }
.work-4 { background-image: url('assets/images/work-4.jpg'); }
.work-5 { background-image: url('assets/images/work-5.jpg'); }
.work-6 { background-image: url('assets/images/work-6.jpg'); }
.comm-1 { background-image: url('assets/images/commercial-1.jpg'); }
.comm-2 { background-image: url('assets/images/commercial-2.jpg'); }
.hosp-1 { background-image: url('assets/images/hospitality-1.jpg'); }
.hosp-2 { background-image: url('assets/images/hospitality-2.jpg'); }
.render-1 { background-image: url('assets/images/render-1.jpg'); }
.edesign-1 { background-image: url('assets/images/edesign-1.jpg'); }
/* Full-width sector feature banner */
.sector-feature { width: 100%; aspect-ratio: 16 / 9; max-height: 62vh; background-size: cover; background-position: center; }

/* ---------- Process steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
.step { padding-top: 20px; border-top: 2px solid var(--brass); }
.step-num { font-family: var(--serif); font-size: 2.4rem; color: var(--taupe); display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: #5b564e; font-size: 0.94rem; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-media {
  aspect-ratio: 4 / 5; min-height: 420px;
  /* REPLACE with: background: url('assets/images/fernanda.jpg') center/cover; */
  background: linear-gradient(135deg, #b9ad97 0%, #8d8474 100%);
}
.about-text h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.about-text p { color: #5b564e; margin-bottom: 1.1rem; }
.about-text .btn { margin-top: 12px; }

/* ---------- Consultation / form ---------- */
.consultation { background: var(--charcoal); color: var(--ivory); }
.consult-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.consult-copy .eyebrow { color: #e6d3b3; }
.consult-copy h2 { color: var(--ivory); font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 1rem; }
.consult-copy > p { color: #cfc8bc; }
.consult-points { list-style: none; margin: 22px 0; }
.consult-points li { position: relative; padding-left: 26px; margin-bottom: 12px; color: #ddd6ca; font-size: 0.95rem; }
.consult-points li::before { content: "✦"; position: absolute; left: 0; color: var(--brass); }
.consult-call { margin-top: 24px; color: #cfc8bc; }
.phone-link { color: #e6d3b3; text-decoration: none; font-size: 1.2rem; font-family: var(--serif); display: inline-block; margin-left: 6px; }
.phone-link:hover { text-decoration: underline; }
.book-link { display: inline-block; margin-top: 16px; color: #cfc8bc; font-size: 0.9rem; text-decoration: none; border-bottom: 1px solid var(--taupe); padding-bottom: 2px; }
.book-link:hover { color: var(--ivory); }

.lead-form { background: var(--ivory); padding: 40px; color: var(--charcoal); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { display: block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 7px; color: #6b665d; }
.optional { text-transform: none; letter-spacing: 0; color: var(--taupe); }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--greige);
  background: var(--white); font-family: var(--sans); font-size: 0.95rem; color: var(--charcoal);
  transition: border-color 0.2s;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--brass); }
.lead-form .btn-block { margin-top: 6px; }
.form-fineprint { font-size: 0.74rem; color: var(--taupe); margin-top: 12px; text-align: center; }
.form-status { margin-top: 12px; text-align: center; font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--brass-dk); }
.form-status.err { color: #b0413e; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c9c2b6; padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.4fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid #3a3833; }
.footer-brand .brand-mark { color: var(--ivory); font-size: 1.6rem; }
.footer-brand .brand-sub { color: var(--taupe); }
.footer-brand p { margin-top: 14px; font-size: 0.9rem; max-width: 280px; }
.footer-col h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; color: var(--ivory); margin-bottom: 16px; font-weight: 500; }
.footer-col a { display: block; color: #c9c2b6; text-decoration: none; font-size: 0.9rem; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: #e6d3b3; }
.footer-area { font-size: 0.86rem; line-height: 1.9; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; font-size: 0.78rem; color: var(--taupe); flex-wrap: wrap; gap: 8px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { color: var(--taupe); text-decoration: none; }
.footer-legal a:hover { color: #e6d3b3; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 76px 0 auto 0; background: var(--ivory); flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--greige); transform: translateY(-130%); transition: transform 0.3s; }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; padding: 14px 28px; }
  .nav-cta { border: none; }
  .nav-toggle { display: flex; }
  .cards, .gallery, .steps { grid-template-columns: 1fr 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .about-inner, .consult-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .cards, .gallery, .steps, .field-row, .footer-inner { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .stats { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
}

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--charcoal); color: var(--ivory);
  padding: 10px 18px; text-decoration: none; font-size: 0.85rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass); outline-offset: 3px;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.container-narrow { max-width: 800px; }
.section-head-spaced { margin-top: 64px; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 28px 16px; background: var(--white); border: 1px solid var(--greige); }
.stat strong { display: block; font-family: var(--serif); font-size: 1.7rem; color: var(--brass-dk); font-weight: 500; margin-bottom: 6px; }
.stat span { font-size: 0.84rem; color: #5b564e; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: var(--white); border: 1px solid var(--greige); padding: 32px 28px; position: relative; }
.quote::before { content: "\201C"; font-family: var(--serif); font-size: 3.4rem; color: var(--greige); line-height: 0.6; display: block; margin-bottom: 8px; }
.quote blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--ink); font-style: italic; }
.quote figcaption { margin-top: 18px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); }
.quotes-note { text-align: center; margin-top: 24px; font-size: 0.8rem; color: var(--taupe); }

/* ---------- FAQ accordion ---------- */
.faq-group { margin-bottom: 40px; }
.faq { border-top: 1px solid var(--greige); }
.legal-updated { margin-top: 12px; font-size: 0.85rem; color: var(--taupe); font-style: italic; }
.faq-item { border-bottom: 1px solid var(--greige); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative;
  font-family: var(--serif); font-size: 1.3rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; color: var(--brass); font-weight: 300; transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 44px 24px 4px; color: #5b564e; margin-top: -4px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  display: none; text-align: center; text-decoration: none;
  background: var(--brass); color: var(--white);
  padding: 16px; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(44,42,39,0.28);
  transform: translateY(120%); transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }
@media (max-width: 760px) { .sticky-cta { display: block; } }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =================================================================
   Inner pages (sector pages, etc.)
   ================================================================= */
.subhero { background: var(--charcoal); color: var(--ivory); padding: 116px 0 76px; }
.subhero .eyebrow { color: #e6d3b3; }
.subhero h1 { color: var(--ivory); font-size: clamp(2.2rem, 4.6vw, 3.5rem); max-width: 16ch; text-wrap: balance; }
.subhero-lede { color: #ddd6ca; max-width: 580px; margin: 1.3rem 0 2rem; font-size: 1.08rem; }

.breadcrumb { font-size: 0.8rem; letter-spacing: 0.04em; color: #b7afa2; margin-bottom: 24px; }
.breadcrumb a { color: #cfc8bc; text-decoration: none; }
.breadcrumb a:hover { color: #e6d3b3; }
.breadcrumb span { margin: 0 9px; color: #7d766a; }

.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 44px; list-style: none; margin-top: 36px; }
.feature-list li { padding-left: 30px; position: relative; color: #5b564e; }
.feature-list li::before { content: "\2713"; position: absolute; left: 0; top: 1px; color: var(--brass); font-weight: 500; }
.feature-list strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 3px; }

.lede-block { max-width: 760px; }
.lede-block p { color: #5b564e; margin-bottom: 1.1rem; font-size: 1.05rem; }

.card-link { display: inline-block; margin-top: 18px; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-dk); text-decoration: none; border-bottom: 1px solid var(--greige); padding-bottom: 3px; transition: border-color 0.2s; }
.card-link:hover { border-color: var(--brass); }
.about-more { margin-left: 22px; }

.cta-band { background: var(--cream); text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 0.8rem; }
.cta-band p { color: #5b564e; max-width: 520px; margin: 0 auto 1.7rem; }

@media (max-width: 700px) { .feature-list { grid-template-columns: 1fr; } }

/* ---------- Portfolio index ---------- */
.section-cta { text-align: center; margin-top: 44px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-btn { font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 22px; border: 1px solid var(--greige); background: transparent; color: var(--charcoal); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--brass); color: var(--brass-dk); }
.filter-btn.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { display: block; text-decoration: none; color: inherit; }
.project-card .thumb { aspect-ratio: 4 / 3; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.project-card .thumb::after { content: ""; position: absolute; inset: 0; background: rgba(20,19,17,0); transition: background 0.3s; }
.project-card:hover .thumb::after { background: rgba(20,19,17,0.16); }
.project-card h3 { font-size: 1.4rem; margin: 16px 0 4px; }
.project-card .pmeta { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); }
.project-card[hidden] { display: none; }

/* ---------- Case study ---------- */
.case-hero-img { aspect-ratio: 16 / 9; background-size: cover; background-position: center; }
.case-meta { display: flex; flex-wrap: wrap; gap: 36px; padding: 28px 0; border-top: 1px solid var(--greige); border-bottom: 1px solid var(--greige); margin-bottom: 44px; }
.case-meta div { display: flex; flex-direction: column; gap: 4px; }
.case-meta dt { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin: 0; }
.case-meta dd { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin: 0; }
.case-meta dd a { color: var(--brass-dk); text-decoration: none; }
.prose-section { max-width: 760px; margin-bottom: 44px; }
.prose-section h2 { font-size: 1.7rem; margin-bottom: 12px; }
.prose-section p { color: #5b564e; }
.scope-block { margin-bottom: 44px; }
.scope-block h3 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--taupe); margin-bottom: 14px; }
.scope-tags { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.scope-tags li { font-size: 0.85rem; padding: 8px 16px; background: var(--white); border: 1px solid var(--greige); }
.scope-tags li a { color: var(--brass-dk); text-decoration: none; }
.scope-tags li a:hover { color: var(--brass); }
.project-nav { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--greige); padding-top: 28px; }
.project-nav a { text-decoration: none; color: var(--brass-dk); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.project-nav a:hover { color: var(--brass); }
@media (max-width: 760px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ---------- Journal ---------- */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 820px; margin: 0 auto; }
@media (max-width: 640px) { .cards-2 { grid-template-columns: 1fr; } }
.journal-card { display: flex; flex-direction: column; overflow: hidden; }
.card-thumb { display: block; aspect-ratio: 16 / 10; background-size: 100%; background-position: center; margin: -44px -34px 24px; transition: background-size .8s cubic-bezier(.2,.7,.2,1); }
.journal-card:hover .card-thumb { background-size: 108%; }
.journal-card h3 { font-size: 1.42rem; margin-bottom: 12px; }
.journal-card h3 a { color: inherit; text-decoration: none; transition: color 0.2s; }
.journal-card h3 a:hover { color: var(--brass-dk); }
.journal-card .card-link { margin-top: auto; }
.post-meta { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--taupe); margin-top: 14px; }
.post-meta-hero { color: #c9beac; margin-top: 18px; }
.article-lede { font-family: var(--serif); font-size: 1.4rem; line-height: 1.5; color: var(--ink); max-width: 760px; margin-bottom: 40px; }
.prose-section p a { color: var(--brass-dk); text-decoration: none; border-bottom: 1px solid var(--greige); transition: border-color 0.2s; }
.prose-section p a:hover { border-color: var(--brass); }

/* ---------- Shop the Look ---------- */
.shop-disclosure { background: var(--cream); border: 1px solid var(--greige); padding: 16px 22px; font-size: 0.86rem; color: #5b564e; margin-bottom: 52px; }
.shop-disclosure strong { color: var(--ink); }
.shop-room-head { text-align: left; max-width: none; margin: 0 0 28px; }
.room-block { margin-bottom: 60px; }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-thumb { aspect-ratio: 1 / 1; background-size: cover; background-position: center; margin-bottom: 14px; }
.product-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-blurb { color: #5b564e; font-size: 0.9rem; line-height: 1.55; margin-bottom: 12px; }
.shop-btn { font-size: 0.73rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-dk); text-decoration: none; border-bottom: 1px solid var(--greige); padding-bottom: 3px; transition: border-color 0.2s; }
.shop-btn:hover { border-color: var(--brass); }

/* =================================================================
   EPIC ENHANCEMENTS — bright editorial-luxe + dynamic motion
   Additive layer: grander type, airier space, cinematic motion,
   richer hovers. Respects prefers-reduced-motion at the bottom.
   ================================================================= */

/* --- Airier spacing & grander display type --- */
.section { padding: 118px 0; }
.section-head { margin-bottom: 68px; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); letter-spacing: -0.012em; }
.hero h1 { font-size: clamp(2.6rem, 5.8vw, 4.7rem); letter-spacing: -0.015em; }
.subhero { padding: 132px 0 88px; }
.subhero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); letter-spacing: -0.012em; }

/* --- Brass hairline accent beneath centered eyebrows --- */
.section-head .eyebrow { display: inline-block; }
.section-head .eyebrow::after {
  content: ""; display: block; width: 32px; height: 1px;
  background: var(--brass); margin: 12px auto 0; opacity: 0.75;
}

/* --- Faint premium paper grain for depth --- */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 60; opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* --- Nav: shrink + lift on scroll --- */
.site-header { transition: background .35s ease, box-shadow .35s ease, border-color .35s ease; }
.header-inner { transition: height .35s ease; }
.site-header.scrolled { background: rgba(247,244,239,0.82); box-shadow: 0 8px 34px rgba(44,42,39,0.08); border-bottom-color: transparent; }
.site-header.scrolled .header-inner { height: 62px; }
.nav a { position: relative; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

/* --- Hero: cinematic load reveal + slow Ken Burns --- */
@keyframes heroUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-content > * { opacity: 0; animation: heroUp 1s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-content > .eyebrow { animation-delay: .15s; }
.hero-content > h1 { animation-delay: .32s; }
.hero-content > .hero-lede { animation-delay: .52s; }
.hero-content > .hero-actions { animation-delay: .72s; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hero-media { animation: kenburns 24s ease-out both; }
/* scroll-down cue */
.hero-content::after {
  content: ""; position: absolute; left: 50%; bottom: -34px; width: 1px; height: 44px;
  background: linear-gradient(var(--ivory), transparent); opacity: .6;
  animation: cuedrop 2.2s ease-in-out infinite;
}
@keyframes cuedrop { 0%,100% { transform: translateY(0); opacity:.2;} 50% { transform: translateY(8px); opacity:.7; } }

/* --- Buttons: depth on hover --- */
.btn { position: relative; overflow: hidden; z-index: 0; }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; background: #7D1A08;
  transform: scaleX(0); transform-origin: left; z-index: -1;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover { background: #7D1A08; color: var(--white); }
.btn-primary:hover::before { transform: scaleX(1); }

/* --- Card-link underline sweep (overrides static border) --- */
.card-link { border-bottom: none !important; padding-bottom: 4px; }
.card-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.card-link:hover::after { transform: scaleX(1); }

/* --- Cards: deeper lift --- */
.card { transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease; }
.card:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(44,42,39,0.13); }

/* --- Gallery tiles: image zoom + caption lift --- */
.work-tile { background-size: 100%; transition: background-size .9s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease; }
.work-tile:hover { background-size: 113%; box-shadow: 0 22px 46px rgba(44,42,39,0.17); }
.work-tile figcaption { transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.work-tile:hover figcaption { transform: translateY(-4px); }

/* --- Portfolio thumbs & shop thumbs: zoom --- */
.project-card .thumb, .product-thumb { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .thumb { transform: scale(1.06); }
.product-card:hover .product-thumb { transform: scale(1.05); }

/* --- Richer scroll reveal (softer, longer, slight scale) --- */
.reveal { opacity: 0; transform: translateY(42px) scale(0.985); transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* --- Reduced motion: strip all of the above motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-content > *, .hero-media { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-content::after { display: none; }
  .reveal { transition: opacity .3s ease; transform: none; }
  .work-tile, .project-card .thumb, .product-thumb, .card { transition: none; }
}
.reels-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 720px; margin: 0 auto; }
.reel-tile { aspect-ratio: 9 / 16; background-size: cover; background-position: center; }
@media (max-width: 620px) { .shop-grid { grid-template-columns: 1fr 1fr; } }

/* =================================================================
   DEPTH & DRAMA — break the tonal monotony, add contrast + layering
   ================================================================= */

/* Cinematic dark statement band (full-bleed, parallax on desktop) */
.feature-band {
  position: relative; text-align: center; color: var(--ivory);
  padding: clamp(120px, 20vh, 210px) 0;
  background:
    linear-gradient(rgba(20,19,17,0.62), rgba(20,19,17,0.74)),
    url('assets/images/hospitality-1.jpg') center/cover no-repeat;
}
@media (min-width: 900px) { .feature-band { background-attachment: fixed; } }
.feature-band .eyebrow { color: #e6d3b3; }
.feature-band .eyebrow::after { background: #e6d3b3; }
.feature-band h2 {
  color: var(--ivory); font-size: clamp(2.5rem, 6.4vw, 5.2rem);
  line-height: 1.04; letter-spacing: -0.018em; max-width: 20ch; margin: 0 auto 1.5rem; text-wrap: balance;
}
.feature-band h2 em { color: #e6d3b3; font-style: italic; }
.feature-band .band-sub { color: #ddd6ca; max-width: 600px; margin: 0 auto 2.4rem; font-size: 1.1rem; }
.feature-band .btn-ghost { border-color: rgba(247,244,239,0.7); }

/* Resting depth (the site was flat — nothing lifted off the page) */
.card { box-shadow: 0 2px 22px rgba(44,42,39,0.05); }
.stat { box-shadow: 0 2px 18px rgba(44,42,39,0.05); }
.work-tile, .project-card .thumb, .case-hero-img, .sector-feature { box-shadow: 0 14px 36px rgba(44,42,39,0.12); }

/* About media: real image + strong shadow for editorial depth (was a flat gray box) */
.about-media {
  background: url('/assets/images/studio.jpg') center/cover no-repeat;
  box-shadow: 0 36px 68px rgba(44,42,39,0.20);
}

/* Slightly bolder eyebrow accents everywhere for rhythm */
.section-head .eyebrow::after { width: 40px; }

/* Every page's closing CTA becomes a dramatic dark parallax band (was flat cream) */
.cta-band {
  background: linear-gradient(rgba(20,19,17,0.76), rgba(20,19,17,0.82)), url('assets/images/hero.jpg') center/cover no-repeat;
  color: var(--ivory); padding: clamp(110px, 16vh, 180px) 0;
}
@media (min-width: 900px) { .cta-band { background-attachment: fixed; } }
.cta-band .eyebrow { color: #e6d3b3; }
.cta-band h2 { color: var(--ivory); font-size: clamp(2.2rem, 4.8vw, 3.7rem); letter-spacing: -0.012em; max-width: 20ch; margin: 0 auto 1rem; }
.cta-band p { color: #ddd6ca; }
.cta-band .btn-primary { background: transparent; color: var(--ivory); border-color: rgba(247,244,239,0.7); }

/* Oversized editorial numbers (stats + process were small and flat) */
.stat strong { font-size: clamp(2.4rem, 4.2vw, 3.4rem); }
.step-num { font-size: clamp(2.8rem, 4.4vw, 4rem); color: var(--greige); }

/* Immersive full-bleed image hero for inner detail pages (award-site style) */
.subhero.has-media { min-height: 74vh; display: flex; align-items: flex-end; padding: 0; overflow: hidden; }
.subhero.has-media .subhero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.subhero.has-media .subhero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,19,17,0.30) 0%, rgba(20,19,17,0.34) 45%, rgba(20,19,17,0.74) 100%);
}
.subhero.has-media > .container { position: relative; z-index: 2; padding-top: 132px; padding-bottom: 78px; }
.subhero.has-media h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
@media (min-width: 900px) { .subhero.has-media .subhero-media { background-attachment: fixed; } }
@media (max-width: 700px) { .subhero.has-media { min-height: 60vh; } }

/* Editorial process steps — huge ghosted numbers */
.steps { gap: 34px; }
.step { padding-top: 26px; }
.step-num { font-size: clamp(3.4rem, 5.2vw, 5rem); line-height: 0.82; margin-bottom: 18px; opacity: 0.85; }

/* =================================================================
   IMAGERY EXPANSION + EDITORIAL LAYOUTS (2026-07-22 redesign)
   New photography library, image-led panels, alternating editorial
   spreads, featured portfolio, richer rhythm. Fixes flagged bugs.
   ================================================================= */

/* ---- New image library (background classes) ---- */
.res-hero    { background-image: url('/assets/images/res-hero.jpg'); }
.res-kitchen { background-image: url('/assets/images/res-kitchen.jpg'); }
.res-suite   { background-image: url('/assets/images/res-suite.jpg'); }
.res-dining  { background-image: url('/assets/images/res-dining.jpg'); }
.res-office  { background-image: url('/assets/images/res-office.jpg'); }
.res-entry   { background-image: url('/assets/images/res-entry.jpg'); }
.res-bath    { background-image: url('/assets/images/res-bath.jpg'); }
.comm-hero      { background-image: url('/assets/images/comm-hero.jpg'); }
.comm-retail    { background-image: url('/assets/images/comm-retail.jpg'); }
.comm-workspace { background-image: url('/assets/images/comm-workspace.jpg'); }
.hosp-hero  { background-image: url('/assets/images/hosp-hero.jpg'); }
.hosp-hotel { background-image: url('/assets/images/hosp-hotel.jpg'); }
.hosp-bar   { background-image: url('/assets/images/hosp-bar.jpg'); }
.render-2   { background-image: url('/assets/images/render-2.jpg'); }
.edesign-2  { background-image: url('/assets/images/edesign-2.jpg'); }
.svc-execution { background-image: url('/assets/images/svc-execution.jpg'); }
.jrnl-palette    { background-image: url('/assets/images/jrnl-palette.jpg'); }
.jrnl-lighting   { background-image: url('/assets/images/jrnl-lighting.jpg'); }
.jrnl-smallspace { background-image: url('/assets/images/jrnl-smallspace.jpg'); }
.jrnl-budget     { background-image: url('/assets/images/jrnl-budget.jpg'); }
.jrnl-trends     { background-image: url('/assets/images/jrnl-trends.jpg'); }
.jrnl-consult    { background-image: url('/assets/images/jrnl-consult.jpg'); }
.proj-office { background-image: url('/assets/images/proj-office.jpg'); }
.studio      { background-image: url('/assets/images/studio.jpg'); }

/* ---- Bug fixes flagged in audit ---- */
.subhero.has-media { position: relative; isolation: isolate; }
.card-link { position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.nav[inert] { visibility: hidden; }
@media (min-width: 901px) { .nav[inert] { visibility: visible; } }

/* ---- Contrast: darker metadata text tokens (were failing AA) ---- */
:root { --meta-ink: #6f6656; }
.pmeta, .post-meta, .case-meta dt, .scope-block h3,
.project-card .pmeta, .product-card .pmeta { color: var(--meta-ink) !important; }
.sticky-cta { background: var(--brass-dk); color: #fff; }

/* ---- Image-led sector panels (home + sector index) ---- */
.sector-panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-panel {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 460px; padding: 34px; overflow: hidden; text-decoration: none;
  color: var(--ivory); background-size: cover; background-position: center;
  box-shadow: 0 14px 36px rgba(44,42,39,0.14);
}
.sector-panel::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,19,17,0.82) 0%, rgba(20,19,17,0.30) 55%, rgba(20,19,17,0.12) 100%);
  transition: background 0.4s ease;
}
.sector-panel > * { position: relative; z-index: 2; }
.sector-panel .sector-kicker { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #e6d3b3; margin-bottom: 10px; }
.sector-panel h3 { color: var(--ivory); font-size: 1.9rem; margin-bottom: 10px; }
.sector-panel p { color: #ece7df; font-size: 0.95rem; margin-bottom: 16px; }
.sector-panel .panel-link { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ivory); border-bottom: 1px solid rgba(247,244,239,0.5); padding-bottom: 3px; width: fit-content; transition: border-color 0.3s; }
.sector-panel:hover::after { background: linear-gradient(to top, rgba(20,19,17,0.88) 0%, rgba(20,19,17,0.42) 60%, rgba(20,19,17,0.20) 100%); }
.sector-panel:hover .panel-link { border-color: var(--brass); }
.sector-panel .bg-zoom { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.sector-panel:hover .bg-zoom { transform: scale(1.06); }

/* ---- Alternating editorial image + text spreads ---- */
.editorial { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.editorial + .editorial { margin-top: 96px; }
.editorial__media { aspect-ratio: 4 / 3; background-size: cover; background-position: center; box-shadow: 0 26px 54px rgba(44,42,39,0.16); }
.editorial--tall .editorial__media { aspect-ratio: 4 / 5; }
.editorial--reverse .editorial__media { order: 2; }
.editorial__body h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 1rem; }
.editorial__body h3 { font-size: 1.6rem; margin-bottom: 0.8rem; }
.editorial__body p { color: #5b564e; margin-bottom: 1rem; }
.editorial__body .card-link, .editorial__body .btn { margin-top: 8px; }

/* ---- Full-bleed image band (breaks long text pages) ---- */
.image-band { width: 100%; height: clamp(320px, 46vh, 560px); background-size: cover; background-position: center; box-shadow: inset 0 0 120px rgba(20,19,17,0.20); }

/* ---- Featured project (first card spans wide) ---- */
.portfolio-grid.has-feature .project-card:first-child { grid-column: span 2; }
.portfolio-grid.has-feature .project-card:first-child .thumb { aspect-ratio: 16 / 10; }
.portfolio-grid.has-feature .project-card:first-child h3 { font-size: 1.9rem; }
@media (max-width: 760px) { .portfolio-grid.has-feature .project-card:first-child { grid-column: span 2; } }
@media (max-width: 520px) { .portfolio-grid.has-feature .project-card:first-child { grid-column: auto; } }

/* ---- Home journal cards: give them thumbnails ---- */
#journal-teaser .journal-card { padding-top: 0; }

/* ---- Spacing rhythm modifiers (not everything at 118px) ---- */
.section--compact { padding: 76px 0; }
.section--flush-top { padding-top: 0; }

/* ---- Responsive for new components ---- */
@media (max-width: 900px) {
  .sector-panels { grid-template-columns: 1fr; }
  .sector-panel { min-height: 340px; }
  .editorial, .editorial--reverse { grid-template-columns: 1fr; gap: 30px; }
  .editorial--reverse .editorial__media { order: 0; }
  .editorial + .editorial { margin-top: 56px; }
  .portfolio-grid.has-feature .project-card:first-child { grid-column: auto; }
}
