/* =====================================================================
   LADYFINGERS FINE CATERING · Louisville, KY
   Palette: Warm Ivory · Deep Olive · Warm Brass
   Type: Fraunces (display) + Inter Tight (body) + JetBrains Mono (labels)
   Based on house skeleton — editorial luxury catering vertical
   ===================================================================== */

:root {
  --bg:           #faf5ea;       /* warm ivory */
  --bg-2:         #f2ead8;       /* antique linen */
  --paper:        #fffcf6;       /* cream white */
  --ink:          #1c1a12;       /* warm near-black */
  --ink-2:        #302e1e;
  --muted:        #706a52;
  --line:         rgba(28,26,18,.11);
  --olive:        #364420;       /* deep olive */
  --olive-2:      #26340f;       /* deeper olive */
  --herb:         #5c6e38;       /* medium olive */
  --brass:        #b8963e;       /* warm brass — eyebrow + accents */
  --brass-2:      #9a7a26;
  --gold:         #d4a843;       /* hero gold */
  --gold-2:       #b08930;
  --shadow-1:     0 1px 3px rgba(28,26,18,.06), 0 12px 30px rgba(28,26,18,.08);
  --shadow-2:     0 30px 80px rgba(28,26,18,.18);
  --serif:        "Fraunces", "Cormorant Garamond", Georgia, serif;
  --serif-disp:   "Fraunces", Georgia, serif;
  --sans:         "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:         "JetBrains Mono", ui-monospace, monospace;
  --max:          1320px;
  --gutter:       40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---- type ---- */
.display {
  font-family: var(--serif-disp);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}
h1.display    { font-size: clamp(3.6rem, 9vw, 8rem); font-weight: 300; }
h2.display    { font-size: clamp(2.8rem, 6vw, 5.4rem); font-weight: 300; }
h3.display    { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 400; }
.italic       { font-style: italic; font-weight: 300; }
.italic-thin  { font-style: italic; font-weight: 200; color: var(--herb); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass-2); font-weight: 500;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--brass-2);
}
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }

.lead {
  font-family: var(--serif);
  font-weight: 300; font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55; color: var(--ink-2); max-width: 56ch;
}
.body  { color: #4a4742; font-size: 1rem; line-height: 1.7; }
.tiny  { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ---- layout primitives ---- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.bleed { width: 100%; }
.section { padding: 140px 0; position: relative; }
.section.tight { padding: 90px 0; }
.row { display: flex; align-items: center; gap: 16px; }
.col { display: flex; flex-direction: column; }
.between { justify-content: space-between; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 30px; border-radius: 999px;
  font-size: .88rem; font-weight: 500; letter-spacing: .04em;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn .arrow { transition: transform .35s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-fill { background: var(--ink); color: var(--paper); }
.btn-fill:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn-ghost-light { border-color: var(--paper); color: var(--paper); }
.btn-ghost-light:hover { background: var(--paper); color: var(--olive); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 2px; transition: gap .3s ease;
}
.link-arrow:hover { gap: 14px; }

/* ---- announcement bar ---- */
.announce {
  background: var(--olive-2); color: var(--paper);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; padding: 10px 0; overflow: hidden;
}
.announce-track { display: flex; gap: 60px; white-space: nowrap; animation: slide 60s linear infinite; }
.announce-track span { display: inline-flex; align-items: center; gap: 14px; }
.announce-track .dot { color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250,245,234,.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-color: var(--line); background: rgba(250,245,234,.95); }
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 22px 0; }
.nav-left, .nav-right { display: flex; gap: 36px; align-items: center; }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: .88rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* text-only brand mark */
.brand-wm {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 2px; color: var(--olive); line-height: 1;
}
.brand-name {
  font-family: var(--serif-disp);
  font-style: italic; font-weight: 300;
  font-size: 1.65rem; letter-spacing: -.03em;
  color: var(--olive); white-space: nowrap;
}
.brand-name sup {
  font-size: .38em; font-weight: 400; vertical-align: super; margin-left: 2px; opacity: .65;
}
.brand-tag {
  font-family: var(--mono);
  font-size: .55rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}
/* light variant for footer */
.brand-wm-light .brand-name { color: var(--paper); }
.brand-wm-light .brand-tag { color: rgba(255,255,255,.45); }

.nav-book {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px; border: 1px solid var(--ink);
  font-size: .8rem; font-weight: 500;
}
.nav-book:hover { background: var(--ink); color: var(--paper); }

.menu-toggle { display: none; }
.nav-mobile { display: none; }
@media (max-width: 980px) {
  .wrap.nav-inner {
    grid-template-columns: 1fr auto; column-gap: 16px;
    padding-left: calc(var(--gutter) + 8px);
    padding-right: calc(var(--gutter) + 8px);
    padding-top: 18px; padding-bottom: 18px;
  }
  .nav-left, .nav-right { display: none; }
  .brand-wm { justify-self: start; }
  .menu-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; padding: 11px;
    border: 1px solid rgba(28,26,18,.35); border-radius: 999px;
    background: rgba(255,255,255,.45); backdrop-filter: blur(6px);
    width: 42px; height: 42px; align-items: center; justify-content: center;
    justify-self: end;
    transition: border-color .25s ease, background .25s ease;
  }
  .menu-toggle:hover, .menu-toggle:focus-visible {
    border-color: var(--ink); background: var(--paper);
  }
  .menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); display: block; }
  .nav-mobile {
    position: fixed; inset: 0; background: var(--paper); z-index: 90;
    display: none; flex-direction: column; padding: 100px 40px;
  }
  .nav-mobile.open { display: flex; }
  .nav-mobile a { padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.6rem; }
}

