/* =====================================================================
   Delicia de Mi Tierra · Home — "Mesa de Tulum"
   Editorial warm palette · cinematic Pixi hero · scroll-told story
   ===================================================================== */

:root {
  /* palette — drawn from the illustrated collages */
  --paper:        #FBF6EC;
  --cream:        #F4EBDA;
  --cream-2:      #EADDC6;
  --sand:         #DCC6A2;
  --clay:         #C77E4F;
  --terracotta:   #B45E37;
  --terracotta-d: #9A4A2B;
  --mustard:      #C7942F;
  --gold:         #E0B255;
  --sage:         #7D8262;
  --olive:        #565B43;
  --forest:       #39432F;
  --cacao:        #2A2017;
  --ink:          #1C1611;
  --teal:         #1C4A40;

  --text:         #2A2017;
  --muted:        #6A5946;
  --line:         rgba(42, 32, 23, .14);

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-pill: 999px;
  --r-card: 18px;
  --r-sm: 12px;

  --sh-card: 0 1px 2px rgba(42,32,23,.06), 0 18px 40px rgba(42,32,23,.10);
  --sh-card-h: 0 2px 6px rgba(42,32,23,.10), 0 30px 60px rgba(42,32,23,.18);
  --sh-soft: 0 14px 34px rgba(42,32,23,.14);

  --nav-h: 84px;
  --ease: cubic-bezier(.2,.7,.2,1);

  /* feTurbulence film grain (no asset) */
  --grain: 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='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--cacao); color: var(--cream);
  padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

::selection { background: var(--terracotta); color: var(--paper); }

:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

/* =========================== TYPE PRIMITIVES =========================== */
.display {
  font-family: var(--serif);
  font-weight: 420;
  line-height: 1.0;
  letter-spacing: -.02em;
  font-optical-sizing: auto;
  margin: 0;
}
.line { display: block; overflow: hidden; }
.line > span { display: block; }

.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--terracotta-d);
  margin: 0 0 1.3rem;
}
.kicker span {
  width: 26px; height: 1.5px; background: currentColor; display: inline-block; opacity: .6;
}
.kicker--light { color: var(--gold); }

.section-title { font-size: clamp(2rem, 4.6vw, 3.5rem); color: var(--cacao); }
.section-title--light { color: var(--paper); }
.section-sub {
  max-width: 42ch; font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.6; color: var(--muted);
  margin: 1.2rem 0 0;
}
.section-sub--light { color: rgba(244,235,218,.78); }

