@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,200..800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Lora:ital,wght@0,400;0,600;1,400&family=Yellowtail&display=swap');

/* ════════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --cream:        #FAF3E0;
  --cream-border: #E3D9C3;
  --red:          #A8301F;
  --red-deep:     #872619;
  --gold:         #CCA146;
  --gold-light:   #E8D09A;
  --andino:       #053A52;
  --clay:         #F0E8D0;
  --text:         #5C4C42;
  --ink:          #362D26;

  --ff-script:    'Yellowtail', cursive;
  --ff-sans:      'DM Sans', sans-serif;
  --ff-serif:     'Lora', Georgia, serif;
  --ff-display:   'Bricolage Grotesque', sans-serif;

  /* Radii — classical, not app-like */
  --r-btn:    6px;
  --r-card:   10px;
  --r-badge:  3px;
  --r-pill:   32px;
  --r-input:  5px;

  --max-w:  1200px;
  --ease:   0.22s ease;
  --sp:     96px;   /* section vertical padding */
}

/* ════════════════════════════════════════
   RESET / BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Paper grain texture overlay — fixed so it covers all scroll positions */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.038;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════ */
h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.4px;
}

h1, h2 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-stretch: condensed;
  letter-spacing: -0.5px;
}

h3, h4 {
  font-family: var(--ff-sans);
}

/* Brand mark — text fallback (kept for legacy; prefer .logo-badge) */
.brand-name {
  font-family: var(--ff-script);
  color: var(--red);
  font-size: 40px;
  line-height: 1;
  display: block;
}
.brand-sub {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 4.5px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

/* ════════════════════════════════════════
   LOGO SVG — Vintage badge mark
════════════════════════════════════════ */
.logo-svg {
  display: block;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.nav__logo .logo-svg { width: 152px; height: 76px; }
.nav__logo:hover .logo-svg { opacity: 0.72; }

/* Responsive logo size */
@media (max-width: 768px) {
  .nav__logo .logo-svg { width: 122px; height: 61px; }
}

/* Light version for dark backgrounds — override via JS class or filter */
.logo-svg--light path { stroke: var(--cream); }
.logo-svg--light text { fill: var(--cream); }

/* Section labels — the thin rule before text is the vintage signal */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
}
/* For centered sections the rule looks odd — suppress it */
.section-tag--center { justify-content: center; }
.section-tag--center::before { display: none; }
.section-tag--light { color: var(--gold); opacity: 0.9; }
.section-tag--light::before { background: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  font-stretch: condensed;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-body {
  font-family: var(--ff-serif);
  font-size: 17px;
  color: var(--text);
  line-height: 1.82;
  max-width: 580px;
}

/* Ornamental divider — thin rule with centered mark */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px auto;
  max-width: 280px;
  opacity: 0.35;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ink);
}
.ornament__mark { font-size: 12px; color: var(--gold); opacity: 2; flex-shrink: 0; }

/* Decorative script pull — for use as accent inside sections */
.script-accent {
  font-family: var(--ff-script);
  color: var(--gold);
  opacity: 0.22;
  font-size: 80px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--sp) 0; background: var(--cream); }
.section--clay { background: var(--clay); }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-border);
  padding: 0 32px;
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.nav__logo { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  font-size: 13px; font-weight: 500;
  color: var(--ink); letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--red); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--r-btn);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background var(--ease);
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--red-deep) !important; }

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 1px; transition: all 0.25s; }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav drawer */
.nav__mobile {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--cream-border);
  padding: 20px 24px 28px; flex-direction: column; gap: 0; z-index: 99;
  box-shadow: 0 8px 32px rgba(54,45,38,0.1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--cream-border);
  transition: color var(--ease);
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--red); }
.btn-mobile-cta {
  margin-top: 16px; padding: 14px 24px;
  border-radius: var(--r-btn);
  background: var(--red); color: white !important;
  font-weight: 600; font-size: 12px; letter-spacing: 1px;
  text-transform: uppercase; text-align: center;
  border: none; font-family: var(--ff-sans);
}

