/* =============================================================================
   styles.css — Tortillería Río Grande (bilingual restaurant kit, build #2)
   Masa/corn palette. Contrast-checked: body text is comal brown on masa cream
   (AA+); gold is used only for fills/accents with dark text, never as text on
   cream. Reskin by editing the :root palette + fonts.
   ========================================================================== */

:root {
  /* ---- Palette (mirror of data.js theme) ---- */
  --masa:       #fbf3df;   /* warm corn-cream base */
  --masa-deep:  #f3e7c8;   /* shaded cream         */
  --maize:      #e3a82b;   /* golden maize accent  */
  --guajillo:   #b3331f;   /* chile red — primary  */
  --oxblood:    #7c1d12;   /* deep chile           */
  --nopal:      #5c7348;   /* cactus green         */
  --comal:      #2b2017;   /* dark roast brown text */

  --ink:        #2b2017;   /* body text (comal)    */
  --ink-soft:   #6a5644;   /* muted body text      */
  --line:       rgba(124,29,18,.16);

  /* ---- Type ---- */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  /* ---- Space & form ---- */
  --r:   14px;
  --r-lg: 22px;
  --shadow: 0 18px 40px -18px rgba(43,32,23,.45);
  --shadow-sm: 0 6px 18px -10px rgba(43,32,23,.4);
  --maxw: 1120px;
  --header-h: 64px;

  --papel-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='100'%3E%3Cpath d='M0 0 H80 V40 Q60 38 60 58 Q40 78 20 58 Q20 38 0 40 Z' fill='black'/%3E%3Ccircle cx='40' cy='30' r='6' fill='white'/%3E%3Ccircle cx='22' cy='22' r='3' fill='white'/%3E%3Ccircle cx='58' cy='22' r='3' fill='white'/%3E%3C/svg%3E");
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 18px); }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--masa);
  line-height: 1.55;
  scroll-padding-top: calc(var(--header-h) + 12px);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(227,168,43,.20), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(179,51,31,.10), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
