/* ==========================================================================
   GOSTO · concepto web (diseño no oficial)
   Visual DNA: warm cream base, monstera green accent, warm terracotta
   ========================================================================== */

:root {
  --bg: #F1E9D6;
  --bg-alt: #E8DEC4;
  --bg-soft: #F7F1E1;
  --bg-dark: #1F1A14;
  --ink: #1F1A14;
  --ink-soft: #3D342A;
  --ink-muted: #78685A;
  --cream: #F1E9D6;
  --cream-soft: #F7F1E1;
  --green: #2D4F3A;       /* monstera deep */
  --green-dark: #1E3A29;
  --green-soft: #4A6B52;
  --terra: #B86E4F;       /* chili oil / warm bread */
  --terra-dark: #8A4E33;
  --gold: #C9A04A;
  --border: rgba(31,26,20,0.12);
  --border-soft: rgba(31,26,20,0.06);
  --border-green: rgba(45,79,58,0.18);

  --font-display: 'Fraunces', 'Libre Caslon Text', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --max: 1240px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0;
  transition: opacity 150ms ease;
}
body.fonts-ready { opacity: 1; }

img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* ========== LANGUAGE TOGGLE ========== */
html.lang-es [data-en] { display: none !important; }
html.lang-en [data-es] { display: none !important; }

/* ========== CONCEPT BANNER ========== */
.concept-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--green);
  color: var(--cream);
  height: 28px;
  line-height: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  z-index: 1000;
  white-space: nowrap;
  overflow: hidden;
}
.concept-banner strong { font-weight: 700; }
.concept-banner .sep { opacity: 0.5; margin: 0 10px; }
.concept-banner .soft { opacity: 0.85; }
.banner-spacer { height: 28px; }

/* ========== NAV ========== */
.nav-wrap {
  position: sticky;
  top: 28px;
  z-index: 900;
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--green);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { width: 54px; height: 54px; }
.nav-bottom {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-4);
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
  transition: color 160ms ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.lang-toggle button {
  background: none;
  border: none;
  padding: 4px 2px;
  color: var(--ink-muted);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  text-transform: uppercase;
}
.lang-toggle button.active { color: var(--green); font-weight: 700; }
.lang-toggle .sep { color: var(--border); }

.hamburger {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 180ms ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 28px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
  z-index: 850;
}
.mobile-menu.open {
  max-height: 420px;
  padding: 24px 40px 32px;
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border-soft);
}

/* ========== SECTION LABEL / DISPLAY TYPE ========== */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}
.section-label::before {
  content: '— ';
  opacity: 0.6;
}
.display-l {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.display-m {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.display-s {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.display-l em, .display-m em, .display-s em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 16px 28px;
  background: var(--green);
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  transition: background 180ms ease, color 180ms ease;
}
.btn:hover { background: var(--green-dark); }
.btn-ghost {
  background: transparent;
  color: var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--cream); }
.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-dark:hover { background: #000; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 96px 40px 80px;
  background:
    radial-gradient(ellipse at 82% 20%, rgba(45,79,58,0.12), transparent 55%),
    radial-gradient(ellipse at 12% 90%, rgba(184,110,79,0.14), transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31,26,20,0.07) 1px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--green);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 116px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--border-green);
  padding: 36px 32px;
  border-radius: var(--radius);
}
.hero-meta h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-weight: 600;
}
.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 12px;
}
.hero-meta-row:last-child { border-bottom: none; }
.hero-meta-row .label { color: var(--ink-muted); letter-spacing: 0.05em; }
.hero-meta-row .val { color: var(--ink); font-weight: 500; }
.hero-meta-note {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--terra-dark);
  text-transform: uppercase;
}

/* ========== INTRO / MANIFESTO ========== */
.intro {
  padding: var(--space-6) 40px;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
}
.intro-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.intro-statement {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 auto 48px;
  max-width: 880px;
}
.intro-statement em { font-style: italic; color: var(--green); }
.intro-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 16px;
}

/* ========== ATMOSPHERE STRIP ========== */
.atmosphere {
  position: relative;
  height: 72vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
  background: var(--bg-dark);
}
.atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,20,0.15) 0%, rgba(31,26,20,0.05) 40%, rgba(31,26,20,0.55) 100%);
  pointer-events: none;
}
.atmosphere-caption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 48px;
  max-width: var(--max);
  margin: 0 auto;
  color: var(--cream);
  z-index: 2;
}
.atmosphere-caption .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 14px;
}
.atmosphere-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 680px;
}
.atmosphere-caption h2 em { font-style: italic; color: var(--terra); }

/* ========== SIGNATURE DISHES ========== */
.signature {
  padding: var(--space-6) 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
}
.signature-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.signature-header {
  max-width: 720px;
  margin: 0 auto var(--space-5);
  text-align: center;
}
.sig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.sig-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  padding: 0;
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease;
}
.sig-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-green);
}
.sig-media {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.sig-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.sig-card:hover .sig-media img { transform: scale(1.04); }
/* mixto IG screenshot — crop to focus on sandwich */
.sig-media.mixto-crop img { object-position: 22% 72%; }
.sig-body {
  padding: 28px 28px 30px;
}
.sig-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 12px;
  color: var(--ink);
}
.sig-name em { font-style: italic; color: var(--green); }
.sig-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.sig-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  padding: 6px 12px;
  border: 1px solid var(--border-green);
  border-radius: 40px;
}