/* ===================== HERO ===================== */
.hero {
  position: relative; background: var(--olive-2); color: var(--paper);
  overflow: hidden; min-height: 92vh; display: flex; align-items: flex-end;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .55;
  transform: scale(1.05);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns { to { transform: scale(1.18) translateY(-2%); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(38,52,15,.55) 0%, rgba(38,52,15,.15) 40%, rgba(38,52,15,.92) 100%),
    radial-gradient(ellipse at 75% 20%, rgba(212,168,67,.12), transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; padding: 100px 0 70px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end;
  width: 100%;
}
.hero-content .eyebrow { color: var(--gold); }
.hero-content .eyebrow::before { background: var(--gold); }
.hero h1 {
  color: var(--paper);
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  font-weight: 200; letter-spacing: -.035em; line-height: .92;
  margin: 24px 0 28px;
}
.hero h1 .l1, .hero h1 .l2, .hero h1 .l3 { display: block; opacity: 0; transform: translateY(24px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .l1 { animation-delay: .15s; }
.hero h1 .l2 { animation-delay: .3s; font-style: italic; color: var(--gold); font-weight: 200; }
.hero h1 .l3 { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-side {
  display: flex; flex-direction: column; gap: 28px;
  border-left: 1px solid rgba(255,255,255,.18); padding-left: 32px;
}
.hero-side p { color: rgba(255,252,246,.82); font-family: var(--serif); font-weight: 300; font-size: 1.1rem; line-height: 1.6; }
.hero-side .btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-side .btns .btn { padding: 14px 22px; font-size: .82rem; }

.hero-meta {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 28px; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,252,246,.55);
  border-top: 1px solid rgba(255,252,246,.15); padding-top: 18px;
  max-width: calc(var(--max) - var(--gutter)*2); margin: 0 auto;
}
.hero-meta strong { color: var(--gold); font-family: var(--mono); font-weight: 500; }

.scrollhint {
  position: absolute; left: 50%; bottom: 70px; transform: translateX(-50%);
  font-family: var(--mono); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--paper); opacity: .6; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scrollhint .line { width: 1px; height: 30px; background: var(--gold); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{transform:scaleY(1);transform-origin:top} 50%{transform:scaleY(.3);} }

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 22px 0; overflow: hidden;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: slide 50s linear infinite; }
.marquee-track .item { display: inline-flex; align-items: center; gap: 18px; font-family: var(--serif-disp); font-size: 1.6rem; font-weight: 300; color: var(--ink); }
.marquee-track .item .star { color: var(--brass); font-size: 1rem; }
.marquee-track .item.italic { font-style: italic; color: var(--herb); }

/* ===================== INTRO SPLIT ===================== */
.intro-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: end; }
.intro-num {
  font-family: var(--serif-disp);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 200; line-height: .8; color: var(--ink);
  letter-spacing: -.06em;
}
.intro-num .dot { color: var(--brass); }
.intro-txt h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 300; line-height: 1.02; letter-spacing: -.025em; }
.intro-txt h2 em { font-style: italic; color: var(--herb); font-weight: 300; }
.intro-txt .body { margin-top: 28px; max-width: 56ch; font-family: var(--serif); font-size: 1.15rem; line-height: 1.65; }
.intro-txt .link-arrow { margin-top: 36px; }

/* ===================== SERVICES GRID (editorial, asymmetric) ===================== */
.cats-section { background: var(--paper); padding: 160px 0; }
.cats-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.cats-head h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; letter-spacing: -.025em; line-height: 1; }
.cats-head h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.cats-head .body { font-family: var(--serif); font-size: 1.1rem; }

