/* ============================================================
   Saamo Shubitidze's Marani — Concept A "Sun-Warmed Marani"
   ============================================================ */

:root {
  /* Palette */
  --shell: #efe4c8;          /* darker cream frame */
  --paper: #f6efdd;          /* dominant cream background */
  --paper-2: #fbf6e9;        /* lighter panel */
  --ink: #3a2a1c;            /* warm brown text */
  --ink-soft: rgba(58, 42, 28, 0.85);
  --ink-faint: rgba(58, 42, 28, 0.7);   /* >=4.5:1 on cream (AA) */
  --gold: #d9a521;           /* signature accent (fills/borders/large) */
  --gold-deep: #b9831a;      /* accent for borders/hover/large text */
  --gold-text: #8a6410;      /* darker gold for SMALL text on cream (>=4.5:1 AA) */
  --terracotta: #b5562f;
  --olive: #6b6a3a;
  --wine: #6e1023;

  --page-bg: #f6efdd;

  /* Type */
  --font-display: "Fraunces", "Noto Serif Georgian", Georgia, serif;
  --font-body: "Spectral", "Noto Serif Georgian", Georgia, serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --btn-dur: 0.5s;
}

:lang(ka) {
  --font-display: "Noto Serif Georgian", "Fraunces", Georgia, serif;
  --font-body: "Noto Serif Georgian", "Spectral", Georgia, serif;
}

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

html, body {
  overflow-x: clip;              /* NEVER hidden — breaks sticky */
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.6rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link — visually hidden until keyboard-focused */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 0.7em 1.2em; border-radius: 0 0 4px 4px; font-size: 0.95rem;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Shared type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1rem;
}
.headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.headline em {
  font-style: italic;
  color: var(--terracotta);
}
.body { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 56ch; }
.body--lead { font-size: 1.12rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section__head { max-width: 40rem; margin-bottom: 3rem; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .body { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTON SYSTEM — "Wine Pour" tactile buttons
   Tier 1 primary .btn · Tier 2 .btn--ghost · Tier 3 .btn--link
   ============================================================ */

/* ---------- Tier 1: Primary CTA (signature wine-pour fill) ---------- */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0.04em;
  padding: 0.9em 1.9em; min-height: 48px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 3px; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--btn-dur) var(--ease),
              box-shadow var(--btn-dur) var(--ease),
              color 0.35s var(--ease);
}
/* faint top sheen */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
/* the wine that pours up */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, #7d152b, #4a0a16);
  transform: translateY(101%);
  border-radius: 44% 56% 0 0 / 16% 16% 0 0;
  transition: transform var(--btn-dur) var(--ease), border-radius var(--btn-dur) var(--ease);
}
.btn--full { width: 100%; }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-2px); color: var(--paper);
               box-shadow: 0 12px 26px -14px rgba(110,16,35,0.55); }
  .btn:hover::after { transform: translateY(0); border-radius: 0; }
}
/* tap / press — works on touch too */
.btn:active { transform: translateY(1px) scale(0.985); color: var(--paper);
              box-shadow: inset 0 3px 8px rgba(0,0,0,0.28); }
.btn:active::after { transform: translateY(0); border-radius: 0; }
.btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }

/* ---------- Tier 2: Secondary (ghost, fills gold) ---------- */
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--gold-deep); }
.btn--ghost::before { display: none; }
.btn--ghost::after { background: linear-gradient(180deg, #e8b84a, var(--gold-deep)); }
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover { color: var(--ink); box-shadow: 0 12px 26px -16px rgba(185,131,26,0.6); }
}
.btn--ghost:active { color: var(--ink); }

/* ---------- Tier 3: Tertiary link (arrow + drawn underline) ---------- */
.btn--link {
  position: relative; display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--font-body); font-size: 0.98rem; color: var(--gold-text);
  background: none; border: none; padding: 0.4em 0; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn--link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold-deep); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn--link .btn__arrow { transition: transform 0.35s var(--ease); }
