/* Bodega Ciclo Andino — shared stylesheet
   Design tokens and component patterns recreated from the approved
   design_handoff_ciclo_andino_site prototype. Colours, type scale,
   spacing and interaction states are unchanged from the design. */

:root {
  --cream: #f4f4f0;
  --ink: #221f1f;
  --gold: #c1986c;
  --red: #E9262A;
  --berry: #c63548;
  --plum: #50112C;
  --gray: #818285;
  --overlay: rgba(34,31,31,0.7);
  --rule: rgba(34,31,31,0.14);
  --rule-on-ink: rgba(244,244,240,0.35);
  --cream-82: rgba(244,244,240,0.82);
  --font-display: 'Josefin Sans', Georgia, serif;
  --font-label: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--red); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.wrap { max-width: 1400px; margin: 0 auto; }
.wrap-narrow { max-width: 1200px; margin: 0 auto; }
.section { padding: clamp(48px,6vw,104px) clamp(20px,6vw,80px); }
.section-top0 { padding-top: 0; }
.section-bottom0 { padding-bottom: 0; }
.no-wrap-x { overflow-x: hidden; }

/* ---------- Age gate ---------- */
#age-gate {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(34,31,31,0.94);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
#age-gate .box {
  max-width: 480px; width: 100%; background: var(--cream); color: var(--ink);
  padding: clamp(30px,5vw,46px); text-align: center;
}
#age-gate img { width: 52px; height: 52px; object-fit: contain; margin: 0 auto 20px; }
#age-gate h2 { font-size: clamp(22px,2.6vw,28px); margin: 0 0 12px; line-height: 1.2; }
#age-gate p { font-size: 14.5px; line-height: 1.7; opacity: 0.82; margin: 0 0 26px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn {
  font-family: var(--font-label); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 15px 30px;
  min-height: 46px; border: none; cursor: pointer; display: inline-block;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #c81f22; color: #fff; }
.btn-outline { background: none; color: var(--ink); border: 1px solid rgba(34,31,31,0.35); }
.btn-outline:hover { color: var(--ink); border-color: var(--ink); }
.btn-outline-cream { background: none; color: var(--cream); border: 1px solid rgba(244,244,240,0.55); }
#age-gate .denied { font-family: var(--font-body); font-size: 14px; line-height: 1.6; margin: 24px 0 0; color: var(--red); }
[data-age-ok] #age-gate,
#age-gate.hidden { display: none; }

/* ---------- Header / nav ---------- */
header.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px,4vw,64px); background: var(--cream);
  border-bottom: 1px solid rgba(34,31,31,0.08);
  transition: transform 0.4s ease;
}
header.site-header.hide { transform: translateY(-100%); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand span { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); }
nav.main-nav { display: flex; align-items: center; gap: 34px; }
nav.main-nav a {
  font-family: var(--font-label); font-size: 12px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 5px; border-bottom: 2px solid transparent;
}
nav.main-nav a:hover { color: var(--ink); border-bottom-color: var(--gold); }
nav.main-nav a[aria-current="page"] { border-bottom-color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 22px; }
.lang-switch { display: flex; gap: 10px; font-family: var(--font-label); font-size: 12px; font-weight: 600; }
.lang-switch a { color: var(--gray); }
.lang-switch a[aria-current="true"] { color: var(--ink); }
.menu-btn { display: none; background: none; border: none; font-size: 26px; line-height: 1; color: var(--ink); padding: 10px; }
#mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  padding: 100px 28px 40px; display: none; flex-direction: column; gap: 26px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--ink); }
#mobile-menu .lang-switch { margin-top: 12px; font-size: 15px; }
#mobile-menu .lang-switch a { padding: 10px 12px 10px 0; }

@media (max-width: 899px) {
  nav.main-nav, .header-right .lang-switch { display: none; }
  .menu-btn { display: block; }
}

body { padding-top: 0; }
main { display: block; }

/* ---------- Buttons already defined above ---------- */

/* ---------- Hero (full-bleed image + gradient) ---------- */
.hero {
  position: relative; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero-media.kenburns { animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.14); } }