/* ========== OBRADOR / VALUES STRIP ========== */
.obrador {
  padding: var(--space-6) 40px;
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.obrador::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(241,233,214,0.08) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.obrador-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-5);
  align-items: start;
}
.obrador .section-label { color: var(--terra); }
.obrador .section-label::before { content: '— '; }
.obrador h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.obrador h2 em { font-style: italic; color: var(--terra); }
.obrador-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
}
.obrador-val {
  border-top: 1px solid rgba(241,233,214,0.18);
  padding-top: 22px;
}
.obrador-val .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--terra);
  margin-bottom: 14px;
  display: block;
}
.obrador-val h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--cream);
}
.obrador-val p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(241,233,214,0.78);
}

/* ========== LOCATIONS TEASER ========== */
.locations {
  padding: var(--space-6) 40px;
  background: var(--cream);
}
.locations-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.locations-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-5);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.loc-card {
  border: 1px solid var(--border);
  padding: 48px 44px;
  background: var(--bg-soft);
  position: relative;
  transition: border-color 240ms ease, background 240ms ease;
}
.loc-card:hover {
  border-color: var(--green);
  background: var(--cream);
}
.loc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--green);
  margin-bottom: 22px;
  display: block;
}
.loc-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 8px;
}
.loc-name em { font-style: italic; color: var(--green); }
.loc-area {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 26px;
  display: block;
}
.loc-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.loc-meta {
  padding-top: 22px;
  border-top: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  line-height: 1.8;
}
.loc-meta strong { color: var(--ink); font-weight: 500; }

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: var(--cream);
  padding: var(--space-6) 40px var(--space-4);
  margin-top: 0;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(241,233,214,0.1);
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-brand .tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: rgba(241,233,214,0.55);
  text-transform: uppercase;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer ul {
  list-style: none;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(241,233,214,0.78);
}
.footer ul a {
  color: rgba(241,233,214,0.78);
  text-decoration: none;
  transition: color 160ms ease;
}
.footer ul a:hover { color: var(--cream); }
.ig-icon { width: 14px; height: 14px; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(241,233,214,0.5);
  text-transform: uppercase;
}

/* ========== CARTA PAGE (the empty-state weapon) ========== */
.carta-empty {
  min-height: calc(100vh - 28px - 98px);
  padding: var(--space-7) 40px var(--space-6);
  background:
    radial-gradient(ellipse at 80% 10%, rgba(184,110,79,0.1), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(45,79,58,0.12), transparent 60%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.carta-empty::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31,26,20,0.055) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}
.carta-empty-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.carta-empty .section-label {
  margin-bottom: 32px;
}
.carta-empty h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 11vw, 136px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 36px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.carta-empty h1 em { font-style: italic; color: var(--green); }
.carta-empty h1 .sad {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: var(--terra);
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  transform: translateY(-0.1em);
  opacity: 0.85;
}
.carta-empty .lede {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: var(--space-5);
  letter-spacing: -0.005em;
}
.carta-empty .lede em { font-style: italic; color: var(--green); }

