/* ============================================================
   TIERRA BRAVA · styles
   La auténtica tradición española — The real Spanish tradition
   ============================================================ */

:root {
  /* Palette — Spanish terroir */
  --green-950: #0d1a13;
  --green-900: #14281d;
  --green-800: #1e3a2b;
  --green-700: #28503b;
  --green-100: #e4ece4;

  --cream-100: #fbf8f1;
  --cream-200: #f7f1e5;
  --cream-300: #efe6d2;

  --terracotta: #b8502e;
  --terracotta-dark: #96401f;
  --gold: #c9a227;

  --ink: #2b241c;
  --ink-soft: rgba(43, 36, 28, 0.72);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --shadow-soft: 0 18px 45px rgba(20, 40, 29, 0.12);
  --shadow-card: 0 24px 60px rgba(20, 40, 29, 0.16);
  --radius: 4px;

  --header-h: 86px;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 48px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-200);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16.5px;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
em { font-style: italic; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
h1 em, h2 em, h3 em { font-style: italic; }

.container { width: min(var(--maxw), 100% - 2 * var(--gutter)); margin-inline: auto; }
.container-wide { width: min(1600px, 100% - 2 * var(--gutter)); margin-inline: auto; }

.section { padding-block: clamp(72px, 10vw, 128px); }
.dark { background: var(--green-800); color: var(--cream-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-solid { background: var(--terracotta); color: #fff; box-shadow: 0 10px 26px rgba(184, 80, 46, 0.35); }
.btn-solid:hover { background: var(--terracotta-dark); }

.btn-ghost { border-color: rgba(251, 248, 241, 0.75); color: var(--cream-100); background: rgba(20, 40, 29, 0.18); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(251, 248, 241, 0.16); }

.btn-whatsapp { background: #1f8f4c; color: #fff; }
.btn-whatsapp:hover { background: #177a40; }

.btn-sm { padding: 11px 20px; font-size: 0.8rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: currentColor; }

.dark .eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 20px;
}
.section-title em { color: var(--terracotta); }
.dark .section-title { color: var(--cream-100); }
.dark .section-title em { color: var(--gold); }

.section-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
}
.dark .section-sub { color: rgba(251, 248, 241, 0.72); }

.section-head { margin-bottom: clamp(44px, 6vw, 68px); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2, .65, .3, 1), transform .8s cubic-bezier(.2, .65, .3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(20, 40, 29, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(13, 26, 19, 0.28);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand { display: inline-flex; flex: 0 0 auto; }
.brand-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.25)); }

.main-nav { margin-inline: auto; }
.nav-list { display: flex; gap: clamp(18px, 2.6vw, 38px); }
.nav-list a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 248, 241, 0.88);
  padding: 6px 0;
  transition: color .25s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-list a:hover, .nav-list a.active { color: #fff; }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(251, 248, 241, 0.85);
}
.lang-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 4px;
  opacity: 0.55;
  transition: opacity .25s ease, color .25s ease;
}
.lang-btn:hover { opacity: 1; }
.lang-btn.is-active { color: var(--gold); opacity: 1; }
.lang-divider { opacity: 0.4; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream-100);
  transition: transform .3s ease, opacity .3s ease;
  margin-inline: auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream-100);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 26, 19, 0.55) 0%, rgba(13, 26, 19, 0.25) 40%, rgba(13, 26, 19, 0.72) 100%),
    radial-gradient(ellipse at center, rgba(13,26,19,0.05) 0%, rgba(13,26,19,0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}
.hero-eyebrow { color: var(--gold); justify-content: center; }
.hero-eyebrow::before { display: none; }

.hero-title {
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}
.hero-title em {
  font-weight: 800;
  color: var(--gold);
  text-shadow: 0 6px 40px rgba(201, 162, 39, 0.25);
}

.hero-tag {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  color: rgba(251, 248, 241, 0.95);
  letter-spacing: 0.02em;
}

.hero-sub {
  margin: 22px auto 0;
  max-width: 640px;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  font-weight: 300;
  color: rgba(251, 248, 241, 0.82);
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 22px;
}
.scroll-line {
  display: block;
  width: 1px; height: 52px;
  background: rgba(251, 248, 241, 0.5);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(-100%);
  animation: scrollDrop 2.2s cubic-bezier(.6,.1,.3,1) infinite;
}
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--green-900);
  color: var(--cream-100);
  overflow: hidden;
  padding-block: 20px;
  border-block: 1px solid rgba(201, 162, 39, 0.25);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--cream-100);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   INTRO
   ============================================================ */
.intro { background: var(--cream-100); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.intro-media { position: relative; }
.intro-img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.intro-img-accent {
  position: absolute;
  right: -26px;
  bottom: -40px;
  width: 46%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--cream-100);
  box-shadow: var(--shadow-card);
  z-index: 2;
}

.lead {
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 26px;
}

.intro-features { display: grid; gap: 16px; }
.intro-features li {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
  color: var(--ink-soft);
}
.intro-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--terracotta);
  font-size: 0.85rem;
}
.intro-features strong { color: var(--ink); font-weight: 600; }