@media (hover: hover) and (pointer: fine) {
  .btn--link:hover::after { transform: scaleX(1); }
  .btn--link:hover .btn__arrow { transform: translateX(4px); }
}
.btn--link:active .btn__arrow { transform: translateX(2px); }
.btn--link:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 4px; border-radius: 2px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.6rem;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(246, 239, 221, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(58,42,28,0.08);
}
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink);
}
.nav__brand-sub {
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-text); margin-top: 0.25rem;
}
/* Light state = transparent over the hero video. Subtle top scrim guarantees
   legibility over bright frames (vineyard / cellar) without a visible bar. */
.nav.is-light:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(30,20,12,0.5) 0%, rgba(30,20,12,0) 100%);
}
.nav.is-light .nav__brand-name { color: var(--paper); }
.nav.is-light .nav__brand-sub { color: var(--gold); }

.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  font-size: 0.92rem; color: var(--ink-soft); position: relative; padding: 0.2rem 0;
  transition: color 0.25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold-deep); transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav.is-light .nav__links a { color: rgba(246,239,221,0.85); }
.nav.is-light .nav__links a:hover { color: #fff; }

.nav__right { display: flex; align-items: center; gap: 1.1rem; }
.lang { display: flex; align-items: center; gap: 0.35rem; }
.lang__btn {
  position: relative; background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; min-height: 44px;     /* tap target */
  font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em;
  color: var(--ink-faint); padding: 0 0.35rem; line-height: 1;
  -webkit-tap-highlight-color: transparent; transition: color 0.25s var(--ease), transform 0.2s var(--ease);
}
.lang__btn[aria-pressed="true"] { color: var(--gold-text); font-weight: 600; }
/* shape cue (not color-only): underline under the active language */
.lang__btn[aria-pressed="true"]::after {
  content: ""; position: absolute; left: 0.35rem; right: 0.35rem; bottom: 25%; height: 2px;
  background: var(--gold-deep); border-radius: 2px;
}
.lang__btn:active { transform: scale(0.9); }
.lang__btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; border-radius: 3px; }
.lang__sep { color: var(--ink-faint); }
.nav.is-light .lang__btn { color: rgba(246,239,221,0.6); }
.nav.is-light .lang__btn[aria-pressed="true"] { color: var(--gold); }
.nav.is-light .lang__btn[aria-pressed="true"]::after { background: var(--gold); }
.nav.is-light .lang__sep { color: rgba(246,239,221,0.5); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 11px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; transition: transform 0.2s var(--ease); }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.nav__burger:active { transform: scale(0.9); }
.nav__burger:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; border-radius: 4px; }
.nav.is-light .nav__burger span { background: var(--paper); }

/* ============================================================
   HERO — scroll-scrub pin
   ============================================================ */
.hero-pin { position: relative; height: 320vh; background: #2a1d12; }
.hero-pin__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: flex-end;
  /* poster shows instantly + acts as fallback if the canvas/JS never paints */
  background: #2a1d12 url("../img/hero-poster.jpg?v=1") center 50% / cover no-repeat;
}
.hero-pin__video, .hero-pin__media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%; background: transparent;
}
.hero-pin__media { display: block; }
.hero-pin__video--mobile { display: none; }

.hero-pin__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(30,20,12,0.55) 0%, rgba(30,20,12,0.12) 30%,
                            rgba(30,20,12,0.35) 60%, rgba(30,20,12,0.85) 92%, var(--page-bg) 100%);
}

.hero-pin__content {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 1.6rem 9vh; color: var(--paper);
}
.hero__eyebrow { color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 1.2rem; }
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.04; letter-spacing: -0.015em;
  max-width: 18ch; margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero__headline em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: 1.15rem; max-width: 38ch; color: rgba(246,239,221,0.9); margin-bottom: 2rem; }