.hero-gradient-bottom { background: linear-gradient(0deg, rgba(34,31,31,0.80) 0%, rgba(34,31,31,0.05) 60%); position:absolute; inset:0; }
.hero-gradient-full { background: linear-gradient(180deg, rgba(34,31,31,0.10) 0%, rgba(34,31,31,0.62) 100%); position:absolute; inset:0; }
.hero-gradient-page { background: linear-gradient(180deg, rgba(34,31,31,0.30) 0%, rgba(34,31,31,0.72) 100%); position:absolute; inset:0; }
.hero-content { position: relative; z-index: 2; color: var(--cream); }
.home-hero { height: 100svh; min-height: min(600px,100vh); }
.home-hero .hero-content { height: 100%; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 90px clamp(20px,6vw,80px); max-width: 1400px; margin: 0 auto; }
.home-hero .eyebrow { margin-bottom: 18px; }
.home-hero h1 { font-size: clamp(38px,6vw,80px); line-height: 1.06; max-width: 920px; margin: 0 0 22px; }
.home-hero p { font-size: 18px; line-height: 1.6; max-width: 520px; margin: 0 0 34px; color: rgba(244,244,240,0.92); }

.page-hero { margin-top: var(--header-h); min-height: max(420px,62vh); }
.page-hero.short { min-height: max(320px,44vh); }
.page-hero.tall { min-height: max(360px,52vh); }
.page-hero-content { position: relative; z-index: 1; min-height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 110px clamp(20px,6vw,80px) clamp(70px,9vh,110px); max-width: 1400px; margin: 0 auto; color: var(--cream); }
.page-hero-content h1 { font-size: clamp(34px,5vw,66px); margin: 14px 0 16px; max-width: 820px; line-height: 1.06; }
.page-hero-content p.lead { font-size: 17px; line-height: 1.6; max-width: 560px; margin: 0; color: rgba(244,244,240,0.9); }

/* ---------- Home grid cards ---------- */
.home-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; }
.home-grid .big { grid-row: 1 / 3; min-height: clamp(380px,58vh,580px); }
.card-photo { position: relative; overflow: hidden; cursor: pointer; background-size: cover; background-position: center; min-height: 279px; }
.card-photo .overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(34,31,31,0.82) 0%, rgba(34,31,31,0.05) 55%); }
.card-photo .label { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(24px,5vw,40px); color: var(--cream); }
.card-photo .label.small { padding: 26px; }
.card-photo h2, .card-photo h3 { color: var(--cream); }
.card-photo h2 { font-size: clamp(28px,3vw,42px); margin: 10px 0 12px; }
.card-photo h3 { font-size: 24px; margin: 8px 0 10px; }
.card-link { font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-bottom: 2px solid var(--gold); padding-bottom: 4px; color: var(--cream); }
@media (max-width: 899px) { .home-grid { grid-template-columns: 1fr; } .home-grid .big { grid-row: auto; } }

/* ---------- Dark band ---------- */
.band-ink { background: var(--ink); color: var(--cream); }
.band-ink .eyebrow { color: var(--gold); }

/* ---------- Award / recognition ---------- */
.award-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(320px,100%),1fr)); gap: clamp(32px,5vw,72px); align-items: center; }
.medal-logo { background: var(--cream); padding: 10px 12px; display: inline-flex; align-items: center; justify-content: center; }
.medal-logo img { height: 58px; width: auto; }
.award-grid h2 { font-size: clamp(32px,4.4vw,60px); margin: 20px 0 8px; line-height: 1.04; }
blockquote.award-quote { margin: 0 0 28px; padding-left: 22px; border-left: 2px solid var(--gold); }
blockquote.award-quote p { font-family: var(--font-display); font-size: clamp(20px,2.2vw,27px); font-weight: 400; line-height: 1.4; margin: 0 0 10px; color: var(--cream); }
blockquote.award-quote cite { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,244,240,0.55); font-style: normal; }
.medal-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(130px,100%),1fr)); gap: clamp(16px,2vw,28px); }
.medal-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.medal-item img { width: 100%; max-width: 130px; aspect-ratio: 1/1; object-fit: contain; }
.medal-item .wine { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--cream); line-height: 1.25; }
.medal-item .line { font-family: var(--font-label); font-size: 10px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(244,244,240,0.5); margin-top: 5px; }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(170px,100%),1fr)); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat-row .stat { padding: clamp(30px,5vw,44px) 24px; text-align: center; border-right: 1px solid var(--rule); }
.stat-row .stat:last-child { border-right: none; }
.stat-row .value { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 600; color: var(--gold); }
.stat-row .label { font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-top: 10px; }
@media (max-width: 899px) { .stat-row .stat { border-right: none; border-bottom: 1px solid var(--rule); } .stat-row .stat:last-child { border-bottom: none; } }

