/* ============================================================
   Chelo's Burgers — Indio, CA
   Brand: warm, friendly, food-forward. Red + Gold.
   Fonts: Baloo 2 (display) · Pacifico (script accent) · Karla (body)
   ============================================================ */

:root {
  /* Brand palette (from logo) */
  --red:        #D11F26;
  --red-dark:   #A3121A;
  --red-deep:   #7A0C12;
  --gold:       #F8B500;
  --gold-light: #FFD23F;
  --gold-soft:  #FFE9A8;
  --cream:      #FFF8EE;
  --cream-2:    #FBEFDD;
  --ink:        #2A1A12;
  --ink-soft:   #5A453a;
  --charcoal:   #1A120D;
  --white:      #ffffff;

  /* Roles */
  --bg:         var(--cream);
  --text:       var(--ink);
  --muted:      var(--ink-soft);

  /* Type */
  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-script:  "Pacifico", cursive;
  --font-body:    "Karla", system-ui, -apple-system, sans-serif;

  /* Spacing & shape */
  --radius:     18px;
  --radius-lg:  28px;
  --radius-pill: 999px;
  --shadow-sm:  0 4px 14px rgba(42,26,18,.10);
  --shadow:     0 14px 40px rgba(42,26,18,.16);
  --shadow-lg:  0 30px 70px rgba(42,26,18,.26);
  --container:  1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  /* z-index scale */
  --z-nav: 50;
  --z-overlay: 80;
  --z-lightbox: 100;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.script { font-family: var(--font-script); font-weight: 400; color: var(--red); letter-spacing: .5px; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--gold); }