.cats-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.cat {
  position: relative; overflow: hidden; border-radius: 4px;
  display: block; isolation: isolate; cursor: pointer;
}
.cat-img { aspect-ratio: 4/5; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.cat:hover .cat-img img { transform: scale(1.06); }
.cat-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; border-top: 1px solid var(--line); margin-top: 16px;
}
.cat-meta .cat-name { font-family: var(--serif-disp); font-weight: 400; font-size: 1.45rem; letter-spacing: -.01em; }
.cat-meta .cat-num { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }
.cat-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  background: rgba(255,252,246,.92); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--mono); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
}
.cat.span-7 { grid-column: span 7; }
.cat.span-5 { grid-column: span 5; }
.cat.span-4 { grid-column: span 4; }
.cat.span-6 { grid-column: span 6; }
.cat.span-8 { grid-column: span 8; }
.cat.span-12 { grid-column: span 12; }
.cat.span-7 .cat-img, .cat.span-8 .cat-img { aspect-ratio: 4/3; }
.cat.span-5 .cat-img, .cat.span-4 .cat-img, .cat.span-6 .cat-img { aspect-ratio: 4/5; }

/* ===================== EDITORIAL FEATURE ===================== */
.feature {
  background: var(--olive); color: var(--paper);
  padding: 160px 0; position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(212,168,67,.15), transparent 50%);
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.feature h2 { color: var(--paper); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.feature h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.feature .lead { color: rgba(255,252,246,.85); margin-top: 28px; font-size: 1.2rem; }
.feature .pull {
  margin-top: 40px; padding: 28px 32px;
  background: rgba(255,255,255,.05); border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: 1.15rem; font-style: italic; color: rgba(255,252,246,.92);
  line-height: 1.6;
}
.feature-img { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow-2); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--paper); color: var(--ink);
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-1);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
}
.feature-tag .dot { color: var(--brass); margin-right: 8px; }

/* ===================== STATS ===================== */
.stats {
  background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 60px; }
