/* ═══════════════════════════════════════════════════════
   EL CRUCE · Premium Restaurant CSS
   Parrilla Argentina · Cala Figuera
═══════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────
   TOKENS
────────────────────────────────────────────────────── */
:root {
  --c-void:     #050403;
  --c-ash:      #0d0a08;
  --c-coal:     #161109;
  --c-wood:     #241a10;
  --c-plank:    #30231a;
  --c-ember:    #b82c10;
  --c-fire:     #d04818;
  --c-blaze:    #e86a24;
  --c-gold:     #c09040;
  --c-gold-lt:  #d8b060;
  --c-wheat:    #e8d0aa;
  --c-cream:    #f4e8d0;
  --c-chalk:    rgba(244,232,208,0.82);
  --c-dim:      rgba(244,232,208,0.5);
  --c-ghost:    rgba(244,232,208,0.3);
  --c-border:   rgba(192,144,64,0.22);
  --c-border-h: rgba(192,144,64,0.5);
  --c-wa:       #25d366;
  --c-wa-dark:  #1a9e4e;

  --grad-fire:    linear-gradient(135deg, #b82c10 0%, #d04818 55%, #c09040 100%);
  --grad-wa:      linear-gradient(135deg, #25d366 0%, #1aad55 100%);
  --grad-dark-up: linear-gradient(0deg, rgba(5,4,3,0.96) 0%, rgba(5,4,3,0.4) 60%, transparent 100%);
  --grad-hero:    linear-gradient(180deg, rgba(5,4,3,0.15) 0%, rgba(5,4,3,0.05) 35%, rgba(5,4,3,0.6) 72%, rgba(5,4,3,0.97) 100%);

  --font-display: "Cormorant Garamond", "Libre Baskerville", Georgia, serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --container:  1200px;
  --gutter:     clamp(18px, 4vw, 48px);
  --header-h:   76px;
  --section-y:  clamp(72px, 9vw, 128px);

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;

  --shadow-card:  0 8px 32px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 48px rgba(184,44,16,0.35);
  --shadow-gold:  0 4px 24px rgba(192,144,64,0.3);
  --shadow-wa:    0 8px 32px rgba(37,211,102,0.35);

  --t-fast:  150ms ease;
  --t-mid:   260ms ease;
  --t-slow:  480ms ease;

  color-scheme: dark;
}

/* ──────────────────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--c-ash);
  color: var(--c-wheat);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
  transition: color var(--t-fast);
}

:focus-visible {
  outline: 2px solid var(--c-fire);
  outline-offset: 3px;
}

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

section, header, footer {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

:target { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ──────────────────────────────────────────────────────
   ACCESSIBILITY
────────────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--c-coal);
  border: 1px solid var(--c-border);
  color: var(--c-cream);
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateY(-180%);
  transition: transform var(--t-mid);
  z-index: 9999;
}
.skip-link:focus { transform: translateY(0); }

.noscript {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-wood);
  border-top: 1px solid var(--c-border);
  color: var(--c-wheat);
  font-size: 0.875rem;
  text-align: center;
  padding: 12px var(--gutter);
  z-index: 9998;
}

/* ──────────────────────────────────────────────────────
   REVEAL ANIMATIONS
────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: all var(--t-mid);
  white-space: nowrap;
  padding: 14px 28px;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--grad-fire);
  color: var(--c-cream);
  box-shadow: 0 4px 20px rgba(184,44,16,0.4);
}
.btn--primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 28px rgba(184,44,16,0.55);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: 1.5px solid rgba(244,232,208,0.35);
}
.btn--ghost:hover {
  background: rgba(244,232,208,0.08);
  border-color: rgba(244,232,208,0.65);
}

.btn--whatsapp {
  background: var(--grad-wa);
  color: #fff;
  box-shadow: var(--shadow-wa);
}
.btn--whatsapp:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 40px rgba(37,211,102,0.45);
  transform: translateY(-1px);
}

.btn--xl {
  padding: 17px 36px;
  font-size: 0.92rem;
  border-radius: var(--r-xl);
}

.btn--gold {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-lt) 100%);
  color: var(--c-coal);
  font-weight: 700;
}
.btn--gold:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ──────────────────────────────────────────────────────
   SITE HEADER
────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13,10,8,0.92);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom-color: var(--c-border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo {
  width: clamp(120px, 18vw, 168px);
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Nav */
.site-nav { display: flex; align-items: center; }

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-wheat);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--c-fire);
  transform: scaleX(0);
  transition: transform var(--t-mid);
  transform-origin: left;
}
.site-nav__link:hover { color: var(--c-cream); }
.site-nav__link:hover::after { transform: scaleX(1); }