.section-title { font-size: clamp(2rem, 5vw, 3.3rem); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.grid { display: grid; gap: 1.6rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  box-shadow: 0 10px 22px rgba(209,31,38,.28);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(209,31,38,.36); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--ink); box-shadow: 0 10px 22px rgba(248,181,0,.34); }
.btn--gold:hover { box-shadow: 0 16px 30px rgba(248,181,0,.45); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 2px #fff; }
.btn--ink { --btn-bg: var(--ink); --btn-fg: #fff; box-shadow: 0 10px 22px rgba(42,26,18,.3); }
.btn--lg { padding: 1rem 2rem; font-size: 1.08rem; }

/* ============================================================
   Top announcement bar
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: #fff; font-size: .86rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; padding-block: .35rem; }
.topbar p { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.topbar .gold-dot { color: var(--gold-light); }
.topbar a { font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--gold-light); }
.topbar .lang { display: inline-flex; gap: .15rem; align-items: center; }
.lang-btn { color: rgba(255,255,255,.7); font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: .15rem .45rem; border-radius: 6px; transition: color .2s, background .2s; }
.lang-btn.active { color: var(--ink); background: var(--gold-light); }
.topbar .topbar-hide-sm { }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(255,248,238,.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42,26,18,.06);
  transition: box-shadow .3s var(--ease), background .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 8px 30px rgba(42,26,18,.12); background: rgba(255,248,238,.96); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .6rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img { height: 52px; width: auto; transition: height .3s var(--ease); }
.nav.scrolled .brand img { height: 44px; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: .5rem .85rem; border-radius: var(--radius-pill); color: var(--ink);
  position: relative; transition: color .2s, background .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%) scaleX(0);
  width: 18px; height: 3px; border-radius: 3px; background: var(--gold); transition: transform .25s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: translateX(-50%) scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--ink); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2.5px; background: #fff; border-radius: 3px; transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(7px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* Mobile topbar: hide the redundant phone (it's in the hero, nav drawer,
   footer & contact) so the announcement + language toggle sit on one tidy row. */
@media (max-width: 600px) {
  .topbar { font-size: .82rem; }
  .topbar .container { gap: .7rem; }
  .topbar a[href^="tel:"] { display: none; }
}

@media (max-width: 900px) {
  /* backdrop-filter creates a containing block that traps position:fixed children.
     Remove it at mobile so the drawer + backdrop anchor to the viewport. */
  .nav, .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: var(--cream); padding: 6rem 1.5rem 2rem; z-index: var(--z-overlay);
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; padding: .8rem 1rem; }
  .nav-links a::after { display: none; }
  .nav .desktop-cta { display: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(26,18,13,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: var(--z-nav); }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-in-out infinite alternate; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(26,18,13,.92) 0%, rgba(122,12,18,.6) 45%, rgba(26,18,13,.25) 100%),
    linear-gradient(0deg, rgba(26,18,13,.55), rgba(26,18,13,0) 55%);
}
@keyframes kenburns { from { transform: scale(1.04) translate(0,0); } to { transform: scale(1.16) translate(-2%, -2%); } }
.hero__inner { padding: clamp(4rem, 12vh, 9rem) 0 clamp(4rem, 10vh, 7rem); max-width: 660px; }
.hero h1 { font-size: clamp(2.7rem, 7vw, 5rem); color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,.4); }
.hero h1 .script { display: block; color: var(--gold-light); font-size: .55em; margin-bottom: -.1em; text-shadow: 0 3px 16px rgba(0,0,0,.4); }
.hero p.lead { color: rgba(255,255,255,.92); margin-top: 1.2rem; font-size: 1.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.4rem; }
.hero__badge { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .96rem; }
.hero__badge svg { width: 26px; height: 26px; color: var(--gold-light); flex: none; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.3rem; transform: translateX(-50%); color: rgba(255,255,255,.7); display: grid; place-items: center; gap: .3rem; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 7px; background: var(--gold-light); border-radius: 3px; transform: translateX(-50%); animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* page hero (sub pages) */
.pagehead { position: relative; color: #fff; text-align: center; padding: clamp(3.5rem, 9vh, 6rem) 0 clamp(3rem, 7vh, 5rem); isolation: isolate; overflow: hidden; }
.pagehead__media { position: absolute; inset: 0; z-index: -2; }
.pagehead__media img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(122,12,18,.78), rgba(26,18,13,.8)); }
.pagehead h1 { font-size: clamp(2.4rem, 6vw, 4rem); color: #fff; }
.pagehead p { color: rgba(255,255,255,.9); max-width: 56ch; margin: .9rem auto 0; font-size: 1.12rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.75); margin-bottom: .8rem; font-family: var(--font-display); font-weight: 600; letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   Marquee (specials ticker)
   ============================================================ */
.marquee { background: var(--gold); color: var(--ink); overflow: hidden; border-block: 4px solid var(--ink); }
.marquee__track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 26s linear infinite; padding: .7rem 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 1rem; display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee span::after { content: "★"; color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Feature cards (home — categories)
   ============================================================ */
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.fcard {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow); isolation: isolate;
}
.fcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.fcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(26,18,13,.9) 0%, rgba(26,18,13,.2) 55%, rgba(26,18,13,0) 100%); }
.fcard:hover img { transform: scale(1.08); }
.fcard__body { padding: 1.5rem; }
.fcard h3 { color: #fff; font-size: 1.6rem; }
.fcard p { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: .25rem; }
.fcard .tag { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .75rem; padding: .3rem .7rem; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .05em; z-index: 1; }

/* ============================================================
   Split / about teaser
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__media .float-badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem;
  border: 3px solid var(--gold);
}
.float-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--red); line-height: 1; }
.float-badge small { display: block; font-size: .78rem; color: var(--muted); font-weight: 600; }
.checklist { margin-top: 1.4rem; display: grid; gap: .7rem; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; font-weight: 500; }
.checklist svg { width: 24px; height: 24px; color: var(--red); flex: none; margin-top: 1px; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--rev { direction: ltr; }
  .split__media { order: -1; }
}

/* ============================================================
   Stats strip
   ============================================================ */
.stats { background: var(--ink); color: #fff; }
.stats .grid { grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); text-align: center; gap: 1rem; }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-light); line-height: 1; }
.stat p { color: rgba(255,255,255,.78); font-weight: 600; margin-top: .3rem; letter-spacing: .02em; }