/* ---------- Rooms feature ---------- */
.room-feature { position: relative; min-height: clamp(420px,44vw,560px); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; background-size: cover; background-position: center; }
.room-feature .overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,31,31,0.86) 0%, rgba(34,31,31,0.6) 48%, rgba(34,31,31,0.18) 100%); }
.room-feature .content { position: relative; z-index: 1; padding: clamp(28px,4vw,52px); max-width: 620px; color: var(--cream); }
.room-feature h3 { font-size: clamp(28px,3.4vw,42px); margin: 12px 0 14px; line-height: 1.12; }
.price-line { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.price-line small { font-family: var(--font-body); font-size: 13px; font-weight: 400; opacity: 0.72; }

/* ---------- Tasting / experience cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(280px,100%),1fr)); gap: 20px; }
.card { display: flex; flex-direction: column; background: var(--cream); border: 1px solid var(--rule); }
.card.tint { background: rgba(193,152,108,0.10); border: none; }
.card .thumb { height: 200px; background-size: cover; background-position: center; }
.card .thumb-tall { height: 260px; }
.card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card .top-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.card h3 { font-size: 22px; margin: 0; }
.card .price { font-family: var(--font-display); font-size: 19px; font-weight: 600; white-space: nowrap; }
.card .meta { font-family: var(--font-label); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 6px; }
.card p.desc { font-size: 13.5px; line-height: 1.65; opacity: 0.84; margin: 13px 0 18px; }
.card .foot-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--rule); }

/* ---------- Wine grid ---------- */
.wine-group h2 { font-size: 26px; margin: 0 0 22px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); }
.wine-group + .wine-group { margin-top: 56px; }
.wine-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(420px,100%),1fr)); gap: 24px; }
.wine-card { display: grid; grid-template-columns: 190px 1fr; gap: 26px; padding: 26px; }
.wine-card .shot { position: relative; height: 300px; overflow: hidden; }
.wine-card .shot img { width: 100%; height: 100%; object-fit: cover; }
.wine-card .line-label { font-family: var(--font-label); font-size: 10px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.wine-card h3 { font-size: 25px; margin: 6px 0 3px; }
.wine-card .origin { font-size: 12.5px; color: var(--gray); }
.badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin: 14px 0; }
.badge { font-family: var(--font-label); font-size: 10px; font-weight: 600; letter-spacing: 0.04em; background: rgba(34,31,31,0.08); color: var(--ink); padding: 5px 9px; border-radius: 2px; display: inline-flex; align-items: center; gap: 6px; }
.badge.variety { background: rgba(193,152,108,0.22); }
.wine-card .note { font-size: 13.5px; line-height: 1.6; margin: 0 0 14px; opacity: 0.85; }
.wine-card .foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--rule); }
.factsheet-btn { background: none; border: none; padding: 0; font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink); border-bottom: 1px solid var(--ink); }
.buy-btn { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; background: var(--red); color: #fff; padding: 10px 16px; display: inline-block; }
.buy-btn:hover { color: #fff; }
@media (max-width: 640px) {
  .wine-card { grid-template-columns: 1fr; }
  .wine-card .shot { height: auto; max-width: 180px; margin: 0 auto; overflow: visible; }
  .wine-card .shot img { width: 100%; height: auto; object-fit: contain; display: block; }
}

/* ---------- Vintages ---------- */
.vintage-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(26px,3vw,38px); }
.vintage-tabs a { font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; padding: 11px 20px; min-height: 44px; display: inline-flex; align-items: center; border: 1px solid rgba(244,244,240,0.28); color: rgba(244,244,240,0.8); }
.vintage-tabs a.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.vintage-body { display: grid; grid-template-columns: 180px 1fr; gap: clamp(22px,3vw,44px); align-items: start; }
.vintage-body h3 { font-size: clamp(30px,3.4vw,46px); margin: 8px 0 0; line-height: 1; }
.vintage-body p { font-size: 15.5px; line-height: 1.78; color: rgba(244,244,240,0.82); margin: 0 0 14px; }
@media (max-width: 640px) { .vintage-body { grid-template-columns: 1fr; } }

/* ---------- Estate blocks ---------- */
.estate-block { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: clamp(28px,4vw,64px); align-items: center; }
.estate-block.rtl { direction: rtl; }
.estate-block.rtl > * { direction: ltr; }
.estate-block img, .estate-block .photo { height: clamp(300px,34vw,440px); object-fit: cover; width: 100%; }
.estate-block h2 { font-size: clamp(26px,3vw,38px); margin: 12px 0 16px; line-height: 1.15; }
.estate-block p { font-size: 15.5px; line-height: 1.72; opacity: 0.85; }
.estate-block + .estate-block { margin-top: clamp(48px,6vw,88px); }

.family-split { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(330px,100%),1fr)); align-items: stretch; }
.family-split img { min-height: 480px; object-fit: cover; width: 100%; }
.family-split .text { padding: clamp(44px,5vw,80px); display: flex; flex-direction: column; justify-content: center; }
.family-split h2 { font-size: clamp(26px,3vw,40px); margin: 14px 0 8px; line-height: 1.15; }
.family-split .names { font-family: var(--font-label); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,244,240,0.55); margin: 0 0 18px; }
.family-split p.body-p { font-size: 15.5px; line-height: 1.72; color: rgba(244,244,240,0.82); margin: 0 0 16px; }