.site-nav__link--cta {
  background: var(--grad-fire);
  color: var(--c-cream) !important;
  padding: 9px 18px;
  border-radius: var(--r-lg);
  letter-spacing: 0.08em;
  box-shadow: 0 4px 16px rgba(184,44,16,0.35);
}
.site-nav__link--cta::after { display: none; }
.site-nav__link--cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(184,44,16,0.5);
}

/* Header WhatsApp button (injected by JS) */
.btn--header-wa {
  background: var(--grad-wa);
  color: #fff !important;
  font-size: 0.78rem;
  padding: 9px 16px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  transition: all var(--t-mid);
}
.btn--header-wa:hover { filter: brightness(1.08); box-shadow: var(--shadow-wa); }

/* Header controls */
.site-header__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Language switch */
.lang-switch { position: relative; }

.lang-switch__current {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-wheat);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 7px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-fast);
}
.lang-switch__current:hover {
  border-color: var(--c-border-h);
  background: rgba(244,232,208,0.06);
  color: var(--c-cream);
}

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--c-coal);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 6px;
  min-width: 80px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-switch__btn {
  background: transparent;
  border: none;
  color: var(--c-chalk);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-align: left;
  transition: all var(--t-fast);
}
.lang-switch__btn:hover {
  background: rgba(192,144,64,0.12);
  color: var(--c-gold-lt);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-wheat);
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  transition: all var(--t-fast);
}
.nav-toggle:hover { border-color: var(--c-border-h); background: rgba(244,232,208,0.06); }

.nav-toggle__icon {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-wheat);
  border-radius: 2px;
  position: relative;
  transition: all var(--t-mid);
}
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-wheat);
  border-radius: 2px;
  transition: all var(--t-mid);
}
.nav-toggle__icon::before { top: -6px; }
.nav-toggle__icon::after  { bottom: -6px; }

[aria-expanded="true"] .nav-toggle__icon { background: transparent; }
[aria-expanded="true"] .nav-toggle__icon::before { transform: rotate(45deg) translate(4px,4px); }
[aria-expanded="true"] .nav-toggle__icon::after  { transform: rotate(-45deg) translate(4px,-4px); }

/* ──────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(60px, 9vw, 100px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: opacity 1.5s ease;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero__video.is-playing { opacity: 1; }
.hero--video-active .hero__img { opacity: 0; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}
.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(5,4,3,0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr minmax(220px, 300px);
    align-items: end;
    gap: 60px;
  }
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__kicker::before {
  content: "";
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--c-gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--c-cream);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: var(--c-chalk);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Trust strip (injected by JS) */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  background: rgba(192,144,64,0.1);
  border: 1px solid rgba(192,144,64,0.25);
  border-radius: 999px;
  padding: 5px 12px;
}
.hero__trust-item::before {
  content: "✦";
  font-size: 0.55rem;
  color: var(--c-fire);
}

/* Hero info card */
.hero__info {
  background: rgba(22,17,9,0.78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
}

.hero__info-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 12px;
}

.hero__info-list {
  list-style: none;
  margin-bottom: 16px;
}
.hero__info-list li {
  font-size: 0.84rem;
  color: var(--c-chalk);
  padding: 7px 0;
  border-bottom: 1px solid var(--c-border);
  line-height: 1.4;
}
.hero__info-list li:last-child { border-bottom: none; }

.hero__info-text {
  font-size: 0.84rem;
  color: var(--c-dim);
  line-height: 1.65;
}

/* ──────────────────────────────────────────────────────
   SECTION BASE
────────────────────────────────────────────────────── */
.section {
  position: relative;
  overflow: hidden;
}

.section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,4,3,0.72);
}
.section__overlay--soft   { background: rgba(5,4,3,0.55); }
.section__overlay--strong { background: rgba(5,4,3,0.86); }
.section__media--black    { background: var(--c-ash); }

