/* ============================================================
   WHISKEY MANSION RANCH · Butler, Missouri
   Bourbon-editorial wedding ranch · amber + parchment + barrel oak
   Reskin of Honeysuckle Hill template — palette swapped
   ============================================================ */

:root {
  --ink: #100D09;            /* barrel oak — deepest dark */
  --ink-soft: #1C1712;
  --ink-line: #2D2318;
  --ink-mute: #564B3A;
  --parchment: #F5EFE2;      /* aged parchment — main paper */
  --parchment-warm: #EDE2CC; /* deeper parchment */
  --paper: #FAF5EE;          /* lightest ivory */
  --amber: #C8854A;          /* whiskey amber — primary accent (replaces blush) */
  --amber-deep: #A5622A;     /* deep bourbon */
  --amber-soft: #E8C49A;     /* pale amber */
  --wheat: #9E8A6A;          /* wheatfield — secondary accent (replaces sage) */
  --wheat-deep: #7B6448;     /* deep wheat */
  --bourbon: #B07840;        /* metal accent — brass/bourbon through-line */
  --shadow-1: 0 1px 2px rgba(16,13,9,.06), 0 8px 24px rgba(16,13,9,.08);
  --shadow-2: 0 24px 60px rgba(16,13,9,.20);
  --maxw: 1320px;
  --maxw-tight: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* TYPE */
.serif { font-family: 'Fraunces', Georgia, serif; font-variation-settings: "SOFT" 100, "opsz" 80, "wght" 400; }
.serif-italic { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 80; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

/* LAYOUT */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.wrap-tight { max-width: var(--maxw-tight); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(16,13,9,.80);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(245,239,226,.08);
}
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--parchment); }
.nav__mark { width: 32px; height: 32px; }
.nav__wordmark { font-family: 'Fraunces', serif; font-style: italic; font-variation-settings: "SOFT" 100; font-size: 19px; letter-spacing: .01em; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a { color: rgba(245,239,226,.78); font-size: 13px; letter-spacing: .04em; transition: color .25s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--amber); }
.nav__cta {
  padding: 10px 20px; border: 1px solid rgba(200,133,74,.4);
  border-radius: 999px; color: var(--amber) !important;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
}
.nav__cta:hover { background: var(--amber); color: var(--ink) !important; border-color: var(--amber); }
.nav__burger { display: none; background: none; border: 0; color: var(--parchment); cursor: pointer; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: var(--ink); color: var(--parchment);
  display: flex; align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .52; animation: heroZoom 18s ease-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.14); } }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(16,13,9,.52) 0%, rgba(16,13,9,.18) 30%, rgba(16,13,9,.72) 80%, rgba(16,13,9,.96) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { display: flex; align-items: center; gap: 14px; color: var(--amber); margin-bottom: 24px; }
.hero__eyebrow .line { width: 56px; height: 1px; background: var(--amber); opacity: .6; }
.hero__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  font-size: clamp(44px, 9vw, 132px);
  line-height: .96;
  letter-spacing: -0.025em;
  max-width: min(12ch, 100%);
  margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--amber); font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 320; }
.hero__sub { max-width: 540px; color: rgba(245,239,226,.78); font-size: 17px; line-height: 1.55; }
.hero__actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .25s, background .3s, color .3s, border-color .3s;
  cursor: pointer; border: 1px solid transparent;
}
.btn--blush { background: var(--amber); color: var(--ink); }
.btn--blush:hover { background: var(--parchment); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--parchment); border-color: rgba(245,239,226,.32); }
.btn--ghost:hover { background: rgba(245,239,226,.08); border-color: var(--parchment); }
.btn--dark { background: var(--ink); color: var(--parchment); }
.btn--dark:hover { background: var(--ink-soft); transform: translateY(-2px); }

