/* =====================================================
   TABERNA EL CORCHO — Sistema Visual v1.0
   Paleta: off-white + carbón + verde oliva
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  --bg:         #FAFAF7;
  --bg-alt:     #F2EFE8;
  --bg-dark:    #111111;
  --text:       #161616;
  --text-soft:  #4A4A4A;
  --text-muted: #8A8479;
  --line:       #E6E1D6;
  --gold:       #607848;
  --gold-dark:  #445535;
  --max:        1240px;
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --radius:     2px;
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

/* ─── Utilidades ─── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #f0ece4; }
.section--dark .text-muted { color: #9a9690; }

.text-center { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--gold); }

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.divider--left { margin-left: 0; }

.lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  max-width: 600px;
}

/* Fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.is-visible { opacity: 1; transform: none; }

/* Skip link */
.skip-link {
  position: fixed; top: -100%; left: 0;
  background: var(--gold); color: #fff;
  padding: .5rem 1rem; z-index: 9999;
  font-size: .85rem;
}
.skip-link:focus { top: 0; }


/* ═══════════════════════════════════════
   NAVEGACIÓN
═══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0; z-index: 100;
  background: rgba(250,250,247,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .01em;
}
.logo .logo-dot { color: var(--gold); margin: 0 .08em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold-dark); }

.nav-cta {
  background: var(--text) !important;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 100px;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.lang-switch a { color: var(--text-muted); }
.lang-switch a:hover,
.lang-switch a.active { color: var(--gold-dark); }
.lang-switch .sep { color: var(--line); user-select: none; }

.menu-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text);
  padding: .3rem;
  line-height: 1;
  z-index: 101;
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; align-items: center; }

  /* Estado cerrado: oculto dentro del header */
  .nav-links {
    display: flex;
    position: fixed; inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    /* z-index alto pero irrelevante mientras esté dentro del stacking context del header */
    z-index: 9999;
  }

  /* Estado abierto: el JS lo mueve a <body> antes de añadir esta clase,
     así z-index: 9999 funciona en el contexto global y nada se superpone */
  .nav-links.is-open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a { font-size: 1.5rem; letter-spacing: .05em; }
  .nav-links .lang-switch { font-size: 1rem; gap: .6rem; margin-top: .5rem; }
  .nav-links .nav-cta { padding: .9rem 2.8rem; font-size: 1rem; margin-top: .5rem; }
}


/* ═══════════════════════════════════════
   BOTONES
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.8rem;
  background: var(--text);
  color: #fff;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  text-decoration: none;
}
.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
}
.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn--outline-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--text);
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.52);
  fetchpriority: high;
}
.hero-bg .hero-bg-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a2010 0%, #0e120a 100%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(96,120,72,.2) 0%, transparent 65%),
    linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 55%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8rem var(--gutter) 7rem;
  color: #fff;
  text-align: center;
}
.hero-inner .eyebrow { color: var(--gold); margin-bottom: .8rem; }
.hero-inner h1 { color: #fff; margin-bottom: 1.5rem; max-width: 740px; margin-left: auto; margin-right: auto; }
.hero-inner h1 em { color: #fff; font-style: italic; }
.hero-inner .lead { color: rgba(255,255,255,.82); margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-inner .cta-group { justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  z-index: 2;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ═══════════════════════════════════════
   TWO-COL
═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.two-col--reverse .two-col-img { order: -1; }

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse .two-col-img { order: 0; }
}

.two-col-text { max-width: 530px; }
.two-col-text h2 { margin-bottom: 1rem; }
.two-col-text p  { color: var(--text-soft); margin-bottom: 1.2rem; }
.two-col-text .btn { margin-top: .6rem; }

/* Image Frame */
.image-frame {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.image-frame.is-wide   { aspect-ratio: 16/9; }
.image-frame.is-square { aspect-ratio: 1/1; }
.image-frame img,
.image-frame .img-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.image-frame:hover img { transform: scale(1.03); }

.img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #c8c3b4 0%, #b8b3a4 100%);
  color: #8a8479;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--sans);
}


/* ═══════════════════════════════════════
   FEATURE GRID
═══════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
@media (max-width: 680px) {
  .feature-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

.feature {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.feature .num {
  font-family: var(--serif);
  font-size: 3.8rem;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
  margin-bottom: .6rem;
}
.feature h4 { margin-bottom: .5rem; }
.feature p  { color: var(--text-soft); font-size: .93rem; }


/* ═══════════════════════════════════════
   PHOTO STRIP
═══════════════════════════════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}
@media (max-width: 580px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-strip .ps-item:last-child { display: none; }
}
.ps-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.ps-item img, .ps-item .img-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.ps-item:hover img { transform: scale(1.04); }


/* ═══════════════════════════════════════
   SECTION PHOTO (ancha)
═══════════════════════════════════════ */
.section-photo {
  height: clamp(340px, 45vw, 620px);
  overflow: hidden;
  position: relative;
}
.section-photo img,
.section-photo .img-ph {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}
.section-photo-caption {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: var(--gutter);
}
.section-photo-caption h2 { color: #fff; margin-bottom: 1rem; }


/* ═══════════════════════════════════════
   LEAD TEXT & VALUES
═══════════════════════════════════════ */
.lead-text {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  line-height: 1.4;
  color: var(--text);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 680px) { .values-list { grid-template-columns: 1fr; } }

.value {
  border-top: 3px solid var(--gold);
  padding-top: 1.5rem;
}
.value h4 { margin-bottom: .6rem; }
.value p   { color: var(--text-soft); font-size: .93rem; }

.press-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}