.section-head { max-width: 760px; margin: 0 0 clamp(2rem, 4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .kicker { justify-content: center; }

/* =========================== BUTTONS =========================== */
.btn {
  --btn-bg: transparent; --btn-fg: var(--cacao);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .92rem; letter-spacing: .01em;
  padding: .8em 1.3em; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s;
  white-space: nowrap;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--lg { font-size: 1rem; padding: .95em 1.7em; }
.btn--block { width: 100%; }

.btn--solid {
  --btn-bg: var(--terracotta); --btn-fg: var(--paper);
  box-shadow: 0 10px 24px rgba(180,94,55,.32);
}
.btn--solid:hover { --btn-bg: var(--terracotta-d); box-shadow: 0 16px 32px rgba(154,74,43,.42); }
.btn--solid:hover svg { transform: translateX(4px); }

.btn--outline { --btn-fg: var(--cacao); border-color: rgba(42,32,23,.32); background: rgba(251,246,236,.4); }
.btn--outline:hover { border-color: var(--cacao); background: rgba(251,246,236,.8); }
.btn--outline-light { --btn-fg: var(--paper); border-color: rgba(251,246,236,.5); background: rgba(251,246,236,.06); backdrop-filter: blur(4px); }
.btn--outline-light:hover { border-color: var(--paper); background: rgba(251,246,236,.16); }

.btn--ghost { --btn-fg: inherit; padding: .65em 1em; }
.btn--ghost:hover { background: rgba(42,32,23,.07); }

.btn--whatsapp { --btn-fg: var(--cacao); background: rgba(251,246,236,.5); border-color: rgba(42,32,23,.16); }
.btn--whatsapp svg { color: #1FA855; }
.btn--whatsapp:hover { border-color: #1FA855; color: var(--terracotta-d); }
.btn--whatsapp-light { --btn-fg: var(--paper); background: rgba(251,246,236,.08); border-color: rgba(251,246,236,.28); backdrop-filter: blur(4px); }
.btn--whatsapp-light:hover { background: rgba(31,168,85,.18); border-color: #1FA855; color: var(--paper); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--terracotta-d); margin-top: 1.8rem;
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: gap .3s var(--ease), border-color .3s;
}
.link-arrow:hover { gap: .85em; border-color: var(--terracotta); }

/* =========================== NAV =========================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 clamp(1.1rem, 3.4vw, 3.2rem);
  color: var(--paper);
  transition: height .4s var(--ease), background .4s, box-shadow .4s, color .4s;
}
.nav.is-stuck {
  height: 68px; color: var(--cacao);
  background: rgba(251,246,236,.88);
  backdrop-filter: blur(12px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(42,32,23,.08);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; color: inherit; }
.brand__mark {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 35% 30%, rgba(251,246,236,.22), rgba(251,246,236,.05));
  box-shadow: inset 0 0 0 1px rgba(224,178,85,.45);
  transition: color .4s, box-shadow .4s, background .4s;
}
.nav.is-stuck .brand__mark { color: var(--terracotta); background: radial-gradient(circle at 35% 30%, rgba(180,94,55,.14), rgba(180,94,55,.03)); box-shadow: inset 0 0 0 1px rgba(180,94,55,.4); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; letter-spacing: .005em; }
.brand__name em { font-style: italic; font-weight: 400; }
.brand__tag {
  font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px; opacity: .9;
}
.nav.is-stuck .brand__tag { color: var(--terracotta-d); }

.nav__links {
  margin-left: auto; display: flex; gap: clamp(.9rem, 1.9vw, 2rem);
  font-size: .92rem; font-weight: 500;
}
.nav__links a { position: relative; padding: .35em 0; opacity: .85; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: currentColor; transition: width .35s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: .6rem; margin-left: 1.2rem; }
.nav:not(.is-stuck) .btn--ghost { color: var(--paper); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer; align-items: center; justify-content: center;
}
.nav__burger span { width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: .3s var(--ease); }
body.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(28,22,17,.97); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
body.nav-open .drawer { opacity: 1; pointer-events: auto; }
.drawer__links { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.drawer__links a { font-family: var(--serif); font-size: 1.8rem; color: var(--paper); }
.drawer__links a:hover { color: var(--gold); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh; overflow: hidden; isolation: isolate;
  background: var(--ink) url("../assets/art/hero-dusk.jpg") center 38%/cover no-repeat;
  display: flex; align-items: flex-end;
}
.hero__canvas {
  position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; pointer-events: none;
}
/* legibility scrim — dark at top (nav) and bottom-left (content) */
.hero__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,15,11,.6) 0%, rgba(20,15,11,0) 20%),
    linear-gradient(6deg, rgba(20,15,11,.9) 0%, rgba(20,15,11,.62) 38%, rgba(20,15,11,.3) 56%, rgba(20,15,11,0) 76%),
    radial-gradient(130% 95% at 10% 92%, rgba(20,15,11,.66), rgba(20,15,11,0) 58%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background-image: var(--grain); background-size: 180px;
  mix-blend-mode: overlay; opacity: .5;
}

.hero__content {
  position: relative; z-index: 10;
  width: min(100%, 1340px); margin: 0 auto;
  padding: 0 clamp(1.1rem, 3.4vw, 3.2rem) clamp(4.5rem, 9vh, 8rem);
}
/* content-anchored legibility plate — keeps the headline readable over any
   part of the collage, independent of where the bright band lands */
.hero__content::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -6%; right: -12%; top: -8%; bottom: -6%;
  background: radial-gradient(115% 90% at 24% 48%,
    rgba(20,15,11,.72) 0%, rgba(20,15,11,.46) 44%, rgba(20,15,11,0) 76%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--terracotta-d); margin: 0 0 1.4rem;
}
.eyebrow--light { color: var(--gold); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(224,178,85,.5); }

.display--hero {
  font-weight: 440;
  font-size: clamp(2.9rem, 8.2vw, 7rem);
  line-height: .96; letter-spacing: -.025em; color: var(--paper);
  max-width: 16ch; text-wrap: balance;
  text-shadow: 0 2px 24px rgba(20,15,11,.6), 0 1px 2px rgba(20,15,11,.4);
}
.line--accent { color: var(--gold); font-style: italic; font-weight: 380; }

.lead { font-size: clamp(1.02rem, 1.3vw, 1.2rem); line-height: 1.62; color: var(--muted); }
.lead--light { color: rgba(244,235,218,.9); max-width: 42rem; margin: 1.7rem 0 0; }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2.2rem; }

.hero__chips {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 2.4rem 0 0;
}
.hero__chips li {
  font-size: .74rem; font-weight: 500; letter-spacing: .02em; color: rgba(244,235,218,.85);
  padding: .42em .9em; border-radius: var(--r-pill);
  border: 1px solid rgba(244,235,218,.24); background: rgba(244,235,218,.06); backdrop-filter: blur(3px);
}

.hero__scroll {
  position: absolute; z-index: 10; right: clamp(1.1rem, 3.4vw, 3.2rem); bottom: clamp(1.6rem, 3vh, 2.4rem);
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,235,218,.82);
}