/* HERO BOTTOM RAIL */
.hero__rail {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px clamp(20px, 4vw, 56px);
  border-top: 1px solid rgba(245,239,226,.12);
  background: rgba(16,13,9,.5);
  color: rgba(245,239,226,.6); font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.hero__rail span { display: inline-block; }

/* TICKER */
.ticker {
  background: var(--ink); color: var(--parchment); padding: 22px 0;
  border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line);
  overflow: hidden; position: relative; max-width: 100%;
}
.ticker__track {
  display: flex; gap: 64px; white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-family: 'Fraunces', serif; font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--amber);
}
.ticker__track svg { width: 24px; height: 24px; flex-shrink: 0; opacity: .8; }
.ticker__track > * { display: inline-flex; align-items: center; gap: 18px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* INTRO LETTER */
.letter { background: var(--parchment); padding: clamp(80px, 10vw, 140px) 0; }
.letter__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 7vw, 100px); align-items: start; }
.letter__meta { position: sticky; top: 120px; }
.letter__meta .mono { color: var(--ink-mute); margin-bottom: 14px; display: block; }
.letter__meta h3 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 80, "wght" 380;
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 22px;
}
.letter__sig {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--ink-line); border-top-style: dashed;
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--ink-mute); font-size: 15px;
}
.letter__sig strong { color: var(--ink); font-style: normal; font-weight: 500; }

.letter__body p {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 56ch;
}
.letter__body p:first-child::first-letter {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
  font-size: 5.2em; line-height: .85;
  float: left; padding: 8px 14px 0 0;
  color: var(--amber-deep);
}
.letter__body em { font-family: 'Fraunces', serif; font-style: italic; color: var(--wheat-deep); }

/* STATS RIBBON */
.ribbon { background: var(--ink); color: var(--parchment); }
.ribbon__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--ink-line); }
.ribbon__cell { background: var(--ink); padding: clamp(40px, 5vw, 60px) clamp(20px, 3vw, 40px); }
.ribbon__cell .mono { color: var(--amber); margin-bottom: 12px; display: block; }
.ribbon__cell .num {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
  font-size: clamp(40px, 6vw, 64px); line-height: 1;
  color: var(--parchment); margin-bottom: 12px;
}
.ribbon__cell .num em { color: var(--amber); font-style: italic; }
.ribbon__cell p { color: rgba(245,239,226,.6); font-size: 14px; line-height: 1.5; max-width: 26ch; }

/* PHOTO MOSAIC */
.mosaic { background: var(--parchment); padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(80px, 10vw, 140px); }
.mosaic__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; gap: 40px; flex-wrap: wrap; }
.mosaic__title {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  font-size: clamp(36px, 5vw, 72px); line-height: 1;
  max-width: 14ch;
}
.mosaic__title em { font-style: italic; color: var(--amber-deep); }
.mosaic__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 86vh; min-height: 700px;
}
.mosaic__tile { position: relative; overflow: hidden; border-radius: 4px; background: var(--ink-line); }
.mosaic__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.mosaic__tile:hover img { transform: scale(1.04); }
.mosaic__tile--a { grid-column: 1; grid-row: 1 / span 2; }
.mosaic__tile--b { grid-column: 2; grid-row: 1; }
.mosaic__tile--c { grid-column: 3; grid-row: 1; }
.mosaic__tile--d { grid-column: 2; grid-row: 2; }
.mosaic__tile--e { grid-column: 3; grid-row: 2; }
.mosaic__cap {
  position: absolute; left: 16px; bottom: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--parchment); background: rgba(16,13,9,.65); padding: 6px 10px; border-radius: 2px;
  backdrop-filter: blur(6px);
}

/* OWNER SPLIT */
.owners { background: var(--paper); }
.owners__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.owners__photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; background: var(--ink-line); }
.owners__photo img { width: 100%; height: 100%; object-fit: cover; }
.owners__copy .mono { display: block; color: var(--wheat-deep); margin-bottom: 18px; }
.owners__copy h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  font-size: clamp(36px, 5vw, 68px); line-height: 1.05; margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.owners__copy h2 em { font-style: italic; color: var(--amber-deep); }
.owners__copy p { font-size: clamp(16px, 1.4vw, 18px); line-height: 1.6; color: var(--ink-soft); margin-bottom: 18px; max-width: 50ch; }
.owners__quote {
  font-family: 'Fraunces', serif; font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(20px, 2vw, 24px); line-height: 1.4;
  padding-left: 22px; border-left: 2px solid var(--amber);
  color: var(--ink); margin: 28px 0; max-width: 44ch;
}