/* ============================================================
   Menu page
   ============================================================ */
.menu-tabs { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.5rem; }
.menu-tab {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; padding: .6rem 1.15rem;
  border-radius: var(--radius-pill); background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm);
  transition: background .25s, color .25s, transform .25s;
}
.menu-tab:hover { transform: translateY(-2px); }
.menu-tab.active { background: var(--red); color: #fff; box-shadow: 0 8px 18px rgba(209,31,38,.3); }

.menu-note { text-align: center; color: var(--muted); font-size: .92rem; margin-bottom: 2.2rem; }
.menu-cat { margin-bottom: 3.2rem; scroll-margin-top: 120px; }
.menu-cat__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.6rem; }
.menu-cat__head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); white-space: nowrap; }
.menu-cat__head .line { height: 3px; background: linear-gradient(90deg, var(--gold), transparent); flex: 1; border-radius: 3px; }

.menu-items { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.2rem; }
.mitem {
  display: flex; gap: 1rem; background: var(--white); border-radius: var(--radius); padding: .85rem;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.mitem:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mitem img { width: 96px; height: 96px; border-radius: 14px; object-fit: cover; flex: none; }
.mitem__body { display: flex; flex-direction: column; }
.mitem h3 { font-size: 1.15rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.mitem .pill { font-family: var(--font-body); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--gold-soft); color: var(--red-dark); padding: .12rem .5rem; border-radius: var(--radius-pill); }
.mitem p { font-size: .9rem; color: var(--muted); margin-top: .2rem; }

/* ---- Full menu: category body + dish lists ---- */
.menu-cat__body { display: grid; grid-template-columns: 300px 1fr; gap: 1.6rem 2.6rem; align-items: start; }
.menu-cat__body.no-feature { grid-template-columns: 1fr; }
.menu-cat__feature { position: sticky; top: 100px; }
.menu-cat__feature img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.menu-cat__feature figcaption { text-align: center; font-family: var(--font-display); font-weight: 600; color: var(--muted); font-size: .82rem; margin-top: .55rem; }

.dish-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); column-gap: 2.6rem; row-gap: 0; align-content: start; }
.dish { padding: .7rem 0; border-bottom: 1px dashed rgba(42,26,18,.16); }
.dish__top { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.dish h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--ink); }
.dish .pill { font-family: var(--font-body); font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; background: var(--gold-soft); color: var(--red-dark); padding: .1rem .5rem; border-radius: var(--radius-pill); }
.dish p { font-size: .86rem; color: var(--muted); margin-top: .15rem; line-height: 1.5; }

@media (max-width: 760px) {
  .menu-cat__body { grid-template-columns: 1fr; }
  .menu-cat__feature { position: static; max-width: 300px; }
  .menu-cat__feature img { aspect-ratio: 16/10; }
}