.people-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(300px,100%),1fr)); gap: clamp(24px,3vw,40px); }
.people-grid img { height: clamp(300px,32vw,420px); object-fit: cover; width: 100%; }
.people-grid h3 { font-size: 24px; margin: 20px 0 4px; }
.people-grid .role { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.people-grid p { font-size: 15px; line-height: 1.72; opacity: 0.85; margin: 14px 0 0; }
.partners-row { margin-top: clamp(30px,3.4vw,44px); padding: 26px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-wrap: wrap; align-items: flex-start; gap: clamp(20px,2.6vw,34px); }
.partners-photos { display: flex; gap: 18px; flex-shrink: 0; }
.partners-photos figure { width: clamp(132px,12.5vw,168px); margin: 0; }
.partners-photos img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.partners-photos figcaption { font-family: var(--font-display); font-size: 15px; font-weight: 600; margin-top: 10px; }
.partners-text { display: flex; flex-direction: column; gap: 8px; flex: 1 1 320px; min-width: min(280px,100%); }

.cta-photo { position: relative; overflow: hidden; text-align: center; }
.cta-photo .overlay { position: absolute; inset: 0; background: rgba(34,31,31,0.7); }
.cta-photo .content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; color: var(--cream); }
.cta-photo h2 { font-size: clamp(26px,3.4vw,44px); margin: 0 0 18px; }

/* ---------- Villa facts / contact details ---------- */
.fact-list { display: flex; flex-direction: column; gap: 12px; }
.fact-list .row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 11px; border-bottom: 1px solid var(--rule-on-ink); }
.fact-list .row .k { font-family: var(--font-label); font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,244,240,0.62); }
.fact-list .row .v { font-size: 14px; color: var(--cream); text-align: right; }
.fact-list.light .row { border-bottom-color: var(--rule); }
.fact-list.light .row .k { color: var(--gold); }
.fact-list.light .row .v { color: var(--ink); }

/* ---------- Dividers ---------- */
.or-divider { display: flex; align-items: center; gap: 16px; max-width: 360px; margin: 34px auto; font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* ---------- Forms ---------- */
form.stack { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(200px,100%),1fr)); gap: 16px; }
form.stack .full { grid-column: 1/-1; }
form.stack input, form.stack select, form.stack textarea {
  background: none; border: none; border-bottom: 1px solid rgba(34,31,31,0.3);
  padding: 12px 0; font-family: var(--font-body); font-size: 14.5px; color: var(--ink); outline: none; width: 100%;
}
form.stack.on-ink input, form.stack.on-ink select, form.stack.on-ink textarea {
  border-bottom-color: rgba(244,244,240,0.35); color: var(--cream);
}
form.stack.on-ink option { color: var(--ink); }
form.stack textarea { resize: vertical; }
form.stack button[type="submit"] { grid-column: 1/-1; justify-self: start; margin-top: 8px; }
.form-success { background: rgba(193,152,108,0.16); padding: 30px; max-width: 560px; }
.form-success.on-ink { background: rgba(244,244,240,0.07); }
.form-success p:first-child { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 0 0 8px; }
.form-success p:last-child { font-size: 14.5px; line-height: 1.6; margin: 0; opacity: 0.8; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(320px,100%),1fr)); gap: clamp(36px,5vw,72px); }
.contact-grid h2 { font-size: clamp(24px,2.6vw,32px); margin: 0 0 10px; }
.whatsapp-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; padding: 11px 20px; background: #25D366; color: #fff; font-family: var(--font-label); font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.whatsapp-link:hover { color: #fff; opacity: 0.9; }