.stat { display: flex; flex-direction: column; gap: 12px; }
.stat strong {
  font-family: var(--serif-disp);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1;
  letter-spacing: -.02em; color: var(--ink);
}
.stat .label { font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.stat .desc { font-size: .9rem; color: var(--muted); margin-top: 4px; }

/* ===================== REAL PHOTO BAND ===================== */
.realband { position: relative; height: 60vh; min-height: 440px; overflow: hidden; background: var(--olive-2); }
.realband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.realband::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(38,52,15,.92) 0%, rgba(38,52,15,.55) 45%, rgba(38,52,15,.2) 100%),
    linear-gradient(180deg, rgba(38,52,15,.3), rgba(38,52,15,.65));
}
.realband-txt { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 0 0 56px; }
.realband-txt .wrap { color: var(--paper); }
.realband-txt h2 { font-family: var(--serif-disp); font-weight: 300; color: var(--paper); font-size: clamp(2rem,5vw,4rem); letter-spacing: -.025em; line-height: 1; max-width: 18ch; }
.realband-txt h2 em { font-style: italic; color: var(--gold); }
.realband-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-family: var(--mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.realband-tag::before { content: ""; width: 26px; height: 1px; background: var(--gold); }

/* ===================== STEPS ===================== */
.steps-section { background: var(--bg-2); padding: 130px 0; border-top: 1px solid var(--line); }
.steps-head { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.steps-head h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2.2rem,4.5vw,3.6rem); letter-spacing: -.025em; line-height: 1.02; }
.steps-head h2 em { font-style: italic; color: var(--brass); }
.steps-head .body { margin-top: 18px; font-family: var(--serif); font-size: 1.1rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.step { position: relative; padding: 40px 34px; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.step-num { font-family: var(--serif-disp); font-weight: 200; font-size: 4.5rem; line-height: .8; color: var(--brass); opacity: .22; letter-spacing: -.04em; }
.step-ico { width: 52px; height: 52px; margin: -56px 0 28px auto; display: grid; place-items: center; border-radius: 50%; background: var(--olive); color: var(--paper); font-size: 1.3rem; }
.step h3 { font-family: var(--serif-disp); font-weight: 400; font-size: 1.55rem; margin-bottom: 12px; letter-spacing: -.01em; }
.step p { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.step .step-time { margin-top: 20px; font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--herb); }

/* ===================== WHY LADYFINGERS (story cards) ===================== */
.story { background: var(--bg); padding: 160px 0; }
.story-head { max-width: 720px; margin: 0 auto 80px; text-align: center; }
.story-head h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.story-head h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.story-head .body { margin-top: 24px; font-family: var(--serif); font-size: 1.15rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.story-card {
  padding: 36px 32px; background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
  display: flex; flex-direction: column; transition: all .35s ease;
}
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.story-num { font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; color: var(--brass); text-transform: uppercase; margin-bottom: 28px; }
.story-card h3 { font-family: var(--serif-disp); font-weight: 400; font-size: 1.6rem; line-height: 1.15; margin-bottom: 14px; }
.story-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }
.story-card .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-2); display: grid; place-items: center;
  font-family: var(--serif-disp); font-size: 1.2rem; color: var(--olive); margin-bottom: 32px;
}

/* ===================== PULL QUOTE / TESTIMONIAL ===================== */
.pullquote { background: var(--paper); padding: 140px 0; text-align: center; }
.pullquote blockquote {
  max-width: 1000px; margin: 0 auto; padding: 0 var(--gutter);
  font-family: var(--serif-disp); font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.15; letter-spacing: -.02em; color: var(--ink);
}
.pullquote em { font-style: italic; color: var(--brass); }
.pullquote cite {
  display: block; margin-top: 32px; font-style: normal;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted);
}

/* ===================== GALLERY ===================== */
.gallery-section { background: var(--paper); padding: 150px 0; }
.gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.gallery-head h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2.4rem,5vw,4.4rem); letter-spacing: -.025em; line-height: 1; }
.gallery-head h2 em { font-style: italic; color: var(--brass); }
.gallery-head .body { font-family: var(--serif); font-size: 1.1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 16px; grid-auto-flow: dense; }
.gphoto { position: relative; overflow: hidden; border-radius: 4px; }
.gphoto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(.19,1,.22,1); }
.gphoto:hover img { transform: scale(1.07); }
.gphoto.tall { grid-row: span 2; }
.gphoto.wide { grid-column: span 2; }
.gphoto .real-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--paper); background: rgba(28,26,18,.6); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
}

/* ===================== TEAM (featured founder) ===================== */
.team-section { background: var(--bg); padding: 160px 0; }
.team-head { max-width: 720px; margin: 0 auto 70px; text-align: center; }
.team-head h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 300; line-height: 1; letter-spacing: -.025em; }
.team-head h2 em { font-style: italic; color: var(--brass); font-weight: 300; }
.team-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; max-width: 960px; margin: 0 auto; }
.team-photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; background: var(--bg-2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05); transition: filter .4s ease; }
.team-photo:hover img { filter: grayscale(0); }
.team-bio { display: flex; flex-direction: column; gap: 20px; }
.team-bio .eyebrow { margin-bottom: 4px; }
.team-bio-name { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.025em; line-height: 1; }
.team-bio-name em { font-style: italic; color: var(--brass); }
.team-bio-role { font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-top: -8px; }
.team-bio .lead { font-size: 1.05rem; }
.team-bio-detail { color: var(--muted); font-size: .94rem; line-height: 1.65; margin-top: 4px; }