.botanical { position: absolute; z-index: 4; pointer-events: none; opacity: .42; will-change: transform; }
.botanical--stem { width: clamp(120px, 13vw, 230px); right: 2vw; top: 14vh; transform: rotate(8deg); filter: brightness(2) sepia(.4) saturate(1.2) hue-rotate(5deg); }

/* =====================================================================
   INTRO / POSICIONAMIENTO
   ===================================================================== */
.intro {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) clamp(1.1rem, 3.4vw, 3.2rem);
  background: linear-gradient(180deg, var(--paper), var(--cream));
}
.intro__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.intro .kicker { justify-content: center; }
.intro__title {
  font-size: clamp(2.1rem, 5.2vw, 4.2rem); color: var(--cacao); line-height: 1.04;
  margin-inline: auto; max-width: 18ch;
}
.intro__title .line--accent, .intro__title em { color: var(--terracotta); font-style: italic; }
.intro__body {
  max-width: 60ch; margin: 1.8rem auto 0; font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.7; color: var(--muted);
}
.intro__marks {
  list-style: none; padding: 0; margin: 3rem auto 0; max-width: 880px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.intro__marks li {
  display: flex; flex-direction: column; gap: .25rem; padding: 1.3rem 1rem;
  border: 1px solid var(--line); border-radius: var(--r-card); background: rgba(255,255,255,.4);
}
.intro__marks strong { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; color: var(--cacao); }
.intro__marks span { font-size: .85rem; color: var(--muted); }

/* =====================================================================
   EXPERIENCIAS (FOOD) — card grid
   ===================================================================== */
.exp { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.1rem, 3.4vw, 3.2rem); background: var(--cream); }
.exp .section-head, .exp__grid { max-width: 1340px; margin-inline: auto; }
.exp__grid {
  display: grid; gap: clamp(1rem, 1.6vw, 1.6rem);
  grid-template-columns: repeat(6, 1fr);
}
.card {
  grid-column: span 3;
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; box-shadow: var(--sh-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card--lg { grid-column: span 6; flex-direction: row; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-card-h); }
.card__media { display: block; overflow: hidden; aspect-ratio: 4/3; background: var(--cream-2); }
.card--lg .card__media { flex: 1 1 58%; aspect-ratio: auto; min-height: 320px; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.card--lg .card__body { flex: 1 1 42%; justify-content: center; padding: clamp(1.5rem, 3vw, 3rem); }
.card__tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--terracotta-d);
}
.card__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.4rem, 2vw, 1.9rem); color: var(--cacao); margin: 0; }
.card--lg .card__title { font-size: clamp(2rem, 3.4vw, 3rem); }
.card__desc { color: var(--muted); font-size: .96rem; line-height: 1.55; margin: 0; }
.card__price { margin: .4rem 0 0; font-size: .9rem; color: var(--olive); }
.card__price strong { font-family: var(--serif); font-size: 1.25rem; color: var(--terracotta); font-weight: 500; }

/* =====================================================================
   GALERÍA — horizontal scroll showcase (dark)
   ===================================================================== */