.section__content {
  position: relative;
  z-index: 2;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.section__header {
  margin-bottom: clamp(36px, 5vw, 64px);
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section__lead {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  color: var(--c-chalk);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ──────────────────────────────────────────────────────
   LISTS
────────────────────────────────────────────────────── */
.list { list-style: none; }

.list--checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.list--checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--c-chalk);
  line-height: 1.5;
}
.list--checks li::before {
  content: "✓";
  color: var(--c-fire);
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.list--dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.list--dots li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--c-chalk);
  line-height: 1.5;
}
.list--dots li::before {
  content: "·";
  color: var(--c-gold-lt);
  font-size: 1.2rem;
  line-height: 1.1;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────
   CARDS
────────────────────────────────────────────────────── */
.cards { display: grid; gap: clamp(20px, 3vw, 32px); }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: rgba(22,17,9,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 36px);
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.card:hover {
  border-color: var(--c-border-h);
  box-shadow: var(--shadow-card);
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 12px;
}

.card__text {
  font-size: 0.9rem;
  color: var(--c-chalk);
  line-height: 1.8;
  white-space: pre-line;
}

/* ──────────────────────────────────────────────────────
   SECTION — EXPERIENCE
────────────────────────────────────────────────────── */
.section--experience {
  background: radial-gradient(ellipse 140% 60% at 20% 100%, rgba(184,44,16,0.12) 0%, transparent 65%),
              var(--c-ash);
}
.section--experience .section__media { display: none; }
.section--experience .section__content { position: relative; z-index: 1; }

/* ──────────────────────────────────────────────────────
   SECTION — KITCHEN
────────────────────────────────────────────────────── */
.section--kitchen { background: var(--c-coal); }

.kitchen {
  display: flex;
  flex-direction: column;
  gap: clamp(52px, 7vw, 80px);
}

.kitchen__kicker {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.kitchen__kicker::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
}

.kitchen__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.kitchen__lead {
  font-size: 1rem;
  color: var(--c-chalk);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
}

.kitchen__top {
  display: grid;
  gap: 28px;
}
@media (min-width: 860px) {
  .kitchen__top {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .kitchen__top > .kitchen__kicker,
  .kitchen__top > .kitchen__title,
  .kitchen__top > .kitchen__lead {
    grid-column: 1 / -1;
  }
}

.kitchen__bottom {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 760px) {
  .kitchen__bottom { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.kitchen__dryaged {
  background: rgba(36,26,16,0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}
.kitchen__dryaged::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-fire);
}

.kitchen__sub {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 6px;
}

.kitchen__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 16px;
}

.kitchen__text {
  font-size: 0.92rem;
  color: var(--c-chalk);
  line-height: 1.75;
  margin-bottom: 16px;
}

.kitchen__image {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.kitchen__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.kitchen__image:hover img { transform: scale(1.04); }

/* ──────────────────────────────────────────────────────
   SECTION — MEAT / PARRILLA
────────────────────────────────────────────────────── */
.section--meat {
  background: var(--c-void);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.meat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.meat-card {
  margin: 0;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.meat-card__btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.meat-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.meat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.meat-card:hover .meat-card__media img { transform: scale(1.05); }

.meat-card__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,4,3,0.92) 0%, transparent 50%);
  pointer-events: none;
}

.meat-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px 24px;
  z-index: 2;
}

.meat-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 4px;
}
.meat-card__meta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
}

/* ──────────────────────────────────────────────────────
   SECTION — MENU
────────────────────────────────────────────────────── */
.section--menu { background: var(--c-ash); }

.menu-section { margin-top: 0; }

/* Digital menu grid (JS-rendered) */
.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-grid .category-header {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-cream);
  padding: 32px 0 14px;
  border-bottom: 1px solid var(--c-border);
  margin-top: 8px;
}

.menu-grid .menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(192,144,64,0.09);
}

.menu-grid .menu-item__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-cream);
  margin-bottom: 4px;
}
.menu-grid .menu-item__desc {
  font-size: 0.82rem;
  color: var(--c-dim);
  line-height: 1.55;
}
.menu-grid .menu-item__allergens {
  font-size: 0.7rem;
  color: var(--c-gold);
  margin-top: 5px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.menu-grid .menu-item__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-gold-lt);
  white-space: nowrap;
  align-self: start;
  padding-top: 2px;
}
.menu-grid .menu-item__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-fire);
  border: 1px solid rgba(184,44,16,0.35);
  border-radius: 999px;
  padding: 3px 8px;
  margin-top: 6px;
  width: fit-content;
}

/* Category tabs */
.menu-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.menu-cat-btn {
  font-family: var(--font-body);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-chalk);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.menu-cat-btn:hover,
.menu-cat-btn.is-active {
  background: var(--c-fire);
  border-color: var(--c-fire);
  color: var(--c-cream);
}