.checklist {
  background: var(--cream-soft);
  border: 1px solid var(--border-green);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-bottom: var(--space-5);
  max-width: 680px;
}
.checklist-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
  font-weight: 600;
}
.checklist ul {
  list-style: none;
}
.checklist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
}
.checklist li:last-child { border-bottom: none; }
.checklist .where { letter-spacing: 0.02em; }
.checklist .status {
  color: var(--terra-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.checklist .x {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--terra-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

.punchline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
  color: var(--green);
  max-width: 720px;
  margin: 0 0 var(--space-5);
  padding-left: 28px;
  border-left: 2px solid var(--green);
}

.offer {
  background: var(--green);
  color: var(--cream);
  padding: 48px 48px 52px;
  border-radius: var(--radius);
  max-width: 720px;
  margin-bottom: 40px;
}
.offer .section-label {
  color: var(--terra);
  margin-bottom: 18px;
}
.offer h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--cream);
}
.offer h3 em { font-style: italic; color: var(--terra); }
.offer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(241,233,214,0.82);
  margin-bottom: 26px;
  max-width: 560px;
}
.offer .btn {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.offer .btn:hover { background: var(--terra); color: var(--cream); border-color: var(--terra); }

.carta-backlink {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.carta-backlink:hover { color: var(--green); }

/* ========== NUESTRAS CASAS PAGE ========== */
.page-hero {
  padding: var(--space-6) 40px var(--space-5);
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
}

.casa {
  padding: var(--space-6) 40px;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
}
.casa:nth-child(even) { background: var(--bg-alt); }
.casa-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-5);
  align-items: start;
}
.casa-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 22px;
  display: block;
  text-transform: uppercase;
}
.casa-name {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.casa-name em { font-style: italic; color: var(--green); }
.casa-area {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
  display: block;
}
.casa-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.casa-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.casa-feat span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.casa-feat strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}
.casa-media {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.casa-media .photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 5/3.2;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.casa-media .photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casa-media .photo-sub {
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.casa-media .photo-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.casa-map {
  aspect-ratio: 1/1;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
}
.casa-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(25%) contrast(0.95);
}

/* ========== VISITANOS PAGE ========== */
.visit {
  padding: var(--space-6) 40px;
  background: var(--cream);
}
.visit-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-5);
}
.visit-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.visit-info h2 em { font-style: italic; color: var(--green); }
.visit-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 480px;
}
.visit-block {
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
}
.visit-block h3 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  font-weight: 600;
}
.visit-block p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 0;
}
.visit-block a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 180ms ease;
}
.visit-block a:hover { border-color: var(--green); }
.visit-notes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.visit-notes span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border-green);
  color: var(--green);
  border-radius: 40px;
}
.visit-maps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.visit-map-card {
  border: 1px solid var(--border);
}
.visit-map-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  padding: 18px 20px 6px;
  color: var(--ink);
}
.visit-map-card h4 em { font-style: italic; color: var(--green); }
.visit-map-card .addr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  padding: 0 20px 16px;
  text-transform: uppercase;
}
.visit-map-card iframe {
  width: 100%;
  height: 260px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(0.96);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav-logo img { width: 46px; height: 46px; }
  .nav-links, .nav-divider, .lang-toggle { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 0 24px; }
  .mobile-menu.open { padding: 20px 24px 28px; }

  .hero { padding: 64px 24px 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .hero-meta { order: 2; }

  .intro { padding: var(--space-5) 24px; }
  .signature { padding: var(--space-5) 24px; }
  .sig-grid { grid-template-columns: 1fr; gap: var(--space-3); }

  .obrador { padding: var(--space-5) 24px; }
  .obrador-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .obrador-values { grid-template-columns: 1fr; }

  .locations { padding: var(--space-5) 24px; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card { padding: 36px 28px; }

  .carta-empty { padding: var(--space-5) 24px; }
  .checklist { padding: 28px 24px; }
  .offer { padding: 36px 28px 40px; }

  .page-hero { padding: var(--space-5) 24px var(--space-4); }
  .casa { padding: var(--space-5) 24px; }
  .casa-inner { grid-template-columns: 1fr; gap: var(--space-4); }
  .casa-feats { grid-template-columns: 1fr; gap: 14px; }
  .casa-media { grid-template-columns: 1fr 1fr; }

  .atmosphere { height: 52vh; min-height: 360px; }
  .atmosphere-caption { left: 24px; right: 24px; bottom: 32px; }

  .visit { padding: var(--space-5) 24px; }
  .visit-inner { grid-template-columns: 1fr; gap: var(--space-4); }

  .footer { padding: var(--space-5) 24px var(--space-3); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 48px; }
  .carta-empty h1 { font-size: 72px; }
  .punchline { font-size: 22px; padding-left: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v6 · EDITORIAL RAIL REDESIGN
   ============================================================ */

/* RAILS — fixed vertical brand text on screen edges */
.rail-l, .rail-r {
  position: fixed;
  top: 28px;
  bottom: 0;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  pointer-events: none;
}
.rail-l { left: 0; }
.rail-r { right: 0; }
.rail-l span, .rail-r span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.rail-l span {
  transform: rotate(180deg);
  color: var(--green);
}
.rail-r span {
  color: var(--ink-muted);
}

/* EDITORIAL NAV — in-flow, not sticky */
.e-nav {
  padding: 40px 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 10;
  background: transparent;
}
.e-nav-logo {
  flex-shrink: 0;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
}
.e-nav-logo img { width: 56px; height: 56px; }
.e-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.e-nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0;
  position: relative;
}
.e-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}
.e-nav-links a:hover::after { transform: scaleX(1); }
.e-nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* EDITORIAL HERO — pure typography, left-aligned, asymmetric */
.e-hero {
  padding: 88px 80px 120px;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.e-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31,26,20,0.06) 1px, transparent 0);
  background-size: 48px 48px;
  opacity: 0.4;
  pointer-events: none;
}
.e-hero-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}
.e-hero-overline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.e-hero-overline::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--green);
}
.e-hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 220px);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 56px;
}
.e-hero-title em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
.e-hero-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 56px;
  letter-spacing: -0.005em;
}
.e-hero-meta {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  max-width: 960px;
}
.e-hero-meta .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.e-hero-meta .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.e-hero-meta .v {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* CHAPTER MARKER */
.chapter-mark {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 40px;
}
.chapter-mark .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 36px;
  color: var(--green);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.chapter-mark .divider {
  flex: 0 0 auto;
  width: 48px;
  height: 1px;
  background: var(--green);
  opacity: 0.5;
}

/* EDITORIAL INTRO — asymmetric sticky-head magazine spread */
.e-intro {
  padding: 120px 80px;
  background: var(--cream);
  border-top: 1px solid var(--border-soft);
}
.e-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.e-intro-head {
  position: sticky;
  top: 40px;
}
.e-intro-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.e-intro-title em { font-style: italic; color: var(--green); }
.e-intro-body p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.e-intro-body p:last-child { margin-bottom: 0; }
.e-intro-body .dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.85;
  float: left;
  padding: 6px 14px 0 0;
  color: var(--green);
  font-style: italic;
  font-weight: 400;
}

/* DISH ROWS — alternating full-bleed sections */
.dishes {
  background: var(--cream);
  padding-top: 120px;
}
.dishes-head {
  padding: 0 80px;
  max-width: 1400px;
  margin: 0 auto 96px;
}
.dishes-head h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 900px;
}
.dishes-head h2 em { font-style: italic; color: var(--green); }
.dish-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
  border-top: 1px solid var(--border);
}
.dish-row:last-of-type { border-bottom: 1px solid var(--border); }
.dish-row .photo {
  overflow: hidden;
  background: var(--bg-alt);
}
.dish-row .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 540px;
}
.dish-row .body {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.dish-row.reverse .photo { order: 2; }
.dish-row.reverse .body { order: 1; background: var(--cream-soft); }
.dish-row .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.dish-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 36px;
  display: block;
}
.dish-row .title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 0.96;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 32px;
}
.dish-row .title em { font-style: italic; color: var(--green); }
.dish-row .desc {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
  font-weight: 400;
  letter-spacing: -0.003em;
}
.dishes-cta {
  padding: 96px 80px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* OBRADOR — reformatted as editorial numbered list */
.e-obrador {
  padding: 120px 80px;
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.e-obrador::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(241,233,214,0.08) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}
.e-obrador-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.e-obrador-head {
  margin-bottom: 96px;
  max-width: 900px;
}
.e-obrador-head .chapter-mark { color: var(--terra); }
.e-obrador-head .chapter-mark .num { color: var(--terra); }
.e-obrador-head .chapter-mark .divider { background: var(--terra); }
.e-obrador h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.e-obrador h2 em { font-style: italic; color: var(--terra); }
.e-obrador-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 96px;
}
.e-obrador-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(241,233,214,0.2);
}
.e-obrador-item .idx {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--terra);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.e-obrador-item h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--cream);
  margin-bottom: 12px;
}
.e-obrador-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(241,233,214,0.78);
}