/* PACKAGES TEASER */
.pkg { background: var(--ink); color: var(--parchment); }
.pkg__head { text-align: center; max-width: 720px; margin: 0 auto 72px; }
.pkg__head .mono { color: var(--amber); margin-bottom: 18px; display: inline-block; }
.pkg__head h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05; margin-bottom: 22px;
}
.pkg__head h2 em { font-style: italic; color: var(--amber); }
.pkg__head p { color: rgba(245,239,226,.7); font-size: 17px; line-height: 1.6; }
.pkg__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pkg__card {
  background: var(--ink-soft); border: 1px solid var(--ink-line);
  border-radius: 6px; padding: clamp(36px, 4vw, 56px);
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color .3s, transform .3s;
}
.pkg__card:hover { border-color: var(--amber); transform: translateY(-4px); }
.pkg__card--featured { border-color: var(--amber); position: relative; }
.pkg__card--featured::before {
  content: 'Most chosen'; position: absolute; top: -12px; left: 32px;
  background: var(--amber); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}
.pkg__card .mono { color: var(--wheat); display: block; }
.pkg__card h3 {
  font-family: 'Fraunces', serif; font-style: italic;
  font-variation-settings: "SOFT" 100;
  font-size: clamp(28px, 3vw, 40px); line-height: 1; color: var(--parchment);
}
.pkg__card p { color: rgba(245,239,226,.7); font-size: 15px; line-height: 1.55; }
.pkg__card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; border-top: 1px solid var(--ink-line); }
.pkg__card li { display: flex; gap: 12px; font-size: 14px; color: rgba(245,239,226,.85); }
.pkg__card li::before { content: '●'; color: var(--amber); font-size: 8px; padding-top: 7px; }
.pkg__card .pkg__from { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--wheat); margin-top: auto; padding-top: 24px; border-top: 1px solid var(--ink-line); }

/* TESTIMONIALS */
.voices { background: var(--parchment); }
.voices__head { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.voices__head .mono { color: var(--wheat-deep); margin-bottom: 18px; display: inline-block; }
.voices__head h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 380;
  font-size: clamp(34px, 4.5vw, 56px); line-height: 1.05;
}
.voices__head h2 em { font-style: italic; color: var(--amber-deep); }
.voices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.voice {
  background: var(--paper); border: 1px solid rgba(16,13,9,.06);
  border-radius: 4px; padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
}
.voice__stars { color: var(--amber-deep); letter-spacing: .15em; font-size: 14px; }
.voice__quote {
  font-family: 'Fraunces', serif; font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 80;
  font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; color: var(--ink);
}
.voice__by { display: flex; flex-direction: column; gap: 4px; padding-top: 16px; border-top: 1px solid rgba(16,13,9,.08); margin-top: auto; }
.voice__by strong { font-weight: 500; font-size: 14px; }
.voice__by span { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }

/* CTA BAND */
.cta-band {
  position: relative; padding: clamp(100px, 12vw, 180px) 0; overflow: hidden;
  background: var(--ink); color: var(--parchment); text-align: center;
}
.cta-band__bg { position: absolute; inset: 0; opacity: .35; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content:''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,13,9,.7), rgba(16,13,9,.85)); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band .mono { color: var(--amber); margin-bottom: 24px; display: inline-block; }
.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 360;
  font-size: clamp(40px, 7vw, 96px); line-height: 1; max-width: 18ch; margin: 0 auto 36px;
}
.cta-band h2 em { font-style: italic; color: var(--amber); }
.cta-band p { color: rgba(245,239,226,.7); font-size: 17px; max-width: 56ch; margin: 0 auto 40px; }
.cta-band .btn--blush { background: var(--amber); color: var(--ink); }
.cta-band .btn--blush:hover { background: var(--parchment); }