.hero__sub em { font-style: italic; color: var(--gold); }

/* The Georgian hero copy is a four-line verse, not a headline + blurb.
   Headline and sub share one type scale so the stanza reads as one block;
   the <br> in the content splits each couplet at its comma. */
:lang(ka) .hero__headline,
:lang(ka) .hero__sub {
  font-family: var(--font-display);
  font-weight: 400;
  /* 4.7vw keeps the longest verse line on one row down to ~360px */
  font-size: clamp(0.85rem, 4.7vw, 2.7rem);
  line-height: 1.42;
  letter-spacing: 0;
  max-width: none;
  color: rgba(246,239,221,0.95);
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
:lang(ka) .hero__headline { margin-bottom: 0; }
:lang(ka) .hero__sub { margin-bottom: 0; }
:lang(ka) .hero__headline em,
:lang(ka) .hero__sub em { font-style: normal; color: var(--gold); }

/* prose line under the verse — the plain-spoken address after the poem */
.hero__note {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 0.7rem + 0.5vw, 1.05rem); line-height: 1.55;
  max-width: 54ch;
  color: rgba(246,239,221,0.78);
  margin: 1.5rem 0 2rem;
}
/* hero CTA uses the base gold wine-pour button as-is */

.hero__scroll {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(246,239,221,0.8); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.hero__scroll-line { width: 1px; height: 38px; background: rgba(246,239,221,0.5); animation: scrollpulse 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   STORY
   ============================================================ */
.section--story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story-grid__media {
  border-radius: 3px; overflow: hidden; background: var(--shell);
  box-shadow: 0 18px 50px -24px rgba(58,42,28,0.5);
  aspect-ratio: 4/5;
}
.story-grid__media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PROCESS
   ============================================================ */
.section--process { background: var(--paper-2); }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.steps__item {
  padding: 2rem 1.4rem; background: var(--paper); border: 1px solid rgba(58,42,28,0.08);
  border-radius: 3px; position: relative;
}
.steps__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.steps__item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 0.5rem; }
.steps__item p { color: var(--ink-soft); font-size: 0.96rem; }
.process__photos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 2rem); margin-top: clamp(2.5rem, 5vw, 4rem); }
.process__photo { margin: 0; }
.process__photo img { display: block; width: 100%; height: clamp(260px, 38vw, 460px); object-fit: cover; border-radius: 4px; border: 1px solid rgba(58,42,28,0.1); box-shadow: 0 20px 50px -26px rgba(58,42,28,0.5); }
.process__photo figcaption { margin-top: 0.8rem; font-size: 0.9rem; color: var(--ink-faint); font-style: italic; }

/* ============================================================
   PLACE — full bleed image + panel
   ============================================================ */
.section--place { padding: 0; position: relative; min-height: 84vh; display: flex; align-items: center; }
.place__media { position: absolute; inset: 0; }
.place__media img, .place__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.place__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,20,12,0.78) 0%, rgba(30,20,12,0.3) 55%, transparent 100%); }
.place__panel {
  position: relative; z-index: 2; max-width: 36rem;
  margin-left: max(1.6rem, calc((100vw - var(--maxw)) / 2));
  padding: 3rem 0; color: var(--paper);
}
.place__panel .eyebrow { color: var(--gold); }
.place__panel .headline { color: var(--paper); }
.place__panel .headline em { color: var(--gold); }
.place__panel .body { color: rgba(246,239,221,0.92); }

/* etymology line — the name's meaning, set as a lead above the place copy */
.place__etym {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.55vw, 1.45rem);
  line-height: 1.45;
  max-width: 40ch;
  color: rgba(246,239,221,0.92);
  margin-bottom: 1.3rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
}
.place__etym em { font-style: italic; color: var(--gold); }

/* ============================================================
   WINES
   ============================================================ */