/* EDITORIAL CASAS — full-bleed alternating panels for homepage */
.e-casas {
  background: var(--cream);
}
.e-casas-head {
  padding: 120px 80px 96px;
  max-width: 1400px;
  margin: 0 auto;
}
.e-casas-head h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.015em;
  max-width: 900px;
}
.e-casas-head h2 em { font-style: italic; color: var(--green); }
.casa-panel {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 82vh;
  border-top: 1px solid var(--border);
}
.casa-panel:last-of-type { border-bottom: 1px solid var(--border); }
.casa-panel .photo {
  overflow: hidden;
  background: var(--bg-alt);
}
.casa-panel .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px;
}
.casa-panel .body {
  padding: 96px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.casa-panel.flip .photo { order: 2; }
.casa-panel.flip .body { order: 1; background: var(--cream-soft); }
.casa-panel .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 28px;
  display: block;
}
.casa-panel .name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
.casa-panel .name em { font-style: italic; color: var(--green); }
.casa-panel .area {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: block;
  margin-bottom: 40px;
}
.casa-panel .desc {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
}
.casa-panel .meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.casa-panel .meta strong { color: var(--ink); font-weight: 500; }

/* MEGA FOOTER */
.e-footer {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 120px 80px 40px;
  overflow: hidden;
  position: relative;
}
.e-footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 380px);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: var(--cream);
  margin: 0 0 64px -8px;
  white-space: nowrap;
  overflow: hidden;
}
.e-footer-wordmark em { font-style: italic; color: var(--terra); }
.e-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1400px;
  padding-top: 48px;
  border-top: 1px solid rgba(241,233,214,0.15);
}
.e-footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
  font-weight: 600;
}
.e-footer-grid ul { list-style: none; }
.e-footer-grid p, .e-footer-grid li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.95;
  color: rgba(241,233,214,0.72);
}
.e-footer-grid a {
  color: rgba(241,233,214,0.72);
  text-decoration: none;
  transition: color 160ms ease;
}
.e-footer-grid a:hover { color: var(--cream); }
.e-footer-bottom {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(241,233,214,0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(241,233,214,0.4);
  text-transform: uppercase;
}

/* V6 RESPONSIVE */
@media (max-width: 900px) {
  .rail-l, .rail-r { display: none; }

  .e-nav { padding: 24px 24px 0; gap: 16px; }
  .e-nav-logo img { width: 46px; height: 46px; }
  .e-nav-links { display: none; }

  .e-hero { padding: 48px 24px 72px; }
  .e-hero-overline { margin-bottom: 36px; }
  .e-hero-title { margin-bottom: 36px; }
  .e-hero-sub { margin-bottom: 36px; }
  .e-hero-meta { gap: 28px; }

  .chapter-mark { margin-bottom: 28px; }
  .chapter-mark .num { font-size: 28px; }

  .e-intro { padding: 72px 24px; }
  .e-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .e-intro-head { position: static; }

  .dishes { padding-top: 72px; }
  .dishes-head { padding: 0 24px; margin-bottom: 56px; }
  .dish-row { grid-template-columns: 1fr; min-height: auto; }
  .dish-row.reverse .photo { order: 1; }
  .dish-row.reverse .body { order: 2; }
  .dish-row .body { padding: 48px 24px 64px; }
  .dish-row .photo img { min-height: 320px; }
  .dish-row .num { font-size: 32px; margin-bottom: 16px; }
  .dish-row .label { margin-bottom: 24px; }
  .dishes-cta { padding: 56px 24px 72px; }

  .e-obrador { padding: 72px 24px; }
  .e-obrador-head { margin-bottom: 48px; }
  .e-obrador-list { grid-template-columns: 1fr; gap: 40px; }
  .e-obrador-item { grid-template-columns: 64px 1fr; gap: 20px; padding-top: 24px; }
  .e-obrador-item .idx { font-size: 40px; }

  .e-casas-head { padding: 72px 24px 48px; }
  .casa-panel { grid-template-columns: 1fr; min-height: auto; }
  .casa-panel.flip .photo { order: 1; }
  .casa-panel.flip .body { order: 2; }
  .casa-panel .body { padding: 48px 24px 64px; }
  .casa-panel .photo img { min-height: 320px; }

  .e-footer { padding: 72px 24px 32px; }
  .e-footer-wordmark { font-size: 80px; margin-bottom: 40px; }
  .e-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 32px; }
  .e-footer-bottom { flex-direction: column; gap: 8px; margin-top: 40px; }
}