/* ===================== AWARDS / TRUST ===================== */
.trust { background: var(--olive-2); color: var(--paper); padding: 90px 0; }
.trust-head { text-align: center; margin-bottom: 50px; }
.trust-head h3 { color: var(--paper); font-family: var(--serif-disp); font-weight: 300; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.awards-grid {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: center;
  max-width: 1000px; margin: 0 auto;
}
.award-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 28px 36px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15); border-radius: 4px;
  min-width: 220px; flex: 1;
  transition: transform .3s ease, background .3s ease;
}
.award-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.award-icon { font-size: 1.6rem; margin-bottom: 14px; }
.award-year { font-family: var(--mono); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.award-title { font-family: var(--serif-disp); font-weight: 300; font-size: 1.15rem; color: var(--paper); line-height: 1.3; }
.award-source { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; color: rgba(255,255,255,.5); text-transform: uppercase; margin-top: 10px; }

/* ===================== FAQ ===================== */
.faq-section { background: var(--bg); padding: 150px 0; }
.faq-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.faq-head h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2.2rem,4.5vw,3.6rem); letter-spacing: -.025em; }
.faq-head h2 em { font-style: italic; color: var(--brass); }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 30px 4px; font-family: var(--serif-disp); font-weight: 400; font-size: clamp(1.15rem,2.2vw,1.5rem);
  color: var(--ink); background: none; border: 0; cursor: pointer; letter-spacing: -.01em;
}
.faq-q .pm { flex: 0 0 auto; width: 28px; height: 28px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--brass); transition: transform .35s ease, opacity .35s ease; }
.faq-q .pm::before { top: 50%; left: 4px; right: 4px; height: 1.5px; transform: translateY(-50%); }
.faq-q .pm::after { left: 50%; top: 4px; bottom: 4px; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-q .pm::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-q { color: var(--olive); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.2,.7,.2,1); }
.faq-a-inner { padding: 0 4px 30px; color: var(--muted); font-family: var(--serif); font-size: 1.05rem; line-height: 1.65; max-width: 70ch; }

/* ===================== CTA ===================== */
.cta {
  background: var(--brass); color: var(--paper);
  padding: 140px 0; text-align: center; position: relative; overflow: hidden;
}
.cta::before, .cta::after {
  content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta::before { left: -120px; top: -120px; }
.cta::after  { right: -120px; bottom: -120px; }
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; padding: 0 var(--gutter); }
.cta h2 {
  color: var(--paper); font-family: var(--serif-disp); font-weight: 200;
  font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: .95; letter-spacing: -.025em;
}
.cta h2 em { font-style: italic; color: rgba(255,255,255,.85); font-weight: 200; }
.cta .lead { color: rgba(255,255,255,.92); margin: 28px auto 40px; font-size: 1.2rem; max-width: 56ch; }
.cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta .btn:hover { background: var(--ink); color: var(--paper); }

/* ===================== CONTACT ===================== */
.contact-section { background: var(--bg); padding: 160px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1; letter-spacing: -.02em; }
.contact-info h2 em { font-style: italic; color: var(--brass); }
.contact-info .lead { margin-top: 24px; }
.contact-info ul { list-style: none; margin-top: 36px; padding: 0; }
.contact-info li { padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 20px; }
.contact-info li:last-child { border-bottom: 1px solid var(--line); }
.contact-info .lab { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.contact-info .val { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); line-height: 1.55; }
.contact-info .val a { border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: border-color .2s ease, color .2s ease; }
.contact-info .val a:hover { color: var(--brass); border-color: var(--brass); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 2px; padding: 50px; }
.form-card h3 { font-family: var(--serif-disp); font-weight: 400; font-size: 1.6rem; margin-bottom: 32px; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line);
  background: transparent; font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-card .btn { margin-top: 14px; width: 100%; justify-content: center; }