.section--wines { background: var(--paper); }
.wines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.wine-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--paper-2); border: 1px solid rgba(58,42,28,0.08); border-radius: 3px;
  padding: 2.2rem 1.8rem; text-align: center; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.wine-card__tag { margin-top: auto; }   /* align tags to the bottom across the row */
@media (hover: hover) and (pointer: fine) {
  .wine-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(58,42,28,0.55); }
}
/* label artwork at the top of the card (full landscape, no crop) */
.wine-card__label {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; object-position: center;
  display: block; border-radius: 4px; margin-bottom: 1.1rem;
  box-shadow: 0 8px 20px -14px rgba(58,42,28,0.5);
}
.wine-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin-bottom: 0.7rem; }
.wine-card__body { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 1.2rem; }
.wine-card__tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-text); border: 1px solid var(--gold); border-radius: 100px; padding: 0.3em 0.9em;
}
.wines__note { text-align: center; margin-top: 2.6rem; color: var(--ink-faint); font-style: italic; }

/* ============================================================
   VISIT
   ============================================================ */
.section--visit { background: var(--paper-2); }
.visit__media { margin: 0 auto clamp(2.5rem, 5vw, 4rem); overflow: hidden; border-radius: 6px; border: 1px solid rgba(58,42,28,0.1); box-shadow: 0 24px 60px -28px rgba(58,42,28,0.5); }
.visit__media img { display: block; width: 100%; height: clamp(220px, 42vw, 520px); object-fit: cover; }
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.visit__loc { color: var(--gold-text); letter-spacing: 0.08em; margin-top: 0.5rem; }
.visit-form { display: flex; flex-direction: column; gap: 1rem; background: var(--paper); padding: 2.2rem; border-radius: 4px; border: 1px solid rgba(58,42,28,0.1); }
.visit-form input {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.9rem 1rem; background: var(--paper-2); border: 1px solid rgba(58,42,28,0.18); border-radius: 2px;
}
.visit-form input:focus { outline: none; border-color: var(--gold); }
.form-feedback { font-size: 0.95rem; padding: 0.5rem 0; }
.form-feedback.is-success { color: var(--olive); }
.form-feedback.is-error { color: var(--terracotta); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(246,239,221,0.85); padding: 3.5rem 0; }
.footer__inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer__brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--paper); }
.footer__tagline { color: rgba(246,239,221,0.7); margin-top: 0.4rem; }
.footer__meta { text-align: right; font-size: 0.9rem; }
.footer__meta p { margin-bottom: 0.3rem; }
.footer__scan { color: var(--gold); }
.footer__rights { color: rgba(246,239,221,0.5); font-size: 0.8rem; margin-top: 0.6rem; }

/* ============================================================
   MOMENTS — vertical video carousel
   ============================================================ */
.section--moments { background: var(--paper-2); overflow: hidden; }
.carousel { position: relative; margin-top: 2.5rem; }
.carousel__track {
  display: flex; gap: 1.2rem;
  /* side padding lets the first/last card reach the scrollport center (~card half-width) */
  padding: 1rem max(1.5rem, calc(50vw - 165px));
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  overscroll-behavior-x: contain; touch-action: pan-x;
  list-style: none;
  -ms-overflow-style: none; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.vcard {
  position: relative; flex: 0 0 auto;
  height: clamp(380px, 62vh, 560px); aspect-ratio: 9 / 16;
  border-radius: 10px; overflow: hidden; background: #2a1d12;
  scroll-snap-align: center;
  box-shadow: 0 14px 36px -22px rgba(58,42,28,0.6);
  transform: scale(0.9); opacity: 0.5;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), box-shadow 0.5s var(--ease);
  cursor: pointer;
}
.vcard.is-center {
  transform: scale(1); opacity: 1;
  box-shadow: 0 26px 60px -26px rgba(58,42,28,0.75), 0 0 0 2px var(--gold);
}
.vcard__video { width: 100%; height: 100%; object-fit: cover; display: block; }