/* stats */
.stats {
  margin-top: clamp(80px, 10vw, 130px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(43, 36, 28, 0.12);
  border: 1px solid rgba(43, 36, 28, 0.12);
}
.stat {
  background: var(--cream-100);
  padding: 38px 26px;
  text-align: center;
  display: grid;
  gap: 8px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   MENUS
   ============================================================ */
.menus { background: var(--cream-200); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  margin-bottom: 46px;
}
.menu-card {
  position: relative;
  background: var(--cream-100);
  border: 1px solid rgba(43, 36, 28, 0.1);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.menu-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.menu-card:hover::after { transform: scaleX(1); }

.menu-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.menu-name {
  font-size: 1.7rem;
  color: var(--green-800);
  margin: 10px 0 8px;
}
.menu-compose {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.menu-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.menu-includes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: var(--green-800);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}
.include { display: flex; gap: 16px; align-items: flex-start; }
.include-icon { color: var(--gold); font-size: 1rem; line-height: 1.7; }
.include p {
  color: rgba(251, 248, 241, 0.9);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============================================================
   EXPERIENCES (dark)
   ============================================================ */
.experiences {
  background:
    linear-gradient(160deg, rgba(13, 26, 19, 0.55), rgba(20, 40, 29, 0.35)),
    url("../pics/10.jpeg") center/cover fixed;
  position: relative;
}
.experiences::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-900);
}
.experiences > .container { position: relative; z-index: 2; }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.extra-card {
  background: rgba(251, 248, 241, 0.06);
  border: 1px solid rgba(251, 248, 241, 0.14);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: background .3s ease, transform .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.extra-card:hover { background: rgba(251, 248, 241, 0.1); transform: translateY(-4px); border-color: rgba(201, 162, 39, 0.5); }
.extra-icon { font-size: 1.6rem; margin-bottom: 14px; }
.extra-card h3 { font-size: 1.25rem; color: var(--cream-100); margin-bottom: 10px; }
.extra-card p { font-size: 0.93rem; color: rgba(251, 248, 241, 0.72); flex: 1; }

.taurine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.taurine-card {
  background: var(--cream-100);
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.taurine-media { aspect-ratio: 16 / 9; overflow: hidden; }
.taurine-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.taurine-card:hover .taurine-media img { transform: scale(1.05); }
.taurine-body { padding: 34px 32px 30px; }
.taurine-body h3 { font-size: 1.8rem; color: var(--green-800); margin-bottom: 10px; }
.taurine-body > p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 24px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--cream-200); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 128px;
  grid-auto-flow: dense;
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .4s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 19, 0.28);
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .lb-hint {
  position: absolute;
  inset: auto 14px 12px;
  z-index: 2;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.gallery-item:hover .lb-hint { opacity: 1; transform: none; }

.gallery-item--tall { grid-row: span 3; }
.gallery-item--wide { grid-column: span 3; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream-100);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 26, 19, 0.72), rgba(13, 26, 19, 0.66));
}
.cta-content { position: relative; z-index: 2; padding-block: 90px; }
.cta-content .eyebrow { color: var(--gold); justify-content: center; }
.cta-content .eyebrow::before { display: none; }
.cta-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  color: #fff;
  margin-bottom: 18px;
}
.cta-title em { color: var(--gold); }
.cta-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: rgba(251, 248, 241, 0.8);
  font-weight: 300;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--cream-100); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.contact-media img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-list { display: grid; gap: 22px; margin: 34px 0 34px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cream-200);
  border: 1px solid rgba(43, 36, 28, 0.1);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.contact-list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 3px;
}
.contact-list a { font-size: 1.05rem; font-weight: 600; color: var(--green-800); transition: color .2s ease; }
.contact-list a:hover { color: var(--terracotta); }
.contact-list p { font-size: 1rem; color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-950); color: rgba(251, 248, 241, 0.8); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-block: 64px 44px;
  align-items: start;
}
.footer-logo { height: 46px; width: auto; margin-bottom: 18px; opacity: 0.95; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; color: rgba(251, 248, 241, 0.6); }

.footer-nav { display: grid; gap: 12px; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(251, 248, 241, 0.75);
  transition: color .2s ease, padding-left .2s ease;
}
.footer-nav a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact { display: grid; gap: 12px; justify-items: start; }
.footer-contact a { font-size: 0.95rem; color: rgba(251, 248, 241, 0.75); transition: color .2s ease; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(251, 248, 241, 0.12);
  padding-block: 22px;
  font-size: 0.82rem;
  color: rgba(251, 248, 241, 0.45);
  text-align: center;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 18, 13, 0.94);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 60px);
}
.lightbox[hidden] { display: none; }

.lb-figure { max-width: min(1100px, 92vw); max-height: 84vh; display: grid; justify-items: center; gap: 14px; }
.lb-img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lb-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(251, 248, 241, 0.85);
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  border: none;
  background: rgba(251, 248, 241, 0.1);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background .25s ease, transform .25s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--terracotta); transform: scale(1.05); }
.lb-close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 1rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.05); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-cta { display: none; }
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--green-900);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    box-shadow: 0 20px 40px rgba(13, 26, 19, 0.35);
  }
  .main-nav.open { max-height: 480px; }
  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 12px 28px 26px;
  }
  .nav-list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(251, 248, 241, 0.08);
  }

  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-img-accent { right: 6px; bottom: -28px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .menu-includes { grid-template-columns: 1fr; }
  .taurine-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-title { font-size: clamp(3rem, 15vw, 4.2rem); }
  .brand-logo { height: 44px; }
  .nav-wrap { height: 74px; }
  .main-nav { inset: 74px 0 auto 0; }
  :root { --header-h: 74px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-item--wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 1; }
  .intro-media { order: -1; }
  .intro-img-accent { display: none; }
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}