/* ═══════════════════════════════════════
   PILARES / WHY
═══════════════════════════════════════ */
.pillars { display: flex; flex-direction: column; gap: 1.8rem; }
.pillar  { display: flex; gap: 1.2rem; align-items: flex-start; }
.pillar-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  min-width: 2rem;
  line-height: 1;
  padding-top: .1rem;
}
.pillar h4 { margin-bottom: .35rem; }
.pillar p  { color: var(--text-soft); font-size: .92rem; }


/* ═══════════════════════════════════════
   ENCUÉNTRANOS / FIND-US
═══════════════════════════════════════ */
.find-us { text-align: center; }
.find-us h2   { color: #fff; margin-bottom: 1rem; }
.find-us .address-block {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 2.2rem;
}


/* ═══════════════════════════════════════
   CTA DARK
═══════════════════════════════════════ */
.cta-dark {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter);
  background: var(--bg-dark);
}
.cta-dark h2 { color: #fff; margin-bottom: 1rem; }
.cta-dark p  {
  color: rgba(255,255,255,.6);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}


/* ═══════════════════════════════════════
   CARTA / MENÚ
═══════════════════════════════════════ */
.menu-hero {
  padding: 4.5rem 0 2rem;
  text-align: center;
}
.menu-hero h1 { margin-bottom: .6rem; }
.menu-hero .lead { margin: 0 auto; }

.menu-tabs {
  position: sticky;
  top: 68px; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: .75rem var(--gutter);
}
.menu-tabs-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar { display: none; }

.menu-tab {
  display: inline-block;
  padding: .38rem 1rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all .2s;
  text-decoration: none;
}
.menu-tab:hover  { color: var(--gold-dark); border-color: var(--gold); }
.menu-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.menu-content { padding: 3rem 0 6rem; }

.menu-section {
  margin-bottom: 4.5rem;
  scroll-margin-top: 140px;
}
.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .8rem;
  border-bottom: 2px solid var(--line);
}
.menu-section-header h2 { margin: 0; }
.menu-section-header small {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
@media (max-width: 700px) { .menu-grid { grid-template-columns: 1fr; } }

.dish {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}
.dish-info { flex: 1; }
.dish-name {
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.3;
}
.dish-name .star { color: var(--gold); margin-right: .25rem; }
.dish-desc {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .2rem;
  line-height: 1.5;
}
.dish-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--gold-dark);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: .1rem;
}

.menu-section--featured {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
}
.menu-section--featured .menu-section-header {
  border-bottom-color: var(--line);
}

.allergen-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   RESERVAS
═══════════════════════════════════════ */
.reserve-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) { .reserve-wrap { grid-template-columns: 1fr; } }

.booking-embed iframe {
  width: 100%;
  min-height: 680px;
  border: none;
  border-radius: var(--radius);
  display: block;
}
.booking-fallback {
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: .8rem;
  text-align: center;
}
.booking-fallback a { color: var(--gold-dark); text-decoration: underline; }

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.4rem;
}
.info-card h3 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.info-card p, .info-card li {
  font-size: .9rem;
  color: var(--text-soft);
  margin-bottom: .4rem;
  line-height: 1.6;
}
.info-card a { color: var(--gold-dark); }
.info-card a:hover { color: var(--text); }
.info-card a.btn { color: #fff; }
.info-card a.btn--gold { color: #fff; }
.info-card .big-phone {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text);
  display: block;
  margin: .5rem 0 .3rem;
}

.hours-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  margin-bottom: 1.4rem;
}
.hours-card h3 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .9rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .48rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row--feature { font-weight: 600; }
.hours-day  { color: var(--text-soft); }
.hours-time { color: var(--text); }
.hours-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: .18rem .55rem;
  border-radius: 100px;
}


/* ═══════════════════════════════════════
   CONTACTO
═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card h4 {
  font-family: var(--sans);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.contact-card p,
.contact-card a {
  color: var(--text-soft);
  font-size: .93rem;
  line-height: 1.75;
}
.contact-card a:hover { color: var(--gold-dark); }

.map-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 2rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.transport-section { margin-top: 2rem; }
.transport-section h3 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}
.transport-list { display: flex; flex-direction: column; gap: .8rem; }
.transport-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .9rem;
  color: var(--text-soft);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  letter-spacing: 0;
}
.tag.metro { background: #e60000; }
.tag.bus   { background: #009fe3; }

.parking-note {
  margin-top: 1.5rem;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
}


/* ═══════════════════════════════════════
   NOSOTROS / ABOUT
═══════════════════════════════════════ */
.about-hero {
  padding: 5rem 0;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.about-hero h1 { margin-bottom: 1rem; }
.about-hero .lead { margin: 0 auto; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.72);
  padding: 4.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: #fff; display: block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: .86rem;
  line-height: 1.65;
  color: rgba(255,255,255,.45);
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a,
.footer-col address p {
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
  line-height: 1.7;
  font-style: normal;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col address a { color: rgba(255,255,255,.6); }
.footer-col address a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: .7rem;
  margin-top: 1.2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--gold); }


/* ═══════════════════════════════════════
   404
═══════════════════════════════════════ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--gutter);
}
.error-code {
  font-family: var(--serif);
  font-size: clamp(5rem, 18vw, 11rem);
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page h2 { margin-bottom: .8rem; }
.error-page p  { color: var(--text-soft); margin-bottom: 2rem; }


/* ═══════════════════════════════════════
   RESPONSIVE MISC
═══════════════════════════════════════ */
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.65rem; }
  .cta-group { flex-direction: column; align-items: stretch; }
  .cta-group .btn { text-align: center; justify-content: center; }
  .menu-section--featured { padding: 1.4rem; }
}