.vcard__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 1rem 0.9rem; color: var(--paper);
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.01em;
  background: linear-gradient(180deg, transparent, rgba(20,13,7,0.72));
  opacity: 0; transition: opacity 0.4s var(--ease); pointer-events: none;
}
.vcard.is-center .vcard__cap { opacity: 1; }

.vcard__sound {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
  display: flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: rgba(246,239,221,0.92);
  border: none; border-radius: 100px; padding: 0.5em 0.85em; cursor: pointer;
  -webkit-tap-highlight-color: transparent; transition: transform 0.2s var(--ease), background 0.25s var(--ease);
}
.vcard__sound::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); transition: background 0.25s var(--ease); }
.vcard__sound.is-on::before { background: var(--olive); }
@media (hover: hover) and (pointer: fine) { .vcard__sound:hover { background: #fff; } }
.vcard__sound:active { transform: scale(0.92); }
.vcard__sound:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }

.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper); color: var(--ink); border: 1px solid rgba(58,42,28,0.12);
  font-size: 1.6rem; line-height: 1; cursor: pointer; overflow: hidden; isolation: isolate;
  box-shadow: 0 8px 22px -12px rgba(58,42,28,0.6);
  -webkit-tap-highlight-color: transparent;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.carousel__arrow::after {   /* gold disc that grows from center */
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold);
  transform: scale(0); border-radius: 50%; transition: transform 0.3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .carousel__arrow:hover { transform: translateY(-50%) scale(1.06); box-shadow: 0 12px 26px -12px rgba(58,42,28,0.7); }
  .carousel__arrow:hover::after { transform: scale(1); }
}
.carousel__arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel__arrow:active::after { transform: scale(1); }
.carousel__arrow:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.carousel__arrow--prev { left: clamp(0.5rem, 3vw, 2.5rem); }
.carousel__arrow--next { right: clamp(0.5rem, 3vw, 2.5rem); }
.carousel__hint { text-align: center; margin-top: 1.4rem; color: var(--ink-faint); font-style: italic; font-size: 0.9rem; }

/* ============================================================
   JOURNEY / TIMELINE
   ============================================================ */
.section--journey { background: var(--paper-2); }
.timeline { list-style: none; position: relative; max-width: 720px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(var(--gold), rgba(217,165,33,0.25));
}
.timeline__item { position: relative; padding: 0 0 2.4rem 2.6rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px var(--paper-2);
}
.timeline__item--next::before { background: var(--paper-2); border: 2px solid var(--gold); }
.timeline__year {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-text); display: block; margin-bottom: 0.3rem;
}
.timeline__title { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; margin-bottom: 0.4rem; }
.timeline__body { color: var(--ink-soft); max-width: 52ch; }

/* ============================================================
   THE GRAPES
   ============================================================ */