/* ---------- Trade ---------- */
.trade-offer-card { padding: 30px; background: rgba(193,152,108,0.10); }
.trade-offer-card h3 { font-size: 22px; margin: 0 0 12px; }
.trade-offer-card p { font-size: 14.5px; line-height: 1.7; opacity: 0.85; }

/* ---------- Legal ---------- */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.legal-toc { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 9px; }
.legal-toc .label { font-family: var(--font-label); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.legal-toc a { font-size: 13px; line-height: 1.45; color: var(--ink); opacity: 0.75; }
.legal-toc a:hover { opacity: 1; color: var(--red); }
.legal-section { max-width: 760px; }
.legal-section section { scroll-margin-top: 100px; padding-bottom: 38px; }
.legal-section h2 { line-height: 1.2; margin: 0 0 14px; }
.legal-section h2.lg { font-size: clamp(26px,3.4vw,30px); }
.legal-section h2.sm { font-size: 22px; }
.legal-section p { font-size: 15px; line-height: 1.78; opacity: 0.86; margin: 0 0 14px; }
.legal-section ul { margin: 4px 0 14px; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { font-size: 15px; line-height: 1.7; opacity: 0.86; }
.legal-contact-box { margin-top: 10px; padding: 26px 28px; background: rgba(193,152,108,0.14); }
.legal-contact-box p { font-size: 14.5px; line-height: 1.7; margin: 0; }
.legal-contact-box p + p { margin-top: 14px; }
.legal-contact-box a { color: var(--red); border-bottom: 1px solid rgba(155,42,50,0.4); }
@media (max-width: 899px) { .legal-layout { grid-template-columns: 1fr; } .legal-toc { position: static; } }

/* ---------- Journal index ---------- */
.journal-card { display: grid; grid-template-columns: 320px 1fr; gap: clamp(20px,3vw,38px); color: var(--ink); align-items: center; padding-bottom: clamp(28px,3.5vw,46px); border-bottom: 1px solid var(--rule); }
.journal-card .thumb { position: relative; height: clamp(190px,20vw,240px); overflow: hidden; background: rgba(34,31,31,0.08); }
.journal-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.journal-card .kicker { font-family: var(--font-label); font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.journal-card h2 { font-size: clamp(24px,2.6vw,34px); line-height: 1.14; margin: 10px 0 12px; }
.journal-card .standfirst { font-size: 15px; line-height: 1.72; opacity: 0.82; margin: 0 0 16px; max-width: 540px; }
.journal-card .meta-row { display: flex; align-items: center; gap: 16px; }
.journal-card .read { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.05em; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.journal-card .minutes { font-size: 12.5px; color: var(--gray); }
@media (max-width: 640px) { .journal-card { grid-template-columns: 1fr; } }

/* ---------- Article ---------- */
.article-hero { position: relative; margin-top: var(--header-h); min-height: max(360px,50vh); overflow: hidden; display: flex; align-items: flex-end; }
.article-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero .gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,31,31,0.25) 0%, rgba(34,31,31,0.82) 100%); }
.article-hero .content { position: relative; z-index: 1; width: 100%; max-width: 1080px; margin: 0 auto; padding: clamp(40px,6vw,74px) clamp(20px,6vw,60px); color: var(--cream); }
.article-hero .kicker-link { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.article-hero h1 { font-size: clamp(32px,4.6vw,60px); line-height: 1.06; margin: 16px 0 0; max-width: 820px; }
.byline-row { max-width: 720px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: clamp(30px,4vw,44px) 0 clamp(24px,3vw,34px); border-bottom: 1px solid var(--rule); }
.byline-row .who { display: flex; align-items: center; gap: 13px; }
.byline-row img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.byline-row .name { font-family: var(--font-label); font-size: 12.5px; font-weight: 600; color: var(--ink); }
.byline-row .role { font-size: 12px; color: var(--gray); }
.byline-row .since { font-size: 11.5px; color: var(--gray); }
.article-body { max-width: 720px; margin: 0 auto; padding: clamp(30px,4vw,46px) 0 clamp(60px,7vw,100px); }
.article-body .standfirst { font-size: 17px; line-height: 1.55; margin: 0 0 26px; font-weight: 600; }
.article-body p { font-size: 16.5px; line-height: 1.82; opacity: 0.88; margin: 0 0 22px; }
.article-body h2 { font-size: clamp(22px,2.4vw,30px); line-height: 1.2; margin: 38px 0 16px; }
.article-body figure { margin: 36px 0; }
.article-body figcaption { font-size: 12.5px; line-height: 1.6; color: var(--gray); margin-top: 10px; }
.pull-quote { margin: 36px 0; padding: 28px 0; border-top: 2px solid var(--gold); border-bottom: 1px solid var(--rule); }
.pull-quote p { font-family: var(--font-display); font-size: clamp(22px,2.6vw,30px); font-weight: 600; line-height: 1.3; margin: 0; opacity: 1; }
.article-foot { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: baseline; justify-content: space-between; }
.article-foot .related { font-size: 14.5px; line-height: 1.7; color: var(--gray); margin: 0; max-width: 460px; }
.article-foot .all-notes { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }
.split-hero { margin-top: var(--header-h); display: grid; grid-template-columns: 1fr 1fr; min-height: min(56vh,460px); }
.split-hero figure { position: relative; margin: 0; overflow: hidden; min-height: 230px; }
.split-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-hero .g { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,31,31,0.28) 0%, rgba(34,31,31,0.16) 55%, rgba(34,31,31,0.72) 100%); }
.split-hero figcaption { position: absolute; left: 0; bottom: 0; padding: 20px 22px; font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); }
.split-figs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0 34px; }
.split-figs figure { margin: 0; }
.split-figs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-figs figcaption { position: static; padding: 0; font-family: var(--font-body); font-weight: 400; text-transform: none; letter-spacing: normal; color: var(--gray); font-size: 12.5px; margin-top: 9px; }
@media (max-width: 640px) { .split-hero, .split-figs { grid-template-columns: 1fr; } }