.gallery { position: relative; background: var(--cacao); color: var(--paper); overflow: hidden; padding: clamp(4rem,8vw,7rem) 0; }
.gallery__intro { max-width: 1340px; margin: 0 auto clamp(2rem,4vw,3rem); padding: 0 clamp(1.1rem, 3.4vw, 3.2rem); }
.gallery__title { color: var(--paper); }
.gallery__track {
  display: flex; gap: clamp(1rem, 1.6vw, 1.6rem);
  padding: 0 clamp(1.1rem, 3.4vw, 3.2rem); will-change: transform;
  /* native horizontal scroll by default (no-JS / mobile fallback) */
  overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory;
}
.gallery__track::-webkit-scrollbar { display: none; }
.shot {
  margin: 0; flex: 0 0 auto; width: clamp(260px, 32vw, 440px);
  border-radius: var(--r-card); overflow: hidden; position: relative;
  scroll-snap-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}
.shot img { width: 100%; height: clamp(340px, 46vh, 560px); object-fit: cover; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.3rem .9rem;
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: .01em;
  background: linear-gradient(0deg, rgba(20,15,11,.78), rgba(20,15,11,0));
}
/* desktop motion takes over scrolling via GSAP pin (see scroll.js) */

/* =====================================================================
   CHEF
   ===================================================================== */
.chef {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: 1340px; margin: 0 auto; padding: clamp(5rem, 10vw, 9rem) clamp(1.1rem, 3.4vw, 3.2rem);
  background: var(--paper);
}
.chef__media { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-soft); }
.chef__media img { width: 100%; height: clamp(380px, 52vw, 600px); object-fit: cover; }
.chef__badge {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--paper); background: rgba(20,15,11,.55); backdrop-filter: blur(6px);
  padding: .5em .9em; border-radius: var(--r-pill); border: 1px solid rgba(244,235,218,.2);
}
.chef__body { font-size: clamp(1.02rem, 1.25vw, 1.16rem); line-height: 1.7; color: var(--muted); margin: 1.4rem 0 0; max-width: 48ch; }
.chef__list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: .7rem; }
.chef__list li { position: relative; padding-left: 1.7rem; color: var(--text); font-weight: 500; }
.chef__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 50%;
  background: var(--terracotta); box-shadow: 0 0 0 4px rgba(180,94,55,.16);
}

/* =====================================================================
   DEGUSTACIONES (dark band)
   ===================================================================== */
.tasting { position: relative; isolation: isolate; padding: clamp(5rem, 10vw, 9rem) clamp(1.1rem, 3.4vw, 3.2rem); color: var(--paper); overflow: hidden; }
.tasting__bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--ink) url("../assets/art/dinner-night.jpg") center/cover no-repeat;
  transform: scale(1.08); will-change: transform;
}
.tasting::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,15,11,.86), rgba(20,15,11,.74) 50%, rgba(20,15,11,.9));
}
.tasting__inner { max-width: 1200px; margin: 0 auto; }
.tasting__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 1.6vw, 1.4rem);
}
.tcard {
  padding: clamp(1.6rem, 2.4vw, 2.2rem); border-radius: var(--r-card);
  background: rgba(244,235,218,.06); border: 1px solid rgba(244,235,218,.16); backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.tcard:hover { transform: translateY(-3px); background: rgba(244,235,218,.1); border-color: rgba(224,178,85,.4); }
.tcard--feature { background: linear-gradient(150deg, rgba(180,94,55,.28), rgba(244,235,218,.05)); border-color: rgba(224,178,85,.34); }
.tcard__flag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: .3em .7em; border-radius: var(--r-pill); margin-bottom: .9rem;
}
.tcard__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.7rem); margin: 0 0 .6rem; color: var(--paper); }
.tcard__desc { color: rgba(244,235,218,.78); font-size: .96rem; line-height: 1.55; margin: 0; }
.tcard__price { margin: 1rem 0 0; font-size: .9rem; color: rgba(244,235,218,.7); }
.tcard__price strong { font-family: var(--serif); font-size: 1.35rem; color: var(--gold); font-weight: 500; }

/* =====================================================================
   RESEÑAS
   ===================================================================== */