:focus-visible { outline: 2px solid var(--guajillo); outline-offset: 2px; border-radius: 4px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .8rem 1.3rem; border-radius: 999px; min-height: 46px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn .ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--guajillo); color: #fff5e9; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #c93c25; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--oxblood); border-color: var(--oxblood); }
.btn-ghost:hover { background: var(--oxblood); color: #fff5e9; transform: translateY(-2px); }
.btn-call { background: var(--maize); color: var(--comal); }
.btn-call:hover { background: #f0b942; transform: translateY(-2px); }
.btn-sm { padding: .55rem .9rem; min-height: 40px; font-size: .86rem; }

/* =============================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0 clamp(1rem, 4vw, 2.25rem);
  background: rgba(251,243,223,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(43,32,23,.5); }
.brand { display: flex; align-items: center; line-height: 1.05; min-width: 0; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--oxblood); }
.site-header .brand-name { font-size: clamp(.95rem, 3.6vw, 1.2rem); white-space: nowrap; } /* one line, fits */
.brand-accent { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--guajillo); font-weight: 700; margin-top: 3px; }
.header-meta { display: flex; align-items: center; gap: 1rem; }
.header-jump { font-weight: 600; font-size: .9rem; color: var(--oxblood); padding: .4rem .2rem; border-bottom: 2px solid transparent; transition: border-color .15s ease; }
.header-jump:hover { border-color: var(--maize); }
.header-call { padding: .55rem 1rem; font-size: .88rem; min-height: 40px; }

/* hamburger (mobile only) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 40px; padding: 0 10px; background: transparent; border: 0; cursor: pointer; }
.nav-toggle span { display: block; height: 2.5px; background: var(--oxblood); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.mobile-nav { position: fixed; top: var(--header-h); right: 10px; left: 10px; z-index: 49; background: var(--masa); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: .6rem; display: flex; flex-direction: column; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: .9rem 1rem; font-weight: 700; color: var(--oxblood); border-radius: 12px; min-height: 48px; display: flex; align-items: center; }
.mobile-nav a:hover, .mobile-nav a:active { background: var(--masa-deep); }
/* match the persistent bottom call bar: full pill + phone icon + number */
.mobile-nav .mobile-nav-call { background: var(--guajillo); color: #fff5e9; justify-content: center; gap: .55rem; border-radius: 999px; margin-top: .45rem; font-size: 1rem; }
.mobile-nav .mobile-nav-call .ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* language toggle (accessible segmented control) */
.lang-toggle { display: inline-flex; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.4); }
.lang-btn { font: inherit; font-weight: 700; font-size: .76rem; letter-spacing: .04em; padding: .35rem .62rem; min-height: 36px; background: transparent; color: var(--ink-soft); border: 0; cursor: pointer; transition: background .15s ease, color .15s ease; }
.lang-btn.active { background: var(--oxblood); color: var(--masa); }
.lang-btn:not(.active):hover { color: var(--oxblood); }

/* =============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1rem, 4vw, 2.25rem) clamp(2.6rem, 6vw, 4.5rem); text-align: center; }
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow { color: var(--guajillo); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; }
.hero-eyebrow:empty { display: none; }
.hero-title { margin: .5rem 0 .9rem; }
.hero-title-main { display: block; color: var(--oxblood); font-size: clamp(2.9rem, 11vw, 6.2rem); font-weight: 800; letter-spacing: -.025em; text-shadow: 2px 3px 0 var(--masa-deep); }
.hero-sub { text-align: center; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .22em; font-size: clamp(.66rem, 2.2vw, .82rem); color: var(--guajillo); margin: -.1rem 0 .9rem; }
.hero-tagline { color: var(--ink-soft); font-size: clamp(1.02rem, 2.4vw, 1.22rem); max-width: 600px; margin: 0 auto 1.3rem; }

.hero-trust { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-badge, .hero-stars { display: inline-flex; align-items: center; gap: .45rem; background: var(--masa-deep); border: 1px solid var(--line); padding: .4rem .85rem; border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--comal); }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--nopal); animation: pulse 2.4s infinite; }
.hero-badge.closed .dot { background: var(--guajillo); animation: none; }
.hero-stars { text-decoration: none; cursor: pointer; }
.hero-stars:hover { border-color: var(--maize); }
.hero-stars .star { color: var(--maize); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(92,115,72,.55)} 70%{box-shadow:0 0 0 8px rgba(92,115,72,0)} 100%{box-shadow:0 0 0 0 rgba(92,115,72,0)} }
/* Equal, language-stable widths: buttons size from flex-basis, not text length,
   so the layout doesn't reflow when EN↔ES changes the label length. */
.hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn { flex: 1 1 13rem; max-width: 22rem; }

.hero-showcase { position: relative; z-index: 2; max-width: var(--maxw); margin: clamp(2rem,5vw,3.2rem) auto 0; padding: 0 clamp(1rem,4vw,2.25rem); }
.hero-showcase img { width: 100%; height: clamp(220px, 40vw, 440px); object-fit: cover; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }

.papel {
  position: absolute; top: 0; left: 0; right: 0; height: 44px; z-index: 1;
  background: repeating-linear-gradient(90deg, var(--guajillo) 0 40px, var(--maize) 40px 80px, var(--nopal) 80px 120px, var(--oxblood) 120px 160px);
  -webkit-mask: var(--papel-mask); mask: var(--papel-mask);
  -webkit-mask-size: 80px 100%; mask-size: 80px 100%;
  opacity: .92; filter: drop-shadow(0 4px 4px rgba(43,32,23,.18));
}

/* =============================================================================
   SECTION SHELL
   ========================================================================== */
section { scroll-margin-top: 0; } /* offset handled once, by html scroll-padding-top */
.section-head { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem,4vw,2.25rem); text-align: center; }
.kicker { display: inline-block; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--guajillo); font-size: .78rem; }
.section-head h2 { font-size: clamp(2rem, 6vw, 3rem); color: var(--oxblood); margin: .25rem 0 .5rem; }
.section-sub { color: var(--ink-soft); max-width: 540px; margin: 0 auto; }

/* =============================================================================
   PILLARS (two equal: eat with us / fresh tortillas & bulk)
   ========================================================================== */
.pillars { padding: clamp(2.6rem,6vw,4rem) 0 clamp(1rem,3vw,1.5rem); }
.pillars-grid { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem,4vw,2.25rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.pillar-card { background: #fffaf0; border: 1px solid var(--line); border-top: 4px solid var(--maize); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.pillar-card:nth-child(2) { border-top-color: var(--nopal); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-img { width: 100%; height: 200px; object-fit: cover; }
.pillar-text { padding: 1.5rem 1.6rem 1.7rem; }
.pillar-kicker { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--guajillo); }
.pillar-card:nth-child(2) .pillar-kicker { color: var(--nopal); }
.pillar-card h3 { font-size: 1.7rem; color: var(--oxblood); margin: .35rem 0 .5rem; }
.pillar-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 1rem; }
.pillar-cta { font-weight: 700; color: var(--guajillo); }