/* ════════════════════════════════════════
   BUTTONS — classical rectangles
════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; border-radius: var(--r-btn);
  font-family: var(--ff-sans); font-weight: 600;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all var(--ease);
  text-decoration: none; gap: 8px;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #B8913A; color: var(--ink); }
.btn--red { background: var(--red); color: white; }
.btn--red:hover { background: var(--red-deep); color: white; }
.btn--andino { background: var(--andino); color: white; }
.btn--andino:hover { background: #032B3D; color: white; }
.btn--outline { background: transparent; color: var(--andino); border: 1.5px solid var(--andino); }
.btn--outline:hover { background: var(--andino); color: white; }
.btn--outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn--outline-red:hover { background: var(--red); color: white; }
.btn--outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.55); }
.btn--outline-white:hover { background: white; color: var(--andino); border-color: white; }
.btn--white { background: white; color: var(--andino); }
.btn--white:hover { background: var(--cream); }
.btn--whatsapp { background: #25D366; color: white; }
.btn--whatsapp:hover { background: #1da851; }
.btn--lg { padding: 15px 34px; font-size: 12px; }
.btn--sm { padding: 9px 18px; font-size: 11px; }
.btn--full { width: 100%; text-align: center; }
.text-link { color: var(--red); font-weight: 500; font-size: 13px; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--ease); text-transform: uppercase; }
.text-link:hover { gap: 10px; }
.text-link--light { color: var(--gold); }

/* ════════════════════════════════════════
   HOME HERO
════════════════════════════════════════ */
.hero {
  background: var(--cream) url('patagonia.jpg') center 35% / cover no-repeat;
  padding: 88px 32px 160px;
  position: relative; overflow: hidden; text-align: center;
  border-bottom: 1px solid var(--cream-border);
}
/* Cream warm overlay — mountain clearly visible, dark text readable */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,243,224,0.22) 0%,
    rgba(250,243,224,0.38) 45%,
    rgba(250,243,224,0.78) 100%
  );
}
.hero .container { position: relative; z-index: 1; }
.hero__tag { font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--red); margin-bottom: 28px; display: block; opacity: 0.85; }
.hero__title-red  { display: block; font-family: var(--ff-display); font-size: clamp(48px, 7vw, 96px); font-weight: 700; font-stretch: condensed; color: var(--andino); line-height: 0.96; letter-spacing: -1.5px; }
.hero__title-gold { display: block; font-family: var(--ff-display); font-size: clamp(48px, 7vw, 96px); font-weight: 300; font-stretch: condensed; color: var(--red);  line-height: 0.96; letter-spacing: -1.5px; font-style: italic; }
.hero__subtitle { font-family: var(--ff-serif); font-size: 18px; color: rgba(5,58,82,0.75); max-width: 480px; margin: 28px auto 0; line-height: 1.75; font-weight: 400; }
/* CTA links — no boxes, just text */
.hero__ctas { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero__ctas .btn { background: none; border: none; border-radius: 0; padding: 0; font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; border-bottom: 1.5px solid currentColor; line-height: 1; }
.hero__ctas .btn--gold { color: var(--andino); }
.hero__ctas .btn--outline { color: rgba(5,58,82,0.55); }
.hero__ctas .btn:hover { opacity: 0.70; }
.hero__mantra { font-size: 13px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--andino); margin-top: 56px; display: block; opacity: 1; }
.hero__mountains { position: absolute; bottom: 0; left: 0; width: 100%; pointer-events: none; z-index: 2; }

/* ════════════════════════════════════════
   DARK FULL-BLEED HERO (Restaurants)
════════════════════════════════════════ */
.dark-hero {
  background: url('restaurant.jpg') center center / cover no-repeat;
  padding: 96px 32px 140px;
  text-align: center; position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.dark-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(5,58,82,0.62) 0%,
    rgba(5,58,82,0.55) 50%,
    rgba(5,58,82,0.70) 100%
  );
}
.dark-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23CCA146' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.dark-hero__inner { position: relative; z-index: 2; }