/* Allergen legend */
.menu__legend {
  margin-top: 28px;
  padding: 14px 18px;
  background: rgba(36,26,16,0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}
.menu__legend-text {
  font-size: 0.78rem;
  color: var(--c-dim);
  line-height: 1.6;
}

/* Menu image pages (photo of printed menu) */
.menu-pages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.menu-page {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: border-color var(--t-mid), box-shadow var(--t-mid), transform var(--t-mid);
  cursor: zoom-in;
  text-decoration: none;
}
.menu-page:hover {
  border-color: var(--c-border-h);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}
.menu-img { width: 100%; height: auto; display: block; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,4,3,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(22,17,9,0.85);
  border: 1px solid var(--c-border);
  color: var(--c-wheat);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  z-index: 1;
}
.lightbox__close:hover { background: var(--c-fire); border-color: var(--c-fire); }

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22,17,9,0.75);
  border: 1px solid var(--c-border);
  color: var(--c-wheat);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  z-index: 1;
}
.lightbox__nav:hover { background: var(--c-fire); border-color: var(--c-fire); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

.lightbox__figure { margin: 0; max-width: 90vw; max-height: 90vh; }
.lightbox__img { max-width: 100%; max-height: 90vh; border-radius: var(--r-md); object-fit: contain; }

/* ──────────────────────────────────────────────────────
   GALLERY
────────────────────────────────────────────────────── */
.section--gallery { background: var(--c-coal); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(8px, 1.2vw, 14px);
  margin-top: 8px;
}
@media (min-width: 600px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery__item {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.gallery__item:hover {
  transform: scale(1.025);
  z-index: 1;
  box-shadow: var(--shadow-card);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.07); filter: brightness(1.07); }

/* Gallery filters (injected by JS) */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
}
.gallery__filter {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-chalk);
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.gallery__filter:hover { border-color: var(--c-fire); color: var(--c-cream); }
.gallery__filter[aria-selected="true"],
.gallery__filter.is-active {
  background: var(--c-fire);
  border-color: var(--c-fire);
  color: var(--c-cream);
}

/* ──────────────────────────────────────────────────────
   EVENTS
────────────────────────────────────────────────────── */
.section--events { background: var(--c-ash); }

.event {
  background: var(--c-coal);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.event:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--c-border-h);
  transform: translateY(-4px);
}

.event__media { aspect-ratio: 16/9; overflow: hidden; }
.event__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.event:hover .event__media img { transform: scale(1.04); }

.event__body {
  padding: clamp(20px, 3vw, 32px);
  position: relative;
}

.event__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 8px;
}

.event__text {
  font-size: 0.88rem;
  color: var(--c-chalk);
  line-height: 1.7;
}

.event__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-fire);
  color: var(--c-cream);
  border-radius: 999px;
  padding: 4px 10px;
  position: absolute;
  top: -14px;
  left: 20px;
}

.event__date {
  font-size: 0.8rem;
  color: var(--c-gold-lt);
  margin-top: 10px;
  font-weight: 600;
}

/* ──────────────────────────────────────────────────────
   CONTACT
────────────────────────────────────────────────────── */
.section--contact { position: relative; }
.section--contact .section__overlay {
  background: linear-gradient(160deg, rgba(5,4,3,0.88) 0%, rgba(5,4,3,0.8) 100%);
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 72px);
}
@media (min-width: 760px) {
  .contact { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact__details { display: flex; flex-direction: column; gap: 28px; }

.contact__heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 10px;
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__list li {
  font-size: 0.9rem;
  color: var(--c-chalk);
}

.contact__text {
  font-size: 0.9rem;
  color: var(--c-chalk);
  line-height: 1.85;
}

.link { transition: color var(--t-fast); }
.link--invert { color: var(--c-wheat); text-decoration-color: var(--c-border); }
.link--invert:hover { color: var(--c-gold-lt); text-decoration-color: var(--c-gold-lt); }

.contact__whatsapp-btn {
  margin-top: 8px;
  align-self: start;
  padding: 14px 28px;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 10px;
}

/* Reservation form */
.form {
  background: rgba(22,17,9,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 40px);
}

.form__fieldset { border: none; padding: 0; }

.form__legend {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 24px;
  display: block;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 460px) { .form__grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }

.field__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-dim);
}