/* FOOTER */
.footer { background: #08070A; color: rgba(245,239,226,.65); padding: 80px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(245,239,226,.08); }
.footer__brand .nav__wordmark { color: var(--parchment); font-size: 24px; }
.footer__brand p { margin-top: 16px; max-width: 32ch; font-size: 14px; }
.footer h5 { color: var(--parchment); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color .25s; }
.footer ul a:hover { color: var(--amber); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer__bottom .mono { font-size: 10px; color: rgba(245,239,226,.4); }
.footer__bottom .mono a { color: var(--amber); }

/* RANCH DIVIDER (replaces vine) */
.ranch-divider {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--wheat-deep); margin: clamp(60px, 8vw, 100px) auto;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
}
.ranch-divider .line { width: 56px; height: 1px; background: currentColor; opacity: .4; }
.ranch-divider svg { width: 28px; height: 28px; opacity: .7; }

/* REVEAL — FALLBACK SAFE */
.reveal { opacity: 1; transform: none; transition: opacity .9s ease, transform .9s ease; }
.reveal--hidden { opacity: 0; transform: translateY(28px); }

/* MOBILE */
@media (max-width: 1024px) {
  .nav__links { gap: 18px; }
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__burger { display: inline-flex; }
  .mosaic__grid { height: auto; min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic__tile--a, .mosaic__tile--b, .mosaic__tile--c, .mosaic__tile--d, .mosaic__tile--e {
    grid-column: auto; grid-row: auto; aspect-ratio: 4/5;
  }
  .mosaic__tile--a { grid-column: 1 / -1; aspect-ratio: 16/10; }
  .letter__grid { grid-template-columns: 1fr; gap: 36px; }
  .letter__meta { position: relative; top: 0; }
  .owners__grid { grid-template-columns: 1fr; }
  .pkg__grid { grid-template-columns: 1fr; }
  .voices__grid { grid-template-columns: 1fr; }
  .ribbon__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .hero { min-height: 92vh; }
  .hero__rail { display: none; }
  .ribbon__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav { padding: 14px 18px; }
  .hero__actions .btn { padding: 14px 22px; font-size: 12px; }
}

/* ============================================================
   ELEVATION LAYER — film grain, motion, premium texture
   ============================================================ */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .032; 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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav, .hero, .ticker, main, section, footer { position: relative; z-index: 2; }

.hero__eyebrow .line { transform-origin: left; animation: lineGrow 1.4s cubic-bezier(.16,1,.3,1) .2s both; }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero__title .w { display: inline-block; }
.hero--anim .hero__title .w { transform: translateY(110%); opacity: 0; }
.hero--play .hero__title .w {
  transform: translateY(0); opacity: 1;
  transition: transform 1s cubic-bezier(.16,1,.3,1), opacity 1s ease;
  transition-delay: calc(var(--i, 0) * 70ms + 150ms);
}
.hero__title .line-mask { display: inline-block; overflow: hidden; vertical-align: top; }

.reveal--hidden.stagger > * { opacity: 0; transform: translateY(22px); }
.reveal.stagger > * { transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.stagger > *:nth-child(2) { transition-delay: .08s; }
.reveal.stagger > *:nth-child(3) { transition-delay: .16s; }
.reveal.stagger > *:nth-child(4) { transition-delay: .24s; }
.reveal.stagger > *:nth-child(5) { transition-delay: .32s; }
.reveal.stagger > *:nth-child(6) { transition-delay: .40s; }

[data-parallax] { will-change: transform; }

.btn { position: relative; overflow: hidden; }
.btn--blush::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn--blush:hover::after { left: 130%; }

.nav__drawer-close { display: none; }

/* AWARDS STRIP */
.awards { background: var(--paper); padding: clamp(40px,5vw,64px) 0; border-top: 1px solid rgba(16,13,9,.06); border-bottom: 1px solid rgba(16,13,9,.06); }
.awards__inner { display: flex; align-items: center; justify-content: center; gap: clamp(28px,5vw,72px); flex-wrap: wrap; }
.awards__lab { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); }
.awards__seal {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: clamp(76px,9vw,104px); height: clamp(76px,9vw,104px); border-radius: 50%;
  border: 1.5px solid var(--bourbon); color: var(--bourbon);
  font-family: 'Fraunces', serif; font-style: italic; text-align: center; line-height: 1.05;
}
.awards__seal b { font-size: clamp(16px,2vw,22px); font-style: normal; font-weight: 500; }
.awards__seal span { font-family: 'JetBrains Mono', monospace; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; margin-top: 3px; }

/* DETAIL BAND */
.detail-band { background: var(--parchment-warm); }
.detail-band__grid { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,36px); }
.detail-card { display:flex; flex-direction:column; gap:14px; }
.detail-card__img { aspect-ratio: 4/5; overflow:hidden; border-radius:4px; background: var(--ink-line); }
.detail-card__img img { width:100%; height:100%; object-fit:cover; transition: transform 1.1s ease; }
.detail-card:hover .detail-card__img img { transform: scale(1.05); }
.detail-card h4 { font-family:'Fraunces',serif; font-style:italic; font-variation-settings:"SOFT" 100; font-size: clamp(20px,2vw,26px); }
.detail-card p { color: var(--ink-soft); font-size:14px; line-height:1.55; max-width:34ch; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,7,10,.94); display:none; align-items:center; justify-content:center; padding: 4vw; opacity:0; transition: opacity .35s ease; }
.lightbox.is-open { display:flex; opacity:1; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 4px; box-shadow: var(--shadow-2); }
.lightbox__close { position:absolute; top: 22px; right: 26px; background:none; border:0; color: var(--parchment); cursor:pointer; font-size: 30px; line-height:1; opacity:.8; }
.lightbox__close:hover { opacity:1; }
.lightbox__nav { position:absolute; top:50%; transform:translateY(-50%); background: rgba(245,239,226,.08); border:1px solid rgba(245,239,226,.25); color: var(--parchment); width:48px; height:48px; border-radius:50%; cursor:pointer; font-size:20px; display:flex; align-items:center; justify-content:center; transition: background .25s; }
.lightbox__nav:hover { background: rgba(200,133,74,.3); }
.lightbox__prev { left: 18px; } .lightbox__next { right: 18px; }
.masonry__item { cursor: zoom-in; }