/* =============================================================================
   MENU
   ========================================================================== */
.menu { padding: clamp(3rem,7vw,5rem) 0; background: linear-gradient(var(--masa-deep), var(--masa-deep)); background-blend-mode: multiply; }
.menu-nav { max-width: var(--maxw); margin: 1.8rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.menu-nav a { font-weight: 600; font-size: .88rem; color: var(--oxblood); padding: .5rem 1rem; min-height: 40px; display: inline-flex; align-items: center; border-radius: 999px; border: 1.5px solid var(--line); background: rgba(255,255,255,.55); transition: all .18s ease; }
.menu-nav a:hover, .menu-nav a.active { background: var(--oxblood); color: #fff5e9; border-color: var(--oxblood); }
.menu-categories { max-width: var(--maxw); margin: 2.4rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); display: grid; gap: 2.6rem; }
.menu-cat h3 { font-size: 1.7rem; color: var(--oxblood); margin-bottom: 1rem; position: relative; display: inline-block; }
.menu-cat h3::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; background: var(--maize); border-radius: 2px; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: .35rem 2.6rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: .4rem; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.mi-main { min-width: 0; }
.mi-name { font-weight: 600; color: var(--ink); }
.mi-desc { display: block; font-size: .84rem; color: var(--ink-soft); margin-top: 1px; }
.mi-price { font-family: var(--font-display); font-weight: 700; color: var(--guajillo); white-space: nowrap; }
.mi-price::before { content: "$"; font-size: .82em; margin-right: 1px; }

/* =============================================================================
   ORDER AHEAD (honest: live button OR intentional coming-soon card)
   ========================================================================== */
.order { padding: clamp(2rem,5vw,3.5rem) clamp(1rem,4vw,2.25rem); }
.order-card { max-width: 680px; margin: 0 auto; text-align: center; background: #fffaf0; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.8rem,4vw,2.6rem); box-shadow: var(--shadow-sm); position: relative; }
.order-card.soon { background: linear-gradient(180deg, #fffaf0, var(--masa)); border-style: dashed; }
.order-card h2 { font-size: clamp(1.8rem,4vw,2.4rem); color: var(--oxblood); margin: .3rem 0 .6rem; }
.order-card p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 1.2rem; }
.order-soon-tag { display: inline-block; background: var(--maize); color: var(--comal); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; }

/* =============================================================================
   CATERING / TORTILLAS & BULK
   ========================================================================== */
.catering { padding: clamp(3rem,7vw,5rem) 0; }
.catering-photo { max-width: 880px; margin: 1.8rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); }
.catering-photo img { width: 100%; height: clamp(200px, 34vw, 360px); object-fit: cover; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.catering-body { max-width: 720px; margin: 1.4rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); text-align: center; }
.catering-blurb { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 1.4rem; }
.catering-points { list-style: none; display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.6rem; }
.catering-points li { background: var(--masa-deep); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-size: .9rem; font-weight: 600; color: var(--comal); }
.catering-points li::before { content: "✶ "; color: var(--maize); }

/* =============================================================================
   LOCATIONS & HOURS
   ========================================================================== */
.locate { padding: clamp(3rem,7vw,5rem) 0; }
.locate-grid { max-width: var(--maxw); margin: 1.8rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.loc-card { background: #fffaf0; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-card.is-primary { border-color: var(--maize); border-width: 1.5px; }
.loc-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
.loc-head h3 { font-size: 1.3rem; color: var(--oxblood); }
.loc-tag { font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--maize); color: var(--comal); padding: .2rem .5rem; border-radius: 999px; }
.loc-addr { font-style: normal; color: var(--ink-soft); line-height: 1.5; }
.loc-phone { font-weight: 700; color: var(--comal); margin-top: .4rem; }
.loc-actions { display: flex; gap: .5rem; margin-top: auto; padding-top: 1rem; }
.loc-actions .btn { flex: 1 1 0; min-width: 0; } /* equal halves, stable across EN/ES */
.hours-wrap { max-width: 540px; margin: 2.4rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); }
.hours-head { text-align: center; color: var(--oxblood); font-size: 1.25rem; margin-bottom: .8rem; }
.hours-list { list-style: none; border-top: 1px solid var(--line); }
.hours-list li { display: flex; justify-content: space-between; align-items: baseline; padding: .6rem .2rem; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours-list .hl-day { font-weight: 600; color: var(--ink); }
.hours-list .hl-time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-list li.is-today { background: linear-gradient(90deg, rgba(227,168,43,.22), transparent); border-radius: 8px; padding-left: .6rem; }
.hours-list li.is-today .hl-day { color: var(--oxblood); }
.hours-list .hl-closed { color: var(--guajillo); font-weight: 600; }
.hours-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: .8rem; font-style: italic; }

/* ---- Location switcher (tabs on desktop, dropdown on mobile) ---- */
.loc-switcher { max-width: 640px; margin: 1.4rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); }
.loc-tabs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }
.loc-tab { font: inherit; font-weight: 700; font-size: .9rem; cursor: pointer; padding: .6rem 1.15rem; min-height: 44px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--paper); color: var(--oxblood); transition: background .15s ease, color .15s ease, border-color .15s ease; }
.loc-tab:hover { border-color: var(--maize); }
.loc-tab.active { background: var(--oxblood); color: var(--masa); border-color: var(--oxblood); }
.loc-select { display: none; width: 100%; font: inherit; font-size: 1rem; padding: .75rem .8rem; min-height: 48px; border-radius: 10px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); }
.loc-active { max-width: 560px; margin: 1.3rem auto 0; padding: 0 clamp(1rem,4vw,2.25rem); }
.loc-panel { background: #fffaf0; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.5rem 1.5rem; box-shadow: var(--shadow-sm); }
.loc-panel .loc-addr { font-style: normal; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.5; }
.loc-panel .loc-phone { font-weight: 700; color: var(--comal); margin-top: .35rem; font-size: 1.05rem; }
.offer-chips { display: flex; gap: .4rem; flex-wrap: wrap; margin: .85rem 0; }
.offer-chip { font-size: .76rem; font-weight: 600; background: var(--masa-deep); border: 1px solid var(--line); color: var(--comal); border-radius: 999px; padding: .25rem .7rem; }
.offer-chip::before { content: "✓ "; color: var(--nopal); font-weight: 800; }
.loc-panel .loc-actions { display: flex; gap: .5rem; margin: 0 0 1.1rem; }
.loc-panel .loc-actions .btn { flex: 1 1 0; min-width: 0; }
.loc-panel .hours-list { border-top: 1px solid var(--line); }
@media (max-width: 600px) { .loc-tabs { display: none; } .loc-select { display: block; } }

/* =============================================================================
   FOOTER + mobile call bar
   ========================================================================== */
.site-footer { background: var(--oxblood); color: #f3dcc4; padding: 2.6rem 1rem 5.5rem; text-align: center; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-brand .brand-name { color: #fff5e9; font-size: 1.6rem; }
.footer-brand .brand-accent { color: var(--maize); display: block; margin-top: 4px; }
.socials { list-style: none; display: flex; gap: .8rem; justify-content: center; margin: 1.2rem 0; }
.socials a { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); transition: background .2s ease, transform .2s ease; }
.socials a:hover { background: var(--maize); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; fill: #fff5e9; }
.socials a:hover svg { fill: var(--comal); }
.footer-fine { font-size: .95rem; opacity: .9; font-weight: 600; }
.footer-credit { font-size: .78rem; opacity: .7; margin-top: .5rem; }
.footer-builder { color: var(--maize); font-weight: 700; }
.footer-builder:hover { text-decoration: underline; }
.version { font-variant-numeric: tabular-nums; }
.mobile-callbar { display: none; }

/* =============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 760px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .header-jump { display: none; }
  .nav-toggle { display: flex; }
  /* Call is already on the sticky bottom bar + in the hamburger — drop it from
     the header on mobile so the bar isn't crowded (brand · EN/ES · ☰). */
  .header-call { display: none; }
  .header-meta { gap: .75rem; }
  .menu-items { grid-template-columns: 1fr; }
  /* hero CTAs stack full-width so the inline Call matches the docked bar.
     flex:0 0 auto so flex-basis isn't read as height in the column (no giant pills). */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { flex: 0 0 auto; max-width: none; width: 100%; }
  /* the persistent Call bar: hidden at the top, slides up once you scroll past
     the hero Call (toggled by .show from app.js) — so only ONE call shows at a time */
  .mobile-callbar {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    background: var(--guajillo); color: #fff5e9; font-weight: 700;
    padding: .95rem; border-radius: 999px; box-shadow: var(--shadow); font-size: 1.02rem; min-height: 52px;
    transform: translateY(150%); transition: transform .28s ease; pointer-events: none;
  }
  .mobile-callbar.show { transform: translateY(0); pointer-events: auto; }
  .mobile-callbar .ico { width: 1.15em; height: 1.15em; fill: currentColor; }
  .site-footer { padding-bottom: 6rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