/* ---------- Sheet modal ---------- */
.sheet-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(20,17,17,0.62); display: none; align-items: flex-start; justify-content: center; padding: clamp(16px,5vh,64px) 16px; overflow-y: auto; }
.sheet-overlay.open { display: flex; }
.sheet-modal { position: relative; width: 100%; max-width: 860px; background: var(--cream); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.sheet-close { position: absolute; top: 10px; right: 10px; z-index: 2; background: rgba(244,244,240,0.85); border: none; font-size: 26px; line-height: 1; color: var(--ink); padding: 9px 15px; }
.sheet-top { display: grid; grid-template-columns: 320px 1fr; align-items: stretch; }
.sheet-top .shot { position: relative; min-height: 520px; overflow: hidden; }
.sheet-top .shot img { width: 100%; height: 100%; object-fit: cover; }
.sheet-top .info { padding: clamp(28px,3.4vw,44px); display: flex; flex-direction: column; justify-content: center; }
.sheet-top h2 { font-size: clamp(26px,3vw,36px); margin: 8px 0 4px; line-height: 1.12; }
.sheet-body { padding: 0 clamp(28px,3.4vw,44px) clamp(28px,3.4vw,44px); }
.sheet-cols { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(260px,100%),1fr)); gap: clamp(24px,3vw,44px); padding-top: clamp(24px,3vw,36px); border-top: 1px solid var(--rule); }
.sheet-cols h3 { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.sheet-cols p { font-size: 14px; line-height: 1.7; opacity: 0.86; margin: 0 0 22px; }
.spec-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 9px 0; border-bottom: 1px solid rgba(34,31,31,0.1); }
.spec-row .k { font-family: var(--font-label); font-size: 10.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray); }
.spec-row .v { font-size: 13.5px; text-align: right; }
@media (max-width: 640px) { .sheet-top { grid-template-columns: 1fr; } .sheet-top .shot { min-height: 260px; } }