/* MOBILE NAV DRAWER */
@media (max-width: 1024px) {
  .nav__links.is-open {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    background: rgba(16,13,9,.97); backdrop-filter: blur(18px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 8px; padding: 40px; z-index: 200;
    box-shadow: var(--shadow-2);
  }
  .nav__links.is-open a:not(.nav__cta) { display: block; font-size: 22px; font-family:'Fraunces',serif; font-style:italic; color: var(--parchment); padding: 8px 0; }
  .nav__links.is-open .nav__cta { margin-top: 18px; }
  .nav__drawer-close { position:absolute; top:22px; right:24px; background:none;border:0;color:var(--parchment);font-size:30px;cursor:pointer; display:none; }
  .nav__links.is-open .nav__drawer-close { display:block; }
  body.nav-open { overflow: hidden; }
  .detail-band__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.letter__body p { color: #1A1510; }
.owners__copy p { color: #1C1712; }

.nav--scrolled { background: rgba(16,13,9,.93); border-bottom-color: rgba(245,239,226,.12); padding-top: 13px; padding-bottom: 13px; }

@media (prefers-reduced-motion: reduce) {
  .hero__bg img { animation: none; }
  .ticker__track { animation: none; }
  .hero--anim .hero__title .w { transform:none; opacity:1; }
  [data-parallax] { transform: none !important; }
}