/* Vintage stamp badge */
.dark-hero__badge {
  width: 104px; height: 104px; border-radius: 50%;
  border: 1px solid rgba(204,161,70,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  margin: 0 auto 40px; position: relative;
}
.dark-hero__badge::before {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(204,161,70,0.2); border-radius: 50%;
}
.dark-hero__badge-est { font-size: 8px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(204,161,70,0.65); }
.dark-hero__badge-year { font-family: var(--ff-script); font-size: 26px; color: var(--gold); line-height: 1.1; }
.dark-hero__badge-loc { font-size: 8px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(204,161,70,0.55); }

.dark-hero__tag { font-size: 10px; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; display: block; opacity: 0.75; }
.dark-hero__title { font-family: var(--ff-display); font-size: clamp(38px, 6vw, 84px); font-weight: 700; font-stretch: condensed; color: white; line-height: 1; letter-spacing: -1px; margin-bottom: 20px; }
.dark-hero__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.dark-hero__sub { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 40px; line-height: 1.78; }
.dark-hero__ctas { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Events hero variant */
.events-dark-hero {
  background: linear-gradient(150deg, #1C0D06 0%, var(--ink) 45%, #052030 100%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
}
.events-dark-hero::before {
  background:
    radial-gradient(ellipse at 28% 62%, rgba(204,161,70,0.28) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 22%, rgba(168,48,31,0.14) 0%, transparent 46%);
}

/* ════════════════════════════════════════
   PAGE HERO (subpages)
════════════════════════════════════════ */
.page-hero {
  background: var(--cream); padding: 72px 32px 56px;
  text-align: center; border-bottom: 1px solid var(--cream-border);
}
.page-hero__tag { font-size: 10px; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; opacity: 0.8; }
.page-hero__title { font-family: var(--ff-display); font-size: clamp(36px, 5.5vw, 68px); font-weight: 700; font-stretch: condensed; color: var(--red); margin-bottom: 18px; line-height: 1; letter-spacing: -0.5px; }
.page-hero__sub { font-size: 17px; color: var(--text); max-width: 500px; margin: 0 auto; line-height: 1.78; }

/* ════════════════════════════════════════
   SPLASH EDITORIAL (home)
════════════════════════════════════════ */
.splash { background: var(--cream); }

/* Ticker */
.splash__ticker {
  background: var(--ink); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06);
  position: sticky; top: 64px; z-index: 90;
}
.splash__ticker-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: ticker-scroll 36s linear infinite;
  font-family: var(--ff-display); font-weight: 800; font-stretch: condensed;
  font-size: clamp(16px, 2vw, 22px); letter-spacing: 0.04em;
  color: var(--gold);
}
.splash__ticker-set { display: inline-block; padding-right: 0; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Editorial grid */
.splash__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 540px;
}

/* Base card */
.splash-card { display: flex; flex-direction: column; overflow: hidden; position: relative; }

/* Card 1 — dark */
.splash-card--dark { background: var(--ink); }
.splash-card__img { flex: 0 0 220px; overflow: hidden; position: relative; }
.splash-card__img--origin { flex: 0 0 200px; }
.splash-card__img--pastes { flex: 0 0 220px; display: flex; flex-direction: column; position: relative; }
.splash-card__paste-split { display: flex; flex: 1; overflow: hidden; }
.splash-card__paste-img { width: 50%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.1) contrast(1.05); }
.splash-card__paste-img:first-child { border-right: 1px solid rgba(250,243,224,0.15); object-position: center center; }
.splash-card__paste-img:last-child { object-position: center 85%; }
.splash-card__paste-labels { position: absolute; bottom: 0; left: 0; right: 0; display: flex; }
.splash-card__paste-labels span { flex: 1; text-align: center; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,243,224,0.7); background: rgba(30,20,15,0.55); backdrop-filter: blur(4px); padding: 6px 4px; }
.splash-card__img--friends { flex: 0 0 260px; position: relative; }
.splash-card__img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(250,243,224,0.85) 0%, transparent 55%);
}
.splash-card__img-caption {
  position: absolute; bottom: 16px; left: 20px; right: 20px;
}
.splash-card__script {
  font-family: var(--ff-script); font-size: 22px; color: var(--red); line-height: 1.2;
}
.splash-card__body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.splash-card__overline { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.splash-card__overline--light { color: rgba(204,161,70,0.7); }
.splash-card__heading { font-family: var(--ff-display); font-size: clamp(24px, 2.5vw, 34px); font-weight: 800; font-stretch: condensed; color: white; line-height: 1.05; }
.splash-card__text { font-size: 14px; color: rgba(250,243,224,0.65); line-height: 1.65; flex: 1; }
.splash-card__text--light { color: rgba(250,243,224,0.62); }
.splash-card__link { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-decoration: none; margin-top: auto; }
.splash-card__link:hover { opacity: 0.75; }

/* Card 2 — cream */
.splash-card--cream { background: var(--cream); border-left: 1px solid var(--cream-border); border-right: 1px solid var(--cream-border); }
.splash-card--cream .splash-card__heading { color: var(--ink); }
.splash-card--cream .splash-card__text { color: var(--text); }

/* Card 3 — bold red */
.splash-card--bold { background: var(--red); justify-content: center; position: relative; overflow: hidden; }
.splash-card__bold-inner { padding: 40px 32px; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.splash-card__heading--xl {
  font-family: var(--ff-display); font-weight: 900; font-stretch: condensed;
  font-size: clamp(36px, 4vw, 54px); color: white; line-height: 0.95;
  letter-spacing: -0.5px;
}
.splash-card__bold-stamp { position: absolute; bottom: -20px; right: -10px; z-index: 0; pointer-events: none; }

@media (max-width: 900px) {
  .splash__grid { grid-template-columns: 1fr; min-height: auto; }
  .splash-card--cream { border-left: none; border-right: none; border-top: 1px solid var(--cream-border); border-bottom: 1px solid var(--cream-border); }
}

/* ════════════════════════════════════════
   BIFURCATION (home)
════════════════════════════════════════ */
.bifurcation { padding: var(--sp) 32px; background: var(--cream); }
.bifurcation__title { text-align: center; font-size: clamp(24px, 3.5vw, 36px); font-weight: 600; color: var(--ink); margin-bottom: 52px; letter-spacing: -0.5px; }
.bifurcation__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: var(--max-w); margin: 0 auto; }
.bifurcation__card { border-radius: 14px; padding: 52px 44px 48px; display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.bifurcation__card--gold  { background: #E8D49A; color: var(--andino); }
.bifurcation__card--andino { background: #3D6E80; color: white; }
.bifurcation__card--red   { background: #B87060; color: white; }
.bif-icon { display: block; height: 42px; width: auto; color: inherit; margin-bottom: 28px; flex-shrink: 0; }
.bifurcation__card-sep { width: 22px; height: 1px; background: currentColor; opacity: 0.2; margin-bottom: 22px; flex-shrink: 0; }
/* Title inherits card color (white on dark, ink on gold) */
.bifurcation__card-title { color: inherit; font-family: var(--ff-display); font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; font-stretch: condensed; letter-spacing: -0.3px; line-height: 1.1; margin-bottom: 14px; }
.bifurcation__card p { font-size: 15px; line-height: 1.72; opacity: 0.78; margin-bottom: 32px; flex: 1; }
.btn--cream { background: var(--cream); color: var(--andino); }
.btn--cream:hover { background: #ede7d3; }

/* ════════════════════════════════════════
   ORIGIN (home)
════════════════════════════════════════ */
.origin { padding: var(--sp) 32px; background: var(--cream); }
.origin__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.origin__photo { border-radius: 4px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10); }
.origin__photo img { display: block; width: 100%; height: 100%; object-fit: cover; filter: sepia(0.28) contrast(1.05) brightness(0.97); }

/* ════════════════════════════════════════
   IMAGE / VISUAL PLACEHOLDERS
════════════════════════════════════════ */
.img-placeholder {
  border-radius: var(--r-card); overflow: hidden;
  background: linear-gradient(145deg, var(--cream-border) 0%, #D0C4AD 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  color: var(--text); opacity: 0.65; padding: 24px; text-align: center;
}
.img-placeholder__icon { font-size: 48px; line-height: 1; }
.img-placeholder__label { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.img-placeholder--square { aspect-ratio: 1; }
.img-placeholder--portrait { aspect-ratio: 3/4; }
.img-placeholder--landscape { aspect-ratio: 16/9; }

/* Rich visual blocks (colored scenes) */
.visual-block { border-radius: var(--r-card); overflow: hidden; position: relative; }
.visual-block__inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.visual-block--gelato {
  background:
    radial-gradient(ellipse at 38% 32%, rgba(204,161,70,0.52) 0%, transparent 48%),
    radial-gradient(ellipse at 68% 70%, rgba(168,48,31,0.32) 0%, transparent 38%),
    linear-gradient(145deg, #2A1A0E 0%, #1E1008 55%, #140A04 100%);
}
.visual-block--kitchen {
  background:
    radial-gradient(ellipse at 58% 38%, rgba(204,161,70,0.32) 0%, transparent 52%),
    linear-gradient(145deg, #1A0E08 0%, #2C1A0C 50%, #1A1008 100%);
}
.visual-block--restaurant {
  background:
    radial-gradient(ellipse at 28% 58%, rgba(5,58,82,0.9) 0%, transparent 52%),
    linear-gradient(155deg, #0A2030 0%, #053A52 40%, #041E2C 100%);
}
.visual-block--event {
  background:
    radial-gradient(ellipse at 48% 28%, rgba(204,161,70,0.38) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 68%, rgba(168,48,31,0.22) 0%, transparent 40%),
    linear-gradient(135deg, #2A1A08 0%, #362D26 55%, #1A1008 100%);
}
.visual-block__placeholder-text {
  font-family: var(--ff-script); font-size: 28px;
  color: rgba(204,161,70,0.22); text-align: center; padding: 20px; line-height: 1.4;
}
.visual-block__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.58) 0%, transparent 100%);
  color: white;
}
.visual-block__caption-tag { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; display: block; }
.visual-block__caption-text { font-size: 14px; font-weight: 500; color: white; }

/* Restaurant triptych (3-panel image bar) */
.visual-triptych { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.visual-triptych > .visual-block { border-radius: 0; min-height: 260px; }

/* ════════════════════════════════════════
   EVENTS SECTION (home)
════════════════════════════════════════ */
/* ════════════════════════════════════════
   WHY ANDES
════════════════════════════════════════ */
/* ════════════════════════════════════════
   LIFESTYLE / DELIVERY + SUBSCRIPTION
════════════════════════════════════════ */
.lifestyle { background: var(--cream); }
.lifestyle__row { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.lifestyle__row--flip { }
.lifestyle__img { position: relative; overflow: hidden; }
.lifestyle__img--share { background: #C4A882; }
.lifestyle__img--pack  { background: #7A9AAA; }
.lifestyle__img-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.lifestyle__img-label { font-size: 12px; font-family: var(--ff-serif); font-style: italic; color: rgba(255,255,255,0.45); text-align: center; padding: 0 24px; }
.lifestyle__body { padding: 72px 60px; display: flex; flex-direction: column; justify-content: center; gap: 18px; background: var(--cream); }
.lifestyle__body--dark { background: var(--andino); }
.lifestyle__tag { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.lifestyle__tag--light { color: rgba(204,161,70,0.75); }
.lifestyle__heading { font-family: var(--ff-display); font-size: clamp(38px, 4vw, 58px); font-weight: 800; font-stretch: condensed; color: var(--ink); line-height: 1.0; }
.lifestyle__heading--light { color: white; }
.lifestyle__text { font-size: 16px; color: var(--text); line-height: 1.72; max-width: 380px; }
.lifestyle__text--light { color: rgba(250,243,224,0.78); }
.lifestyle__sub-label {
  display: inline-block;
  font-family: var(--ff-display); font-weight: 800; font-stretch: condensed;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--andino); background: var(--gold);
  padding: 5px 14px; border-radius: 3px;
  align-self: flex-start;
}

/* keep why-andes for our-story usage */
.why-andes { padding: var(--sp) 32px; background: var(--cream); }
.why-andes__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.why-andes__heading { font-family: var(--ff-script); font-size: clamp(42px, 5.5vw, 72px); color: var(--red); line-height: 1; margin-bottom: 24px; }
.why-andes__logo-panel { display: flex; align-items: center; justify-content: center; }
.why-andes__badge-svg { width: 100%; max-width: 340px; height: auto; filter: drop-shadow(0 4px 24px rgba(168,48,31,0.10)); }

.events { padding: var(--sp) 32px; background: var(--clay); }
.events__inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.events__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 28px 0; }
.tag { display: inline-block; padding: 8px 18px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500; background: white; color: var(--ink); border: 1px solid var(--cream-border); }
.events__body { font-size: 17px; color: var(--text); max-width: 520px; margin: 0 auto 36px; line-height: 1.78; }

/* ════════════════════════════════════════
   FLAVORS GRID
════════════════════════════════════════ */
.flavors { padding: var(--sp) 32px; background: var(--cream); }
.flavors__inner { max-width: var(--max-w); margin: 0 auto; }
.flavors__header { text-align: center; margin-bottom: 52px; }
.flavors__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }

.flavor-card { background: white; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--cream-border); transition: transform var(--ease), box-shadow var(--ease); }
.flavor-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(54,45,38,0.1); }
.flavor-card__thumb { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: var(--ff-script); font-size: 20px; padding: 12px; text-align: center; }
.flavor-card__body { padding: 18px 18px 20px; }
.flavor-card__badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 9px; }

.badge { font-size: 9px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; padding: 3px 9px; border-radius: var(--r-badge); }
.badge--signature { background: var(--gold); color: var(--ink); }
.badge--premium { background: var(--andino); color: white; }
.badge--vegan { background: #7CAE7A; color: white; }
.badge--dairy-free { background: #9BBDCC; color: white; }
.badge--classic { background: var(--clay); color: var(--ink); border: 1px solid var(--cream-border); }
.badge--seasonal { background: var(--red); color: white; }

.flavor-card__name { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.flavor-card__desc { font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 12px; }
.flavor-card__price { font-size: 12px; color: var(--text); margin-bottom: 12px; }
.flavor-card__price strong { color: var(--ink); font-weight: 600; }

/* ════════════════════════════════════════
   PRODUCTION VIDEO SECTION
════════════════════════════════════════ */
.production { background: var(--ink); }
.video-frame {
  position: relative; cursor: pointer;
  aspect-ratio: 16/9; max-height: 600px;
  overflow: hidden;
}
.video-frame__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 32% 65%, rgba(204,161,70,0.38) 0%, transparent 50%),
    radial-gradient(ellipse at 72% 25%, rgba(168,48,31,0.22) 0%, transparent 42%),
    radial-gradient(ellipse at 60% 70%, rgba(5,58,82,0.2) 0%, transparent 38%),
    linear-gradient(155deg, #1E0F08 0%, #2C1A0E 35%, #180C06 65%, #0E0804 100%);
}
.video-frame__bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0px, transparent 3px, rgba(0,0,0,0.035) 3px, rgba(0,0,0,0.035) 4px);
}
.video-frame__corner { position: absolute; width: 24px; height: 24px; z-index: 3; }
.video-frame__corner--tl { top: 20px; left: 20px; border-top: 1.5px solid rgba(204,161,70,0.5); border-left: 1.5px solid rgba(204,161,70,0.5); }
.video-frame__corner--tr { top: 20px; right: 20px; border-top: 1.5px solid rgba(204,161,70,0.5); border-right: 1.5px solid rgba(204,161,70,0.5); }
.video-frame__corner--bl { bottom: 20px; left: 20px; border-bottom: 1.5px solid rgba(204,161,70,0.5); border-left: 1.5px solid rgba(204,161,70,0.5); }
.video-frame__corner--br { bottom: 20px; right: 20px; border-bottom: 1.5px solid rgba(204,161,70,0.5); border-right: 1.5px solid rgba(204,161,70,0.5); }
.video-frame__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; padding: 32px; text-align: center;
}
.play-ring { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.play-ring::before { content: ''; position: absolute; inset: -14px; border: 1px solid rgba(204,161,70,0.35); border-radius: 50%; animation: ring-out 2.2s ease-out infinite; }
.play-ring::after { content: ''; position: absolute; inset: -28px; border: 1px solid rgba(204,161,70,0.12); border-radius: 50%; animation: ring-out 2.2s ease-out 0.55s infinite; }
@keyframes ring-out { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.play-circle {
  width: 88px; height: 88px; border: 1.5px solid rgba(204,161,70,0.8); border-radius: 50%;
  background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all 0.28s ease; position: relative; z-index: 1; backdrop-filter: blur(4px);
}
.play-circle:hover { background: rgba(204,161,70,0.18); transform: scale(1.05); }
.video-label { font-size: 9px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); opacity: 0.8; }
.video-title { font-size: clamp(22px, 4vw, 48px); font-weight: 600; color: white; line-height: 1.1; letter-spacing: -0.5px; }
.video-sub { font-size: 16px; color: rgba(255,255,255,0.58); max-width: 400px; line-height: 1.68; }
.video-note { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 1px; }

/* ════════════════════════════════════════
   PROCESS STRIP
════════════════════════════════════════ */
.process-section { padding: 72px 32px; background: var(--cream); border-bottom: 1px solid var(--cream-border); }
.process-section__header { text-align: left; margin-bottom: 52px; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.process-steps {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 67px; left: 12%; right: 12%;
  height: 1px; background: var(--cream-border); z-index: 0;
}
.process-step { text-align: center; padding: 0 10px; position: relative; }
.process-step__visual {
  width: 130px; height: 130px; border-radius: 50%;
  margin: 0 auto 18px; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; border: 1.5px solid var(--cream-border); overflow: hidden;
  background: var(--cream);
}
.process-step__visual-inner { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 38px; }
.process-step__number { position: absolute; top: 4px; right: 4px; width: 26px; height: 26px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--ink); z-index: 2; }
.process-step__name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 5px; letter-spacing: 0.3px; }
.process-step__desc { font-size: 12px; color: var(--text); line-height: 1.55; }

/* ════════════════════════════════════════
   CONTACT BLOCK (home)
════════════════════════════════════════ */
.contact-block { padding: var(--sp) 32px; background: var(--clay); text-align: center; }
.contact-block__inner { max-width: 480px; margin: 0 auto; }
.contact-channels { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.email-link { display: block; margin-top: 8px; color: var(--text); font-size: 13px; text-decoration: underline; text-underline-offset: 3px; transition: color var(--ease); letter-spacing: 0.3px; }
.email-link:hover { color: var(--red); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
/* ════════════════════════════════════════
   VINTAGE PULL QUOTE
════════════════════════════════════════ */
.vintage-pull {
  background: var(--andino);
  padding: 64px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vintage-pull::before {
  content: '"';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-serif);
  font-size: 200px;
  color: rgba(204,161,70,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.vintage-pull__text {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(18px, 2.8vw, 26px);
  color: var(--cream);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.vintage-pull__attr {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
/* Fixed CTA bar (restaurants + events pages) */
.rest-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--andino);
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 14px 24px;
  box-shadow: 0 -2px 20px rgba(5,58,82,0.18);
}
.rest-cta-bar__text { color: rgba(250,243,224,0.85); font-size: 14px; font-family: var(--ff-serif); font-style: italic; }
.rest-cta-bar__btn {
  background: var(--gold); color: var(--andino);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 4px; text-decoration: none;
  white-space: nowrap; transition: opacity 0.2s;
}
.rest-cta-bar__btn:hover { opacity: 0.85; }

.footer { background: #EAE0C8; padding: 64px 32px 80px; border-top: 1px solid #D5CAB0; }
.footer__inner { max-width: var(--max-w); margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }
.footer__logo-block { display: flex; flex-direction: column; gap: 4px; }
.footer__tagline { font-size: 12px; color: var(--text); margin-top: 10px; letter-spacing: 0.3px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; list-style: none; align-items: center; }
.footer__nav a { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); transition: color var(--ease); }
.footer__nav a:hover { color: var(--red); }
.footer__contact { text-align: right; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text); }
.footer__contact a { transition: color var(--ease); }
.footer__contact a:hover { color: var(--red); }
.footer__bottom { border-top: 1px solid var(--cream-border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__mantra { font-size: 10px; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: var(--andino); }
.footer__copy { font-size: 12px; color: var(--text); opacity: 0.6; }

/* ════════════════════════════════════════
   STORY (chapters)
════════════════════════════════════════ */
.chapter { padding: var(--sp) 32px; background: var(--cream); }
.chapter--alt { background: var(--clay); }
.chapter__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.chapter__inner--flip { direction: rtl; }
.chapter__inner--flip > * { direction: ltr; }
.chapter__year { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.chapter__title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; color: var(--red); margin-bottom: 22px; line-height: 1.2; letter-spacing: -0.5px; }
.chapter__body { font-family: var(--ff-serif); font-size: 16px; color: var(--text); line-height: 1.85; }
.chapter__body p + p { margin-top: 16px; }

.story-close { padding: 96px 32px; background: var(--andino); text-align: center; }
.story-close__mantra { font-size: clamp(13px, 2vw, 18px); font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 36px; }
.story-close__body { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 440px; margin: 0 auto 36px; line-height: 1.78; }

/* ════════════════════════════════════════
   FORMS
════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--ink); letter-spacing: 1px; text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px; border: 1px solid var(--cream-border); border-radius: var(--r-input);
  background: white; font-family: var(--ff-sans); font-size: 15px; color: var(--ink);
  transition: border-color var(--ease); outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: #EBF7EB; border: 1px solid #A8D5A2; color: #2D6A2D; padding: 14px 18px; border-radius: var(--r-input); font-size: 14px; display: none; margin-top: 14px; }
.form-success.show { display: block; }
.form-section-label { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; margin-top: 28px; display: block; padding-bottom: 8px; border-bottom: 1px solid var(--cream-border); }

/* ════════════════════════════════════════
   ENQUIRY
════════════════════════════════════════ */
.enquiry { padding: var(--sp) 32px; background: var(--cream); }
.enquiry__inner { max-width: 660px; margin: 0 auto; }
.enquiry-type { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.enquiry-type label { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--cream-border); border-radius: var(--r-btn); cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink); transition: all var(--ease); }
.enquiry-type input[type="radio"] { accent-color: var(--gold); }
.enquiry-type label:has(input:checked) { border-color: var(--gold); background: #fdf6e8; }

/* ════════════════════════════════════════
   RESTAURANTS PAGE
════════════════════════════════════════ */
.value-props { padding: var(--sp) 32px; background: var(--cream); }
.value-props__inner { max-width: var(--max-w); margin: 0 auto; }
.value-props__header { margin-bottom: 60px; }
.value-props__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value-prop-card { padding: 36px 28px; border: 1px solid var(--cream-border); border-radius: var(--r-card); background: white; }
.value-prop-card__number { font-family: var(--ff-script); font-size: 48px; color: var(--gold); opacity: 0.45; line-height: 1; margin-bottom: 14px; }
.value-prop-card__title { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.value-prop-card__body { font-size: 14px; color: var(--text); line-height: 1.72; }

.dark-strip { background: var(--andino); padding: 64px 32px; }
.dark-strip__inner { max-width: var(--max-w); margin: 0 auto; }
.dark-strip__title { font-size: clamp(20px, 3vw, 34px); font-weight: 600; color: white; margin-bottom: 10px; letter-spacing: -0.4px; }
.dark-strip__sub { font-size: 16px; color: rgba(255,255,255,0.62); margin-bottom: 32px; max-width: 500px; }
.flavor-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.flavor-pill { padding: 8px 18px; border-radius: var(--r-pill); font-size: 13px; font-weight: 500; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.12); transition: all var(--ease); }
.flavor-pill:hover { background: rgba(204,161,70,0.18); border-color: rgba(204,161,70,0.4); color: var(--gold); }
.flavor-pill--custom { border-style: dashed; color: rgba(204,161,70,0.65); border-color: rgba(204,161,70,0.32); }

.partnership { padding: var(--sp) 32px; background: var(--clay); }
.partnership__inner { max-width: var(--max-w); margin: 0 auto; }
.partnership__header { margin-bottom: 56px; }
.partnership-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.partnership-step { background: white; border-radius: var(--r-card); padding: 40px 32px; position: relative; border: 1px solid var(--cream-border); }
.partnership-step__num { font-family: var(--ff-script); font-size: 64px; color: var(--gold); opacity: 0.22; position: absolute; top: 16px; right: 24px; line-height: 1; }
.partnership-step__icon { font-size: 32px; margin-bottom: 18px; }
.partnership-step__title { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.partnership-step__body { font-size: 14px; color: var(--text); line-height: 1.72; }

.testimonials { padding: var(--sp) 32px; background: var(--cream); }
.testimonials__inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials__header { margin-bottom: 52px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: white; border-radius: var(--r-card); padding: 32px; border: 1px solid var(--cream-border); }
.testimonial-card__quote { font-family: Georgia, serif; font-size: 40px; color: var(--gold); opacity: 0.7; line-height: 1; margin-bottom: 14px; }
.testimonial-card__text { font-size: 15px; color: var(--text); line-height: 1.78; font-style: italic; margin-bottom: 22px; }
.testimonial-card__author { font-size: 13px; font-weight: 600; color: var(--ink); }
.testimonial-card__venue { font-size: 12px; color: var(--text); margin-top: 2px; opacity: 0.7; }

.story-pull { background: var(--andino); padding: 56px 32px; text-align: center; }
.story-pull__quote { font-family: var(--ff-script); font-size: clamp(26px, 4vw, 46px); color: var(--gold); line-height: 1.35; max-width: 680px; margin: 0 auto 16px; }
.story-pull__attr { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ════════════════════════════════════════
   EVENTS PAGE
════════════════════════════════════════ */
.what-we-bring { padding: var(--sp) 32px; background: var(--clay); }
.what-we-bring__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.bring-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.bring-feature { display: flex; gap: 14px; align-items: flex-start; }
.bring-feature__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.bring-feature__text strong { font-size: 15px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 2px; }
.bring-feature__text span { font-size: 13px; color: var(--text); line-height: 1.62; }

.event-types { padding: var(--sp) 32px; background: var(--cream); }
.event-types__inner { max-width: var(--max-w); margin: 0 auto; }
.event-types__header { margin-bottom: 48px; }
.event-types__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.event-type-card { border-radius: var(--r-card); overflow: hidden; position: relative; aspect-ratio: 5/2; transition: transform var(--ease), box-shadow var(--ease); }
.event-type-card:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(54,45,38,0.12); }
.event-type-card__bg { position: absolute; inset: 0; }
.event-type-card__overlay { position: absolute; inset: 0; background: rgba(250,243,224,0.28); }
.event-type-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
.event-type-card__icon { display: none; }
.event-type-card__rule { display: none; }
.event-type-card__name { font-family: var(--ff-display); font-size: 16px; font-weight: 700; font-stretch: condensed; color: var(--andino); margin-bottom: 5px; }
.event-type-card__desc { font-size: 12px; color: rgba(5,58,82,0.80); line-height: 1.55; }

.how-it-works { padding: var(--sp) 32px; background: var(--andino); }
.how-it-works__inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.how-it-works__header { margin-bottom: 60px; }
.how-it-works__header .section-tag { color: var(--gold); }
.how-it-works__header .section-tag::before { background: var(--gold); }
.how-it-works__header h2 { color: white; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.how-step { color: white; text-align: center; padding: 0 12px; position: relative; }
.how-step::after { content: '→'; position: absolute; top: 28px; right: -18px; font-size: 18px; color: rgba(204,161,70,0.35); }
.how-step:last-child::after { display: none; }
.how-step__num { width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(204,161,70,0.45); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 20px; font-weight: 600; color: var(--gold); }
.how-step__title { font-size: 17px; font-weight: 600; color: white; margin-bottom: 10px; }
.how-step__body { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.72; }

/* ════════════════════════════════════════
   ORDER PAGE
════════════════════════════════════════ */
.postcode-section { padding: 48px 32px; background: var(--clay); }
.postcode-card { background: white; border: 1px solid var(--cream-border); border-radius: var(--r-card); padding: 32px; max-width: 500px; margin: 0 auto; }
.postcode-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.postcode-card p { font-size: 14px; color: var(--text); margin-bottom: 18px; }
.postcode-form { display: flex; gap: 10px; }
.postcode-form input { flex: 1; padding: 12px 14px; border: 1px solid var(--cream-border); border-radius: var(--r-input); font-family: var(--ff-sans); font-size: 15px; color: var(--ink); outline: none; transition: border-color var(--ease); }
.postcode-form input:focus { border-color: var(--gold); }
.postcode-result { margin-top: 12px; font-size: 14px; font-weight: 500; display: none; padding: 10px 14px; border-radius: var(--r-input); }
.postcode-result.success { display: block; background: #EBF7EB; color: #2D6A2D; border: 1px solid #A8D5A2; }
.postcode-result.error { display: block; background: #FBF0EC; color: var(--red); border: 1px solid #E8B8A5; }

.order-section { padding: 60px 32px; background: var(--cream); }
.order-section__inner { max-width: var(--max-w); margin: 0 auto; }
.order-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 52px; }
.order-card { background: white; border: 1px solid var(--cream-border); border-radius: var(--r-card); overflow: hidden; transition: transform var(--ease), box-shadow var(--ease); }
.order-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(54,45,38,0.1); }
.order-card__thumb { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-family: var(--ff-script); font-size: 16px; padding: 10px; text-align: center; }
.order-card__body { padding: 14px; }
.order-card__name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.order-card__sizes { display: flex; flex-direction: column; gap: 7px; }
.size-row { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border: 1px solid var(--cream-border); border-radius: var(--r-input); cursor: pointer; transition: border-color var(--ease), background var(--ease); }
.size-row:hover { border-color: var(--gold); background: #fdf6e8; }
.size-row__label { font-size: 13px; font-weight: 500; color: var(--ink); }
.size-row__price { font-size: 13px; font-weight: 700; color: var(--red); }

.andes-pack { background: var(--andino); color: white; border-radius: var(--r-card); padding: 52px 44px; max-width: 660px; margin: 0 auto 60px; text-align: center; }
.andes-pack__tag { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.andes-pack__title { font-size: 28px; font-weight: 600; color: white; margin-bottom: 10px; letter-spacing: -0.4px; }
.andes-pack__desc { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.72; }
.andes-pack__pricing { margin-bottom: 24px; }
.andes-pack__pricing .was { font-size: 15px; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.andes-pack__pricing .now { font-size: 36px; font-weight: 700; color: var(--gold); display: block; line-height: 1.1; margin-top: 4px; }

.cold-chain { background: var(--clay); border-radius: var(--r-card); padding: 22px 28px; max-width: 660px; margin: 0 auto; display: flex; align-items: flex-start; gap: 14px; font-size: 14px; color: var(--ink); line-height: 1.65; }
.cold-chain__icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════════════
   CONTACT PAGE
════════════════════════════════════════ */
.contact-page { padding: var(--sp) 32px; background: var(--cream); }
.contact-page__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --sp: 72px; }
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 12px; }
  .flavors__grid, .order-grid { grid-template-columns: repeat(3, 1fr); }
  .value-props__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .event-types__grid { grid-template-columns: repeat(2, 1fr); }
  .dark-strip__inner > div { flex-direction: column; gap: 20px; }
  .bifurcation__card { padding: 36px 24px; }
}

@media (max-width: 860px) {
  .bifurcation__grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --sp: 56px; }

  /* Nav */
  .nav { padding: 0 20px; }
  .nav__inner { height: 72px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { top: 72px; }

  /* Containers */
  .container, .bifurcation, .origin, .events, .flavors,
  .contact-block, .chapter, .story-close, .enquiry,
  .value-props, .dark-strip, .partnership, .testimonials, .story-pull,
  .what-we-bring, .event-types, .how-it-works, .order-section,
  .postcode-section, .contact-page, .process-section,
  .footer { padding-left: 20px; padding-right: 20px; }

  /* Hero */
  .hero { padding: 56px 20px 120px; }
  .hero__title-red, .hero__title-gold { font-size: 46px; letter-spacing: -1.5px; }
  .hero__subtitle { font-size: 16px; }
  .hero__mantra { margin-top: 40px; }

  /* Dark heroes — remove clip-path on mobile (looks broken) */
  .dark-hero, .events-dark-hero { clip-path: none; padding: 72px 20px 72px; }
  .dark-hero__title { font-size: 36px; letter-spacing: -0.8px; }
  .dark-hero__badge { width: 88px; height: 88px; margin-bottom: 28px; }
  .dark-hero__sub { font-size: 15px; }

  /* Bifurcation — 3 cards stack on mobile */
  .bifurcation__grid { grid-template-columns: 1fr; gap: 16px; }
  .bifurcation__card { padding: 36px 28px; }

  /* Origin */
  .origin__inner { grid-template-columns: 1fr; gap: 36px; }
  .img-placeholder--portrait { aspect-ratio: 3/2; }
  /* Why Andes */
  .why-andes__inner { grid-template-columns: 1fr; gap: 36px; }
  .why-andes__logo-panel { order: -1; }

  /* Visual triptych → vertical stack */
  .visual-triptych { grid-template-columns: 1fr; }
  .visual-triptych > .visual-block { min-height: 200px; }

  /* Process strip → horizontal scroll */
  .process-steps {
    grid-template-columns: unset !important;
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .process-steps::-webkit-scrollbar { display: none; }
  .process-steps::before { display: none; }
  .process-step { flex: 0 0 170px; scroll-snap-align: start; }
  .process-step__visual { width: 110px; height: 110px; }
  .process-section { padding-left: 20px; padding-right: 0; }
  .process-section__header { padding-right: 20px; }
  .process-steps { padding-right: 20px; }

  /* Video frame — cap height on mobile */
  .video-frame { aspect-ratio: unset; min-height: 380px; max-height: 380px; }
  .video-frame__content { gap: 14px; padding: 24px 20px; }
  .video-title { font-size: 22px; }
  .video-sub { font-size: 14px; }
  .play-ring, .play-circle { width: 72px; height: 72px; }

  /* Flavors / Order */
  .flavors__grid, .order-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Events list */
  .events__tags { gap: 8px; }
  .tag { font-size: 12px; padding: 7px 14px; }

  /* Value props */
  .value-props__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .value-prop-card { padding: 24px 20px; }

  /* Partnership */
  .partnership-steps { grid-template-columns: 1fr; gap: 16px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Chapters */
  .chapter__inner { grid-template-columns: 1fr; gap: 32px; }
  .chapter__inner--flip { direction: ltr; }

  /* What we bring */
  .what-we-bring__inner { grid-template-columns: 1fr; gap: 36px; }

  /* Event types */
  .event-types__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .event-type-card { aspect-ratio: 4/3; }
  .event-type-card__name { font-size: 15px; }
  .event-type-card__desc { display: none; }

  /* How it works */
  .how-steps { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .how-step::after { display: none; }
  .how-step__num { margin: 0 0 16px 0; }
  .how-step { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 0; }
  .how-step > div:first-child { flex-shrink: 0; }
  .how-step-text { display: flex; flex-direction: column; }

  /* Dark strip */
  .dark-strip__inner { display: flex; flex-direction: column; gap: 20px; }

  /* Andes pack */
  .andes-pack { padding: 36px 24px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .postcode-form { flex-direction: column; }

  /* Contact page */
  .contact-page__inner { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .footer__nav { align-items: flex-start; }
  .footer__contact { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Story close */
  .story-close { padding: 64px 20px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__title-red, .hero__title-gold { font-size: 38px; letter-spacing: -1px; }
  .flavors__grid, .order-grid { grid-template-columns: 1fr; }
  .event-types__grid { grid-template-columns: 1fr; }
  .event-type-card { aspect-ratio: 5/3; }
  .event-type-card__desc { display: block; }
  .value-props__grid { grid-template-columns: 1fr; }
  .bifurcation__card { padding: 28px 22px; }
  .dark-hero__title { font-size: 30px; }
  .andes-pack { padding: 28px 18px; }
  .andes-pack__pricing .now { font-size: 28px; }
}