/* ===================== NEWSLETTER ===================== */
.news-section { background: var(--olive); padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.news-section h2 { font-family: var(--serif-disp); font-weight: 300; font-size: clamp(2rem,4vw,3rem); letter-spacing: -.025em; line-height: 1.05; color: var(--paper); }
.news-section h2 em { font-style: italic; color: var(--gold); }
.news-section p { color: rgba(255,252,246,.72); font-family: var(--serif); font-size: 1rem; margin-top: 16px; }
.news-form { display: flex; gap: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; overflow: hidden; }
.news-form input { flex: 1; background: none; border: 0; padding: 16px 26px; font-family: var(--serif); font-size: 1rem; color: var(--paper); outline: 0; }
.news-form input::placeholder { color: rgba(255,252,246,.5); }
.news-form .btn { border-radius: 999px; margin: 6px; padding: 12px 24px; background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 600; }
.news-form .btn:hover { background: var(--paper); border-color: var(--paper); }
.news-note { font-family: var(--mono); font-size: .65rem; letter-spacing: .14em; color: rgba(255,252,246,.45); text-transform: uppercase; margin-top: 14px; }

/* ===================== FOOTER ===================== */
footer { background: var(--ink); color: var(--paper); padding: 100px 0 30px; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.foot-brand { display: flex; flex-direction: column; gap: 18px; }
.foot-brand .brand-wm { align-items: flex-start; }
.foot-brand .brand-name { font-size: 2rem; color: var(--paper); }
.foot-brand .brand-tag { color: rgba(255,252,246,.4); }
.foot-brand p { color: rgba(255,252,246,.65); max-width: 38ch; font-family: var(--serif); font-size: 1rem; }
.foot-col h5 { font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 500; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a { color: rgba(255,252,246,.7); font-size: .92rem; }
.foot-col a:hover { color: var(--paper); }
.foot-bot {
  border-top: 1px solid rgba(255,252,246,.15); padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; color: rgba(255,252,246,.45);
  text-transform: uppercase;
}
.foot-credit { color: rgba(255,252,246,.5); }
.foot-credit a { color: var(--gold); border-bottom: 1px solid rgba(212,168,67,.4); padding-bottom: 1px; transition: color .25s ease, border-color .25s ease; }
.foot-credit a:hover { color: var(--paper); border-color: var(--paper); }
.socials { display: flex; gap: 8px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: all .25s ease; }
.socials a:hover { background: var(--gold); color: var(--ink); }
.bigwm { font-family: var(--serif-disp); font-weight: 200; letter-spacing: -.05em; font-size: clamp(6rem,18vw,18rem); text-align: center; line-height: .85; color: rgba(255,252,246,.05); margin-top: 60px; padding-bottom: 30px; user-select: none; }

/* ===================== REVEAL / CLIP / SPLIT ===================== */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal-d2 { transition-delay: .12s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1 !important; transform: none !important; } }

.split-line { display: block; overflow: hidden; padding-bottom: .04em; }
html.js .split-line > .ln { display: block; transform: translateY(108%); transition: transform 1s cubic-bezier(.19,1,.22,1); }
html.js .split.in .split-line > .ln { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html.js .split-line > .ln { transform: none !important; } }

html.js .clip { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s cubic-bezier(.19,1,.22,1); }
html.js .clip.in { clip-path: inset(0 0 0 0); }
@media (prefers-reduced-motion: reduce) { html.js .clip { clip-path: none !important; } }

/* ===================== PREMIUM LAYERS ===================== */
.grain { position: fixed; inset: -50%; z-index: 9990; pointer-events: none; width: 200%; height: 200%; opacity: .05; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@media (prefers-reduced-motion: no-preference) { .grain { animation: grain 0.7s steps(4) infinite; } }
@keyframes grain { 0%{transform:translate(0,0)} 25%{transform:translate(-3%,2%)} 50%{transform:translate(2%,-3%)} 75%{transform:translate(-2%,-2%)} 100%{transform:translate(3%,2%)} }

.scrollprog { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9996; pointer-events: none; }
.scrollprog > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--herb), var(--gold), var(--brass)); }