.field__control {
  background: rgba(36,26,16,0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
}
.field__control:focus {
  outline: none;
  border-color: var(--c-fire);
  box-shadow: 0 0 0 3px rgba(184,44,16,0.2);
}
.field__control:hover { border-color: var(--c-border-h); }
.field__control::placeholder { color: var(--c-ghost); }

.form__note {
  font-size: 0.8rem;
  color: var(--c-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: rgba(192,144,64,0.07);
  border: 1px solid rgba(192,144,64,0.15);
  border-radius: var(--r-sm);
}

/* ──────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────── */
.footer {
  background: var(--c-void);
  border-top: 1px solid var(--c-border);
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(28px, 4vw, 44px);
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(32px, 5vw, 52px);
  margin-bottom: clamp(36px, 5vw, 52px);
}

@media (min-width: 860px) {
  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.footer__brand {}

.footer__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-cream);
  margin-bottom: 8px;
}

.footer__tagline, .footer__text {
  font-size: 0.84rem;
  color: var(--c-dim);
  line-height: 2;
}

.footer__heading {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 14px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--c-ghost);
  margin-top: 12px;
  border-top: 1px solid rgba(192,144,64,0.1);
  padding-top: 28px;
}

/* ──────────────────────────────────────────────────────
   WHATSAPP FLOATING WIDGET
────────────────────────────────────────────────────── */
.ec-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
}

.ec-wa__fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--grad-wa);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 2px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.85);
  transition: all var(--t-mid);
}
.ec-wa__fab.is-visible { opacity: 1; transform: scale(1); }
.ec-wa__fab:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.55); }

.ec-wa__fab-icon { width: 28px; height: 28px; }

.ec-wa__bubble {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--c-coal);
  border: 1px solid var(--c-border);
  color: var(--c-wheat);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-md) var(--r-md) 0 var(--r-md);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}

.ec-wa__panel {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: clamp(280px, 90vw, 360px);
  background: var(--c-coal);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--t-mid);
  transform-origin: bottom right;
}
.ec-wa__panel[aria-hidden="true"]  { opacity: 0; transform: scale(0.92) translateY(12px); pointer-events: none; }
.ec-wa__panel[aria-hidden="false"] { opacity: 1; transform: scale(1) translateY(0); }

.ec-wa__header {
  background: var(--c-wa-dark);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ec-wa__title-wrap {}
.ec-wa__title { font-weight: 700; font-size: 0.95rem; color: #fff; }
.ec-wa__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-top: 3px;
}
.ec-wa__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #90e47a;
  box-shadow: 0 0 5px #90e47a;
  flex-shrink: 0;
}
.ec-wa__close {
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}
.ec-wa__close:hover { background: rgba(255,255,255,0.32); }

.ec-wa__messages {
  min-height: 80px;
  max-height: 200px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.ec-wa__message {
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 2px;
  background: rgba(36,26,16,0.8);
  border: 1px solid var(--c-border);
  color: var(--c-wheat);
  max-width: 90%;
}

.ec-wa__composer {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--c-border);
}
.ec-wa__input {
  flex: 1;
  background: rgba(36,26,16,0.7);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 9px 14px;
  transition: border-color var(--t-fast);
}
.ec-wa__input:focus { outline: none; border-color: var(--c-wa); }

.ec-wa__send {
  background: var(--c-wa-dark);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 16px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
}
.ec-wa__send:hover:not(:disabled) { background: var(--c-wa); }
.ec-wa__send:disabled { opacity: 0.45; cursor: default; }

.ec-wa__meta {
  padding: 10px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ec-wa__reset {
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-dim);
  font-size: 0.74rem;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  cursor: pointer;
  width: fit-content;
  transition: all var(--t-fast);
}
.ec-wa__reset:hover { border-color: var(--c-border-h); color: var(--c-chalk); }

.ec-wa__hint {
  font-size: 0.72rem;
  color: var(--c-ghost);
  line-height: 1.5;
}

/* ──────────────────────────────────────────────────────
   MOBILE NAVIGATION (≤ 1023px)
────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: var(--c-coal);
    border-left: 1px solid var(--c-border);
    z-index: 999;
    padding: calc(var(--header-h) + 20px) 24px 40px;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    box-shadow: -12px 0 60px rgba(0,0,0,0.55);
  }
  .site-nav[aria-hidden="false"] { transform: translateX(0); }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav__link {
    font-size: 1.05rem;
    padding: 14px 16px;
    display: block;
  }
  .site-nav__link::after { display: none; }
  .site-nav__link--cta {
    margin-top: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    text-align: center;
  }

  /* Backdrop */
  .site-nav[aria-hidden="false"]::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }
}

/* ──────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .hero__title { font-size: clamp(3rem, 14vw, 5.5rem); }
  .hero__info  { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .ec-wa { bottom: 16px; right: 16px; }
  .form__grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────
   UTILS
────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.page { overflow-x: hidden; }
.page__main { padding-top: var(--header-h); }