.section--grapes { background: var(--paper); }
.grape-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; max-width: 760px; margin: 0 auto; }
.grape-card {
  background: var(--paper-2); border: 1px solid rgba(58,42,28,0.08); border-radius: 3px;
  padding: 2.2rem 1.8rem; text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .grape-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(58,42,28,0.55); }
}
.grape-card__swatch { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 1rem; box-shadow: inset 0 -6px 14px rgba(0,0,0,0.25); }
.grape-card__swatch--red { background: radial-gradient(circle at 35% 30%, #8a1c2e, #4a0a16); }
.grape-card__swatch--amber { background: radial-gradient(circle at 35% 30%, #e8b53e, #b9831a); }
.grape-card__swatch--white { background: radial-gradient(circle at 35% 30%, #f0e3a8, #cdb86a); }
.grape-card__tag {
  display: inline-block; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-text); border: 1px solid var(--gold); border-radius: 100px; padding: 0.25em 0.8em; margin-bottom: 0.8rem;
}
.grape-card__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; margin-bottom: 0.6rem; }
.grape-card__body { color: var(--ink-soft); font-size: 0.97rem; }
.grapes__note { text-align: center; margin-top: 2.4rem; color: var(--ink-faint); font-style: italic; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.section--faq { background: var(--paper-2); }
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  background: var(--paper); border: 1px solid rgba(58,42,28,0.1); border-radius: 4px;
  margin-bottom: 0.8rem; overflow: hidden;
}
.faq__item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 3rem 1.2rem 1.4rem; position: relative;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-text); }
.faq__item summary::after {
  content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.5rem; color: var(--gold-text);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.faq__a { padding: 0 1.4rem 1.3rem; }
.faq__a p { color: var(--ink-soft); max-width: 60ch; }
.faq__cta { text-align: center; margin-top: 2.2rem; }
.wines__cta { text-align: center; margin-top: 0.7rem; }

/* ============================================================
   REVEAL (GSAP enhances; CSS fallback shows content)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.no-gsap .reveal { opacity: 1; transform: none; }

/* ============================================================
   MOBILE NAV DRAWER + RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .hero-pin { height: 100vh; height: 100svh; }   /* svh avoids iOS toolbar clipping the CTA */
  .hero-pin__sticky { position: relative; }
  .hero-pin__media--desktop { display: none; }
  .hero-pin__video--mobile { display: block; }
  /* mobile hero is an autoplay loop, not a scrub — the centered "SCROLL" cue
     has no meaning here and collided with the left-aligned CTA, so hide it */
  .hero__scroll { display: none; }

  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; align-items: center;
    gap: 1.8rem; background: rgba(30,20,12,0.97); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 40;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.4rem; color: var(--paper); font-family: var(--font-display); }
  .nav__links a::after { display: none; }
  .nav__burger { display: flex; z-index: 60; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__burger.is-open span { background: var(--paper); }

  .story-grid { grid-template-columns: 1fr; }
  .story-grid__media { aspect-ratio: 16/10; order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .wines-grid { grid-template-columns: repeat(2, 1fr); max-width: 40rem; margin: 0 auto; }
  .grape-grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .place__panel { margin: 0 1.4rem; padding: 4rem 0; }
  .place__media::after { background: linear-gradient(180deg, rgba(30,20,12,0.35) 0%, rgba(30,20,12,0.82) 100%); }

  .carousel__track { gap: 0.9rem; }   /* padding inherits the centered base */
  .vcard { height: clamp(420px, 66vh, 560px); }
}

@media (max-width: 720px) {
  html, body { font-size: 17px; }
  .steps { grid-template-columns: 1fr; }
  .process__photos { grid-template-columns: 1fr; }
  .wines-grid { grid-template-columns: 1fr; max-width: 26rem; margin: 0 auto; }
  .footer__inner { flex-direction: column; }
  .footer__meta { text-align: left; }
  .hero-pin__content { padding-bottom: 12vh; }

  .carousel__arrow { display: none; }            /* swipe instead */
  .vcard { height: clamp(440px, 70vh, 580px); }

  .btn--link { min-height: 44px; }               /* tap target on touch */
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__scroll-line { animation: none; }
  html, body, .carousel__track { scroll-behavior: auto; }
  /* buttons + interactive: keep color feedback, drop motion */
  .btn, .btn::after, .btn--ghost::after, .btn--link::after, .btn--link .btn__arrow,
  .carousel__arrow, .carousel__arrow::after, .vcard__sound, .lang__btn, .nav__burger,
  .nav__links, .wine-card, .grape-card, .vcard, .vcard__cap, .nav, .place__panel {
    transition-duration: 0.01ms !important;
  }
  .btn:hover, .btn:active { transform: none; }
  .btn:hover::after, .btn:active::after { transform: translateY(0); border-radius: 0; }
  .wine-card:hover, .grape-card:hover { transform: none; }
  /* carousel: no center-zoom scaling under reduced-motion (all cards full) */
  .vcard, .vcard.is-center { transform: none; opacity: 1; }
}