.reviews { padding: clamp(5rem, 10vw, 9rem) clamp(1.1rem, 3.4vw, 3.2rem); background: linear-gradient(180deg, var(--cream), var(--paper)); }
.reviews__grid { max-width: 1340px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.6vw, 1.6rem); }
.quote {
  margin: 0; padding: clamp(1.8rem, 2.6vw, 2.4rem); background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--sh-card);
  display: flex; flex-direction: column; gap: 1.4rem;
}
.quote p { font-family: var(--serif); font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; color: var(--cacao); margin: 0; font-weight: 400; }
.quote footer { display: flex; flex-direction: column; gap: .15rem; margin-top: auto; }
.quote__name { font-weight: 600; color: var(--text); }
.quote__meta { font-size: .82rem; color: var(--muted); }
.quote::before { content: "“"; font-family: var(--serif); font-size: 3.4rem; line-height: .4; color: var(--terracotta); opacity: .5; height: 1.4rem; }

/* =====================================================================
   RESERVA / CONTACTO (dark)
   ===================================================================== */
.reserve { background: var(--ink); color: var(--paper); padding: clamp(5rem, 10vw, 9rem) clamp(1.1rem, 3.4vw, 3.2rem); }
.reserve__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.reserve__body { color: rgba(244,235,218,.8); font-size: clamp(1.02rem, 1.25vw, 1.16rem); line-height: 1.7; margin: 1.4rem 0 0; max-width: 46ch; }
.reserve__direct { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin-top: 2rem; }
.reserve__ig { color: var(--gold); font-weight: 500; letter-spacing: .02em; border-bottom: 1px solid transparent; transition: border-color .3s; }
.reserve__ig:hover { border-color: var(--gold); }

.reserve__form {
  background: rgba(244,235,218,.05); border: 1px solid rgba(244,235,218,.16);
  border-radius: var(--r-card); padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: rgba(244,235,218,.8); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .98rem; color: var(--paper);
  background: rgba(20,15,11,.4); border: 1px solid rgba(244,235,218,.2); border-radius: var(--r-sm);
  padding: .8em .9em; transition: border-color .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(244,235,218,.4); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(20,15,11,.6); }
.field select option { color: #000; }
.field input[type="date"] { color-scheme: dark; }
.reserve__note { font-size: .8rem; color: rgba(244,235,218,.55); margin: .2rem 0 0; text-align: center; }
.reserve__form.is-sent .btn--solid { --btn-bg: var(--olive); }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--cacao); color: rgba(244,235,218,.8); padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 3.4vw, 3.2rem) 2rem; }
.footer__top { max-width: 1340px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: center; padding-bottom: 2rem; border-bottom: 1px solid rgba(244,235,218,.14); }
.brand--footer { color: var(--paper); }
.brand--footer .brand__tag { color: var(--gold); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1.4rem; font-size: .92rem; }
.footer__nav a { opacity: .8; } .footer__nav a:hover { opacity: 1; color: var(--gold); }
.footer__bottom { max-width: 1340px; margin: 1.6rem auto 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; }
.footer__social { display: flex; gap: 1.2rem; } .footer__social a:hover { color: var(--gold); }

/* =====================================================================
   MOTION GATE — pre-hide animated elements only when motion is allowed
   (prevents FOUC; reduced-motion shows a fully composed page)
   ===================================================================== */
html.anim [data-reveal] { opacity: 0; }
html.anim [data-reveal="up"] { transform: translateY(30px); }
html.anim [data-reveal="card"] { transform: translateY(40px); }
html.anim [data-reveal="img"] { transform: translateY(40px) scale(.98); }
html.anim [data-reveal="lines"] .line > span,
html.anim [data-reveal="line"] > span { opacity: 1; }
html.anim .botanical { opacity: 0; }

html.anim .eyebrow__dot { animation: pulse 2.6s ease-out infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,178,85,.5); }
  70% { box-shadow: 0 0 0 11px rgba(224,178,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,178,85,0); }
}
html.anim .hero__scroll svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(4px);} }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .chef { grid-template-columns: 1fr; }
  .chef__media { order: -1; }
  .reserve__grid { grid-template-columns: 1fr; }
  .card--lg { grid-column: span 6; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__actions .btn--ghost, .nav__actions .btn--solid { display: none; }
  .nav__burger { display: flex; }
  .card { grid-column: span 3; }
  .card--lg { flex-direction: column; }
  .card--lg .card__media { min-height: 240px; aspect-ratio: 16/10; }
  .tasting__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .intro__marks { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 680px) {
  :root { --nav-h: 70px; }
  .exp__grid { grid-template-columns: 1fr; }
  .card, .card--lg { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .display--hero { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero__content { padding-bottom: 5rem; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .botanical--stem { display: none; }
}