/* ---------- Footer ---------- */
footer.site-footer { background: #1a1717; color: rgba(244,244,240,0.75); padding: 60px clamp(20px,6vw,80px) 28px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(210px,100%),1fr)); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(244,244,240,0.12); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { width: 32px; height: 32px; object-fit: contain; }
.footer-brand span { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--cream); }
footer.site-footer .col-label { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.footer-links a { font-size: 13.5px; color: rgba(244,244,240,0.75); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.footer-bottom .copy { font-size: 12px; color: rgba(244,244,240,0.5); }
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom .legal-links a { font-size: 12px; color: rgba(244,244,240,0.5); }
.footer-bottom .legal-links a:hover { color: var(--gold); }
.waitlist-note { font-size: 13px; line-height: 1.7; color: rgba(244,244,240,0.72); margin: 14px 0 0; max-width: 330px; }
.waitlist-form { display: flex; margin-top: 14px; border-bottom: 1px solid rgba(244,244,240,0.35); max-width: 330px; }
.waitlist-form input { background: none; border: none; color: var(--cream); font-family: var(--font-body); font-size: 13.5px; padding: 8px 0; flex: 1; outline: none; }
.waitlist-form button { flex-shrink: 0; white-space: nowrap; background: none; border: none; color: var(--gold); font-family: var(--font-label); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; padding: 8px 0; }
.waitlist-thanks { font-size: 13.5px; line-height: 1.7; color: var(--cream); margin-top: 16px; }

/* ---------- Mobile bar ---------- */
#mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; background: var(--ink); padding-bottom: env(safe-area-inset-bottom); transition: transform 0.4s ease; }
#mobile-bar a { flex: 1; text-align: center; padding: 17px 12px; font-family: var(--font-label); font-size: 11.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--cream); border-right: 1px solid rgba(244,244,240,0.15); }
#mobile-bar a:last-child { border-right: none; color: var(--gold); }
#mobile-bar.hide { transform: translateY(100%); }
@media (max-width: 899px) { #mobile-bar { display: flex; } .mobile-bar-spacer { display: block; height: calc(52px + env(safe-area-inset-bottom)); } }
@media (min-width: 900px) { .mobile-bar-spacer { display: none; } }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero-media.kenburns { animation: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.max-narrow { max-width: 900px; margin: 0 auto; }
.max-720 { max-width: 720px; margin: 0 auto; }
.lede { font-family: var(--font-display); font-size: clamp(22px,2.6vw,32px); font-weight: 400; line-height: 1.5; margin-top: 0; margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---------- E-label pages (deliberately austere, no shared header/footer) ---------- */
body.elabel { margin: 0; background: var(--cream); }
.elabel-header { border-bottom: 1px solid var(--rule); padding: 22px clamp(20px,6vw,60px); display: flex; align-items: center; gap: 14px; }
.elabel-header img { height: 38px; width: auto; }
.elabel-header span { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.elabel-main { padding: clamp(34px,5vw,66px) clamp(20px,6vw,60px) 80px; }
.elabel-main .inner { max-width: 640px; margin: 0 auto; }
.elabel-main.index .inner { max-width: 760px; }
.elabel-main h1 { font-size: clamp(28px,3.6vw,44px); line-height: 1.1; margin: 0 0 18px; }
.elabel-main.detail h1 { font-size: clamp(26px,3.4vw,40px); line-height: 1.12; margin: 14px 0 0; }
.elabel-main p.intro { font-size: 15.5px; line-height: 1.75; opacity: 0.86; margin: 0 0 34px; max-width: 620px; }
.elabel-list a { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 18px; padding: 16px 0; border-bottom: 1px solid var(--rule); color: var(--ink); }
.elabel-list .name { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.elabel-list .vintage { font-family: var(--font-label); font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; color: var(--gray); }
.elabel-main p.compliance { font-size: 14.5px; line-height: 1.75; opacity: 0.82; margin: 20px 0 0; }
table.elabel-table { width: 100%; border-collapse: collapse; margin: 32px 0 0; font-size: 15px; }
table.elabel-table th, table.elabel-table td { padding: 13px 0; border-top: 1px solid rgba(34,31,31,0.12); font-weight: 400; text-align: left; }
table.elabel-table td { text-align: right; font-variant-numeric: tabular-nums; }
table.elabel-table .serving-row th, table.elabel-table .serving-row td { font-family: var(--font-label); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); padding: 0 0 10px; border-top: none; }
table.elabel-table .main-row th, table.elabel-table .main-row td { font-weight: 600; }
table.elabel-table .sub-row th { padding-left: 18px; }
.elabel-ingredients { font-size: 15.5px; line-height: 1.7; margin: 28px 0 0; padding-top: 20px; border-top: 2px solid var(--ink); }
.elabel-back { font-size: 13.5px; line-height: 1.7; color: var(--gray); margin: 34px 0 0; }