@media (max-width: 560px) {
  .e-hero-title { font-size: 56px; }
  .e-footer-wordmark { font-size: 64px; }
  .e-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v7 · SCALE DOWN + GREEN CIRCLE DECORATION
   (Overrides v6 sizes. Everything was too big.)
   ============================================================ */

/* HERO — scaled down */
.e-hero {
  padding: 56px 80px 88px;
  position: relative;
}
.e-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  opacity: 0.32;
  z-index: 1;
  pointer-events: none;
}
.e-hero-overline { margin-bottom: 36px; }
.e-hero-title {
  font-size: clamp(52px, 7.5vw, 128px);
  line-height: 0.94;
  margin-bottom: 36px;
}
.e-hero-sub {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  margin-bottom: 44px;
  max-width: 680px;
}
.e-hero-meta {
  gap: 40px;
  padding-top: 28px;
}

/* CHAPTER MARK — smaller */
.chapter-mark {
  margin-bottom: 32px;
  gap: 16px;
}
.chapter-mark .num { font-size: 26px; }
.chapter-mark .divider { width: 40px; }

/* INTRO — scaled */
.e-intro {
  padding: 88px 80px;
}
.e-intro-inner { gap: 72px; }
.e-intro-title {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
}
.e-intro-body p { font-size: 17px; }
.e-intro-body .dropcap::first-letter {
  font-size: 60px;
  padding: 4px 12px 0 0;
}

/* DISHES — scaled, shorter, less shouty */
.dishes { padding-top: 88px; }
.dishes-head { margin-bottom: 64px; }
.dishes-head h2 { font-size: clamp(34px, 4.2vw, 58px); }
.dish-row { min-height: auto; }
.dish-row .photo img { min-height: 440px; }
.dish-row .body { padding: 64px 72px; }
.dish-row .num {
  font-size: 36px;
  margin-bottom: 16px;
}
.dish-row .label { margin-bottom: 24px; }
.dish-row .title {
  font-size: clamp(32px, 3.6vw, 54px);
  line-height: 0.98;
  margin-bottom: 22px;
}
.dish-row .desc { font-size: clamp(16px, 1.4vw, 20px); }
.dishes-cta { padding: 64px 80px 88px; }

/* OBRADOR — scaled + terra circle */
.e-obrador {
  padding: 88px 80px;
  position: relative;
}
.e-obrador::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}
.e-obrador-inner { z-index: 2; }
.e-obrador-head { margin-bottom: 64px; }
.e-obrador h2 { font-size: clamp(34px, 4.2vw, 58px); }
.e-obrador-list { gap: 52px 72px; }
.e-obrador-item {
  padding-top: 26px;
  grid-template-columns: 60px 1fr;
  gap: 22px;
}
.e-obrador-item .idx { font-size: 42px; }
.e-obrador-item h3 { font-size: 22px; margin-bottom: 10px; }
.e-obrador-item p { font-size: 14.5px; }

/* CASAS — scaled, shorter */
.e-casas-head {
  padding: 88px 80px 64px;
}
.e-casas-head h2 { font-size: clamp(34px, 4.2vw, 58px); }
.casa-panel { min-height: auto; }
.casa-panel .photo img { min-height: 480px; }
.casa-panel .body { padding: 64px 72px; }
.casa-panel .num { margin-bottom: 22px; }
.casa-panel .name {
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 0.96;
  margin-bottom: 12px;
}
.casa-panel .area { margin-bottom: 30px; }
.casa-panel .desc {
  font-size: clamp(16px, 1.3vw, 19px);
  margin-bottom: 30px;
}

/* FOOTER — much smaller wordmark + terra circle */
.e-footer {
  padding: 88px 80px 40px;
  position: relative;
}
.e-footer::before {
  content: '';
  position: absolute;
  top: 56px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}
.e-footer-wordmark {
  font-size: clamp(80px, 13vw, 180px);
  margin: 0 0 52px -6px;
  line-height: 0.85;
  position: relative;
  z-index: 2;
}
.e-footer-grid {
  position: relative;
  z-index: 2;
  padding-top: 44px;
}
.e-footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 48px;
}

/* mobile */
@media (max-width: 900px) {
  .e-hero { padding: 40px 24px 64px; }
  .e-hero::before {
    width: 260px; height: 260px;
    top: -60px; right: -80px;
  }
  .e-obrador { padding: 56px 24px; }
  .e-obrador::before {
    width: 240px; height: 240px;
    top: -60px; right: -80px;
  }
  .e-intro { padding: 56px 24px; }
  .dishes-cta { padding: 48px 24px 64px; }
  .e-casas-head { padding: 56px 24px 40px; }
  .dish-row .body { padding: 48px 24px 56px; }
  .casa-panel .body { padding: 48px 24px 56px; }
  .e-footer { padding: 64px 24px 32px; }
  .e-footer::before { display: none; }
  .e-footer-wordmark { font-size: 64px; margin-bottom: 36px; }
}

/* ============================================================
   v8 · SCRAP RAIL CONCEPT + NAV CIRCLE
   ============================================================ */

/* kill rails entirely */
.rail-l, .rail-r { display: none !important; }

/* decorative circle behind nav links */
.e-nav {
  position: relative;
  padding: 48px 80px 8px;
}
.e-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  opacity: 0.32;
  transform: translate(-50%, -34%);
  z-index: 0;
  pointer-events: none;
}
.e-nav-logo, .e-nav-links, .e-nav-right {
  position: relative;
  z-index: 2;
}
.e-nav-links a {
  background: var(--cream);
  padding: 6px 4px;
}

/* small repeating circle motif on section labels */
.section-label::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .e-nav { padding: 28px 24px 8px; }
  .e-nav::before {
    width: 200px;
    height: 200px;
  }
}

/* ============================================================
   v9 · GREEN NAV PILL + CLEAN DISH GRID
   ============================================================ */

/* kill decorative circle behind nav — nav IS the visual element now */
.e-nav::before { display: none !important; }