.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: #fff; }
.cursor-ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1px solid rgba(255,255,255,.7); transition: width .28s ease, height .28s ease, margin .28s ease, background .28s ease, opacity .28s ease; }
.cursor-ring.is-hover { width: 64px; height: 64px; margin: -32px 0 0 -32px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); }
.cursor-ring.is-down { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor textarea, body.has-cursor select { cursor: none; }
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .cursor-dot, .cursor-ring { display: none !important; } }

/* ===================== LOADER ===================== */
.loader { position: fixed; inset: 0; z-index: 10000; background: var(--olive-2); display: grid; place-items: center; transition: opacity .7s ease, visibility .7s ease; }
.loader.done { opacity: 0; visibility: hidden; }
.loader .l-inner { text-align: center; color: var(--paper); padding: 0 24px; }
.loader .l-mark { font-family: var(--serif-disp); font-style: italic; font-weight: 200; font-size: clamp(2.4rem,7vw,3.8rem); letter-spacing: -.03em; color: var(--paper); animation: floaty 2.4s ease-in-out infinite; }
.loader .l-sub { font-family: var(--mono); font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }
.loader .l-bar { width: 150px; height: 2px; background: rgba(255,255,255,.18); margin: 22px auto 0; overflow: hidden; border-radius: 2px; }
.loader .l-bar > i { display: block; height: 100%; width: 0; background: var(--gold); animation: loadbar 1.1s cubic-bezier(.6,0,.2,1) forwards; }
@keyframes loadbar { to { width: 100%; } }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@media (prefers-reduced-motion: reduce) { .loader .l-mark { animation: none; } .loader .l-bar > i { animation: none; width: 100%; } }

.magnetic { will-change: transform; }
::selection { background: var(--brass); color: var(--paper); }
::-moz-selection { background: var(--brass); color: var(--paper); }
html { scrollbar-color: var(--herb) var(--bg-2); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--herb); border-radius: 999px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--olive); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 880px) {
  :root { --gutter: 32px; }
  .section { padding: 90px 0; }
  .hero { min-height: auto; padding-bottom: 60px; display: block; }
  .hero-content { grid-template-columns: 1fr; gap: 32px; padding: 110px var(--gutter) 50px; width: 100%; max-width: 100%; }
  .hero h1 { margin: 18px 0 22px; }
  .hero-side { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 26px; gap: 20px; }
  .hero-side p { font-size: 1rem; }
  .hero-side .btns { gap: 10px; }
  .hero-side .btns .btn { padding: 13px 20px; font-size: .78rem; }
  .hero-meta { position: static; flex-direction: column; gap: 10px; align-items: flex-start; font-size: .62rem; letter-spacing: .18em; margin: 30px var(--gutter) 0; padding: 16px 0 0; max-width: none; }
  .scrollhint { display: none !important; }
  .intro-split { grid-template-columns: 1fr; gap: 40px; }
  .cats-head, .team-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .cats-grid { grid-template-columns: 1fr; gap: 16px; }
  .cat, .cat.span-7, .cat.span-5, .cat.span-4, .cat.span-6, .cat.span-8, .cat.span-12 { grid-column: 1 / -1 !important; }
  .cat .cat-img { aspect-ratio: 4/5 !important; }
  .announce { padding: 11px 0; font-size: .68rem; letter-spacing: .18em; }
  .announce-track { gap: 40px; }
  .marquee .item { font-size: 1rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .story-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-featured { grid-template-columns: 1fr; gap: 40px; max-width: 480px; margin: 0 auto; }
  .gallery-head { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .form-card { padding: 32px; }
  .news-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 60px; }
  .awards-grid .award-card { min-width: 160px; }
}
@media (max-width: 540px) {
  :root { --gutter: 24px; }
  .hero h1 { font-size: clamp(2.4rem, 12vw, 3.8rem); letter-spacing: -.03em; }
  .hero-content { padding: 100px var(--gutter) 40px; gap: 26px; }
  .body, .lead { font-size: 1rem; line-height: 1.7; }
  h2.display { font-size: clamp(2rem, 8vw, 3rem); }
  .section { padding: 70px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .contact-info li { grid-template-columns: 1fr; gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .bigwm { font-size: clamp(4rem, 14vw, 8rem); }
}