/* ---- Printed menu (real photos) ---- */
.printed-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.printed-menu figure { margin: 0; border: 6px solid #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; position: relative; }
.printed-menu img { width: 100%; transition: transform .5s var(--ease); }
.printed-menu figure:hover img { transform: scale(1.04); }
.printed-menu .zoom-ico { position: absolute; top: .7rem; right: .7rem; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transition: opacity .3s; }
.printed-menu .zoom-ico svg { width: 18px; height: 18px; color: var(--red); }
.printed-menu figure:hover .zoom-ico { opacity: 1; }
@media (max-width: 700px) { .printed-menu { grid-template-columns: 1fr; } }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { columns: 3 260px; column-gap: 1rem; }
.gallery figure { break-inside: avoid; margin: 0 0 1rem; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; transition: transform .6s var(--ease); }
.gallery figure::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(122,12,18,.55), rgba(0,0,0,0) 60%);
  opacity: 0; transition: opacity .35s;
}
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem 1rem; color: #fff; z-index: 1;
  font-family: var(--font-display); font-weight: 700; transform: translateY(8px); opacity: 0; transition: transform .35s, opacity .35s;
}
.gallery figure:hover img { transform: scale(1.07); }
.gallery figure:hover::after { opacity: 1; }
.gallery figure:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery .zoom-ico { position: absolute; top: .8rem; right: .8rem; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .3s, transform .3s; z-index: 1; }
.gallery .zoom-ico svg { width: 18px; height: 18px; color: var(--red); }
.gallery figure:hover .zoom-ico { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(15,9,6,.92); display: grid; place-items: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); transform: scale(.92); transition: transform .35s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox__cap { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-display); font-weight: 600; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 1.2rem; }
.lightbox__nav.next { right: 1.2rem; }
.lightbox__nav svg, .lightbox__close svg { width: 24px; height: 24px; }
@media (max-width: 640px) { .gallery { columns: 2 150px; } .lightbox__nav { width: 44px; height: 44px; } }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.2rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid rgba(42,26,18,.08); }
.info-row:last-child { border-bottom: none; }
.info-row .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--gold-soft); display: grid; place-items: center; flex: none; }
.info-row .ico svg { width: 22px; height: 22px; color: var(--red); }
.info-row h4 { font-size: 1.05rem; }
.info-row p, .info-row a { color: var(--muted); font-size: .96rem; }
.info-row a:hover { color: var(--red); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .5rem 0; border-bottom: 1px dashed rgba(42,26,18,.12); font-size: .96rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; font-weight: 700; font-family: var(--font-display); }
.hours-table .today { color: var(--red); }
.hours-table .today td:first-child::before { content: "● "; color: var(--gold); }

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .92rem; }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; padding: .8rem 1rem; border-radius: 12px;
  border: 2px solid rgba(42,26,18,.12); background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(209,31,38,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-success { display: none; background: #E8F6EC; border: 2px solid #62C285; color: #1F7A41; padding: 1rem 1.2rem; border-radius: 12px; font-weight: 600; }
.form-success.show { display: block; animation: pop .4s var(--ease); }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 0; width: 100%; aspect-ratio: 16/10; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; color: #fff; text-align: center; isolation: isolate; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, var(--red-deep), var(--red)); }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .14; background-image: radial-gradient(circle at 20% 30%, #fff 2px, transparent 3px), radial-gradient(circle at 70% 60%, #fff 2px, transparent 3px); background-size: 60px 60px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 50ch; margin: 1rem auto 1.8rem; }
.cta-band .btn--gold { box-shadow: 0 14px 30px rgba(0,0,0,.25); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--charcoal); color: rgba(255,255,255,.78); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer .grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer h4 { color: #fff; font-size: 1.15rem; margin-bottom: 1rem; }
.footer a:hover { color: var(--gold-light); }
.footer__brand img { height: 70px; background: #fff; padding: .4rem .6rem; border-radius: 14px; margin-bottom: 1rem; }
.footer__links { display: grid; gap: .55rem; }
.footer__contact li { display: flex; gap: .6rem; margin-bottom: .7rem; align-items: flex-start; }
.footer__contact svg { width: 20px; height: 20px; color: var(--gold-light); flex: none; margin-top: 2px; }
.socials { display: flex; gap: .7rem; margin-top: 1rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--red); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding: 1.4rem 0; font-size: .85rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; }
.footer__bottom a { color: var(--gold-light); }
@media (max-width: 760px) { .footer .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer .grid { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* Lang visibility — !important so toggle beats component display rules
   (e.g. .float-badge small{display:block}); revert keeps each element's
   natural display (block for h1/p, inline for span, flex-item in flex parents). */
[data-lang-es] { display: none !important; }
html[lang="es"] [data-lang-en] { display: none !important; }
html[lang="es"] [data-lang-es] { display: revert !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero__media img { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