/* NAV = green pill containing links */
.e-nav {
  padding: 36px 56px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.e-nav-links {
  background: var(--green);
  border-radius: 999px;
  padding: 18px 44px;
  gap: 36px;
  list-style: none;
  display: flex;
  align-items: center;
}
.e-nav-links a {
  color: var(--cream);
  background: none !important;
  padding: 4px 0;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}
.e-nav-links a:hover { color: var(--terra); }
.e-nav-links a::after { background: var(--terra); }

/* CLEAN DISH GRID — kills the alternating full-bleed mess */
.dish-row { display: none !important; }

.dishes {
  padding-top: 88px;
  padding-bottom: 0;
}
.dishes-head {
  padding: 0 80px;
  max-width: 1400px;
  margin: 0 auto 64px;
}
.dish-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
}
.dish-card {
  display: flex;
  flex-direction: column;
}
.dish-card .photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 28px;
}
.dish-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
  min-height: auto;
}
.dish-card:hover .photo img { transform: scale(1.03); }
.dish-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.dish-card .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
  display: block;
}
.dish-card .title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 18px;
  padding: 0;
}
.dish-card .title em { font-style: italic; color: var(--green); }
.dish-card .desc {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: none;
  padding: 0;
}

@media (max-width: 900px) {
  .e-nav { padding: 20px 24px 12px; gap: 16px; }
  .e-nav-links { padding: 14px 32px; gap: 24px; }

  .dish-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }
}

/* ============================================================
   v10 · SCALE DOWN HEADLINES + FIX CASA LINK UNDERLINE
   ============================================================ */

/* kill default anchor underline on casa-panel link */
.casa-panel {
  text-decoration: none;
  color: inherit;
}
.casa-panel .desc,
.casa-panel .name,
.casa-panel .meta span,
.casa-panel .num,
.casa-panel .area {
  text-decoration: none;
}

/* headline scale-down */
.e-hero-title {
  font-size: clamp(48px, 7vw, 104px);
}
.e-intro-title {
  font-size: clamp(28px, 3.2vw, 46px);
}
.dishes-head h2 {
  font-size: clamp(28px, 3.2vw, 46px);
}
.e-obrador h2 {
  font-size: clamp(28px, 3.2vw, 46px);
}
.e-casas-head h2 {
  font-size: clamp(28px, 3.2vw, 46px);
}

/* casa panel — smaller + tighter */
.casa-panel .name {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 10px;
}
.casa-panel .area {
  margin-bottom: 24px;
}
.casa-panel .desc {
  font-size: clamp(15px, 1.2vw, 18px);
  margin-bottom: 24px;
  max-width: 460px;
}
.casa-panel .body {
  padding: 56px 64px;
}
.casa-panel .photo img {
  min-height: 420px;
}
.casa-panel .num {
  margin-bottom: 18px;
  font-size: 10px;
}
.casa-panel .meta {
  gap: 24px;
  font-size: 10px;
  padding-top: 18px;
}

/* footer wordmark — also too big */
.e-footer-wordmark {
  font-size: clamp(72px, 11vw, 148px);
  margin-bottom: 44px;
}

@media (max-width: 900px) {
  .casa-panel .body { padding: 44px 24px 56px; }
  .casa-panel .photo img { min-height: 300px; }
}

/* ============================================================
   v11 · STICKY NAV + CENTER CTA + RESTORED LOC CARDS
   ============================================================ */

/* NAV follows scroll */
.e-nav {
  position: sticky;
  top: 28px;
  background: var(--cream);
  z-index: 500;
}

/* center the Ver carta completa button */
.dishes-cta {
  text-align: center;
}

/* LOC CARDS — v1 clean pattern, with photo on top + link fixes */
.loc-card {
  padding: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 240ms ease, transform 240ms ease;
}
.loc-card:hover {
  transform: translateY(-2px);
}
.loc-card .loc-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.loc-card .loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.loc-card:hover .loc-photo img {
  transform: scale(1.04);
}
.loc-card .loc-text {
  padding: 40px 40px 44px;
}
.loc-card .loc-num,
.loc-card .loc-name,
.loc-card .loc-area,
.loc-card .loc-desc,
.loc-card .loc-meta {
  text-decoration: none;
}
.loc-card .loc-num { margin-bottom: 20px; }
.loc-card .loc-name {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 8px;
}
.loc-card .loc-area { margin-bottom: 22px; }
.loc-card .loc-desc {
  font-size: 15px;
  margin-bottom: 26px;
}
.loc-card .loc-meta {
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   v12 · BODONI MODA + GREEN BRAND + UNIFIED FOOTER
   ============================================================ */

/* FOOTER — green bg, cream wordmark, cream text */
.e-footer {
  background: var(--green);
  color: var(--cream);
  border-top: none;
  padding: 96px 80px 40px;
}
.e-footer::before {
  border-color: var(--cream);
  opacity: 0.22;
}
.e-footer-wordmark {
  color: var(--cream);
}
.e-footer-wordmark em {
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
}
.e-footer-grid {
  border-top: 1px solid rgba(241,233,214,0.18);
}
.e-footer-grid h5 {
  color: rgba(241,233,214,0.9);
}
.e-footer-grid p,
.e-footer-grid li {
  color: rgba(241,233,214,0.72);
}
.e-footer-grid a {
  color: rgba(241,233,214,0.72);
}
.e-footer-grid a:hover {
  color: var(--cream);
}
.e-footer-bottom {
  border-top: 1px solid rgba(241,233,214,0.12);
  color: rgba(241,233,214,0.5);
}

/* KILL TERRACOTTA in emphasis — replace with green or cream on dark bg */
.e-obrador h2 em { color: var(--cream); }
.obrador h2 em { color: var(--cream); }
.e-obrador-item .idx { color: rgba(241,233,214,0.75); }
.obrador-val .num { color: rgba(241,233,214,0.7); }
.obrador .section-label { color: rgba(241,233,214,0.9); }
.obrador .section-label::before { opacity: 0.6; }
.e-obrador::before { border-color: rgba(241,233,214,0.35); }

.offer h3 em { color: var(--cream); }
.offer .section-label { color: rgba(241,233,214,0.9); }
.offer .btn:hover {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}

.e-nav-links a:hover { color: rgba(241,233,214,0.75); }
.e-nav-links a::after { background: var(--cream); }

/* LOC CARDS — slightly bigger text as requested */
.loc-card .loc-num {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}
.loc-card .loc-name {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1;
  margin-bottom: 10px;
}
.loc-card .loc-area {
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 26px;
}
.loc-card .loc-desc {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.loc-card .loc-meta {
  font-size: 11px;
}

/* ============================================================
   v13 · CARTA-SPECIFIC FONT (Fraunces for readability)
   Bodoni Moda hairlines were killing the carta paragraph text.
   ============================================================ */

.carta-empty h1,
.carta-empty h1 em,
.carta-empty .lede,
.carta-empty .lede em,
.carta-empty .punchline,
.offer h3,
.offer h3 em {
  font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
}

/* slightly smaller + tighter lede for readability */
.carta-empty .lede {
  font-size: clamp(22px, 2.9vw, 38px);
  line-height: 1.35;
}
.carta-empty h1 {
  font-size: clamp(72px, 11vw, 128px);
}
.carta-empty h1 .sad {
  font-family: var(--font-mono);
}
.punchline {
  font-size: clamp(24px, 2.8vw, 36px);
}

/* ============================================================
   v14 · MOBILE FIXES + FOOTER DATE STAMP
   ============================================================ */

/* kill horizontal scroll without breaking position:sticky
   (hidden would kill sticky because it creates a scroll context;
    clip blocks overflow without the side effect) */
html, body { overflow-x: clip; max-width: 100%; }

/* FOOTER DATE STAMP — mark to the left of the big wordmark */
.e-footer-head {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}
.e-footer-mark {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 140px;
}
.e-footer-mark .label {
  color: rgba(241,233,214,0.92);
  font-weight: 600;
}
.e-footer-mark .date {
  color: rgba(241,233,214,0.55);
  letter-spacing: 0.24em;
  font-size: 11px;
}
.e-footer-head .e-footer-wordmark {
  margin: 0;
  flex: 1;
  min-width: 0;
}

/* MOBILE OVERRIDES — must come after all earlier rules to win cascade */
@media (max-width: 900px) {
  /* nav: hamburger only, pill hidden */
  .e-nav-links { display: none !important; }
  .e-nav {
    padding: 20px 20px 12px;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .e-nav-right { gap: 12px; }

  /* hide obrador entirely on mobile per user */
  .e-obrador { display: none !important; }

  /* hero tighter */
  .e-hero { padding: 36px 20px 56px; }
  .e-hero-title { font-size: clamp(42px, 10vw, 72px) !important; }
  .e-hero-sub { font-size: 16px !important; margin-bottom: 32px; }
  .e-hero-meta { gap: 24px; padding-top: 24px; }

  /* intro tighter */
  .e-intro { padding: 56px 20px; }
  .e-intro-inner { gap: 32px; }
  .e-intro-title { font-size: clamp(28px, 6vw, 40px) !important; }

  /* dish grid — compact cards, landscape photos */
  .dishes { padding-top: 56px; }
  .dishes-head { padding: 0 20px; margin-bottom: 36px; }
  .dishes-head h2 { font-size: clamp(28px, 6vw, 40px) !important; }
  .dish-grid {
    grid-template-columns: 1fr !important;
    padding: 0 20px;
    gap: 36px;
  }
  .dish-card .photo {
    aspect-ratio: 5/4;
    margin-bottom: 20px;
  }
  .dish-card .num { font-size: 22px; margin-bottom: 10px; }
  .dish-card .label { margin-bottom: 12px; }
  .dish-card .title {
    font-size: clamp(24px, 6vw, 32px) !important;
    margin-bottom: 12px;
  }
  .dish-card .desc { font-size: 15px; }
  .dishes-cta { padding: 40px 20px 64px; }

  /* locations — already OK per user, minor tightening */
  .locations { padding: 56px 20px; }
  .loc-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .loc-card .loc-text { padding: 32px 28px 36px; }
  .loc-card .loc-name { font-size: clamp(28px, 6.5vw, 38px) !important; }

  /* FOOTER — fix stacking, keep 2 cols, shrink wordmark */
  .e-footer { padding: 56px 20px 28px; }
  .e-footer-head {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }
  .e-footer-mark {
    padding-top: 0;
    min-width: 0;
    flex-direction: row;
    gap: 14px;
    align-items: center;
  }
  .e-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 20px;
    padding-top: 28px;
  }
  .e-footer-wordmark {
    font-size: clamp(52px, 18vw, 80px) !important;
    margin-bottom: 0;
  }
  .e-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 32px;
  }
}

@media (max-width: 560px) {
  /* keep 2 cols on small phones, do NOT collapse to 1 */
  .e-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 16px;
  }
  .e-footer-grid div:first-child {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   v15 · GREEN HAMBURGER MENU + EXTRA MOBILE SAFETY
   ============================================================ */

/* hamburger menu popup — green background, cream text */
.mobile-menu {
  background: var(--green) !important;
  border-bottom: none !important;
  padding: 0 24px;
}
.mobile-menu.open {
  max-height: 480px !important;
  padding: 28px 24px 36px !important;
  box-shadow: 0 12px 32px rgba(31,26,20,0.12);
}
.mobile-menu a {
  color: var(--cream) !important;
  border-bottom: 1px solid rgba(241,233,214,0.18) !important;
  font-family: var(--font-display) !important;
  font-size: 24px;
  padding: 16px 0;
}
.mobile-menu a:last-child {
  border-bottom: none !important;
}
.mobile-menu a:hover {
  color: rgba(241,233,214,0.75) !important;
}

/* hamburger icon bars — green on light bg, cream when open */
.hamburger span {
  background: var(--green) !important;
}

/* extra overflow safety — belt-and-suspenders */
section, footer, header {
  max-width: 100%;
}
.e-hero, .dishes, .locations, .e-footer, .e-intro, .atmosphere {
  max-width: 100vw;
  overflow-x: clip;
}

/* ============================================================
   v15b · BOLD ALL HEADINGS
   Bodoni Moda at weight 400 has hairline strokes — bumping to
   600/700 makes everything readable instead of ghostly-thin.
   ============================================================ */

h1, h2, h3, h4, h5, h6,
.e-hero-title,
.e-intro-title,
.dishes-head h2,
.e-obrador h2, .obrador h2,
.e-casas-head h2,
.dish-card .title,
.loc-card .loc-name,
.casa-panel .name,
.casa-name,
.page-hero h1,
.visit-info h2,
.display-l, .display-m, .display-s,
.carta-empty h1,
.offer h3,
.e-footer-wordmark,
.e-footer-wordmark em,
.sig-name,
.footer-logo,
.night-title,
.carta-title,
.visit-map-card h4 {
  font-weight: 700;
}

/* italic em inside headings still gets bold */
h1 em, h2 em, h3 em, h4 em,
.e-hero-title em,
.e-intro-title em,
.dish-card .title em,
.loc-card .loc-name em,
.casa-panel .name em,
.casa-name em,
.page-hero h1 em,
.visit-info h2 em,
.carta-empty h1 em,
.offer h3 em,
.display-l em, .display-m em, .display-s em {
  font-weight: 700;
}

/* ============================================================
   v16 · READABILITY PASS
   - Fraunces for display site-wide (warmer, optical-sized, easier
     to read than Bodoni Moda's extreme hairlines)
   - Footer wordmark keeps Bodoni Moda — user asked to preserve it
   - Atmosphere caption gets brand-green text over a stronger
     dark gradient overlay for legibility
   - Manifesto section gets an ornamental divider at the top
   ============================================================ */

/* Fraunces at large opsz reads warmer than Bodoni Moda's razor hairlines. */
.e-hero-title,
.e-intro-title,
.dishes-head h2,
.e-obrador h2, .obrador h2,
.e-casas-head h2,
.dish-card .title,
.loc-card .loc-name,
.casa-panel .name,
.casa-name,
.page-hero h1,
.visit-info h2,
.display-l, .display-m, .display-s,
.atmosphere-caption h2,
.locations-header h2,
.e-obrador-list h3 {
  font-family: 'Fraunces', 'Libre Caslon Text', Georgia, serif !important;
  font-variation-settings: "opsz" 120, "SOFT" 30;
  font-weight: 600;
}
.e-hero-title em,
.e-intro-title em,
.dishes-head h2 em,
.dish-card .title em,
.loc-card .loc-name em,
.atmosphere-caption h2 em,
.page-hero h1 em,
.visit-info h2 em,
.locations-header h2 em {
  font-family: 'Fraunces', 'Libre Caslon Text', Georgia, serif !important;
  font-variation-settings: "opsz" 120, "SOFT" 50;
}

/* footer wordmark — preserve Bodoni Moda italic the user approved */
.e-footer-wordmark,
.e-footer-wordmark em {
  font-family: 'Bodoni Moda', 'Didot', Georgia, serif !important;
  font-variation-settings: normal !important;
  font-weight: 500 !important;
}

/* ============================================================
   ATMOSPHERE CAPTION — green text + darker fade
   ============================================================ */

.atmosphere::after {
  background: linear-gradient(
    180deg,
    rgba(15,20,14,0.25) 0%,
    rgba(15,20,14,0.10) 30%,
    rgba(15,20,14,0.70) 75%,
    rgba(15,20,14,0.88) 100%
  ) !important;
}
.atmosphere-caption {
  color: var(--cream) !important;
}
.atmosphere-caption .label {
  color: #9FC0A4 !important; /* muted sage label */
  opacity: 1;
}
.atmosphere-caption h2 {
  color: var(--cream) !important;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.atmosphere-caption h2 em {
  color: #A8D0A8 !important; /* bright sage — readable green on dark overlay */
  font-style: italic;
}

/* ============================================================
   MANIFESTO — decorative divider at the top of the section
   (pseudo on .e-intro itself; .e-intro-inner is a grid so we
    can't attach pseudos there without breaking layout)
   ============================================================ */

.e-intro { position: relative; }
.e-intro::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 60%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(45,79,58,0.35) 20%,
    rgba(45,79,58,0.55) 50%,
    rgba(45,79,58,0.35) 80%,
    transparent 100%
  );
  pointer-events: none;
}
.e-intro::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  background: var(--bg);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .e-intro::before { top: 28px; width: min(420px, 70%); }
  .e-intro::after  { top: 28px; }
}
