/* ==========================================================================
   TACOS DOÑA TULA — Design tokens
   Colors sampled directly from assets/images/LOGO HORIZONTAL.png
   ========================================================================== */

:root {
  /* --- Brand colors (exact values from the logo) --- */
  --brand-red:      #FB070F;  /* outline + main lettering glow */
  --brand-green:    #01AE47;  /* sombrero + dress accents */
  --brand-yellow:   #FCBF03;  /* tortilla / taco shell */
  --brand-tan:      #FCBE7F;  /* illustration skin tone */
  --brand-black:    #000000;  /* logo fill */
  --brand-white:    #FFFFFF;  /* lettering */

  /* --- Derived shades for hovers, gradients and depth --- */
  --red-900:  #6B0207;
  --red-700:  #A8040A;
  --red-600:  #D0050D;
  --red-500:  #FB070F;
  --red-400:  #FF3B41;
  --red-300:  #FF7A7E;

  --green-700: #017A32;
  --green-600: #01943C;
  --green-500: #01AE47;
  --green-400: #2FCB6C;
  --green-300: #6FE09B;

  /* Burnt green — deeper, smokier. Button hovers and the hero seal. */
  --green-burnt:      #2E6B35;
  --green-burnt-dark: #1D4523;

  --yellow-600: #C89601;
  --yellow-500: #FCBF03;
  --yellow-400: #FFD24A;

  /* --- Neutrals --- */
  --ink-900: #000000;
  --ink-800: #0A0A0A;
  --ink-700: #141414;
  --ink-600: #1F1F1F;
  --ink-500: #2E2E2E;
  --ink-400: #555555;
  --ink-300: #8A8A8A;
  --ink-200: #C7C7C7;
  --ink-100: #E8E8E8;
  --ink-050: #F6F4F1;

  /* --- Semantic roles --- */
  --color-bg:            var(--ink-900);
  --color-surface:       var(--ink-800);
  --color-surface-alt:   var(--ink-700);
  --color-text:          var(--brand-white);
  --color-text-muted:    var(--ink-200);
  --color-primary:       var(--brand-red);
  --color-primary-hover: var(--red-600);
  --color-accent:        var(--brand-green);
  --color-accent-hover:  var(--green-600);
  --color-highlight:     var(--brand-yellow);
  --color-border:        rgba(255, 255, 255, 0.12);

  /* --- Layout --- */
  --container-max: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* --- Elevation --- */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --glow-red: 0 0 24px rgba(251, 7, 15, 0.45);
  --glow-green: 0 0 24px rgba(1, 174, 71, 0.40);

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.3s var(--ease-out);

  /* --- Typography --- */
  --font-logo: "Alfa Slab One", "Rockwell", Georgia, serif;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- Header metrics (--header-top-h is kept in sync by main.js) --- */
  --header-top-h: 172px;
  --header-nav-h: 64px;
  --z-header: 100;
  --z-drawer: 200;
}

/* ==========================================================================
   Baseline reset
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Locks the page behind the open drawer */
body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6, p, figure, blockquote { margin: 0; }

/* Long words and pasted URLs must never push the page sideways */
h1, h2, h3, h4, h5, h6, p, li, a, span { overflow-wrap: break-word; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* ==========================================================================
   Utilities
   ========================================================================== */

.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;
}

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 999;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--brand-yellow);
  outline-offset: 3px;
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */

/* Sticky trick: the whole header sticks, but is offset upward by exactly the
   height of the top bar — so the top bar scrolls away and the white nav bar
   lands pinned at y = 0. No scroll listener needed for the pinning itself. */
.site-header {
  position: sticky;
  top: calc(var(--header-top-h) * -1);
  z-index: var(--z-header);
  background: var(--ink-900);
}

/* ---------- Row 1 : top bar ---------- */

.header-top {
  position: relative;
  background: var(--brand-black);
}

/* Thin tricolor hairline under the top bar */
.header-top::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(90deg,
    var(--brand-green) 0%, var(--brand-green) 33.33%,
    var(--brand-white) 33.33%, var(--brand-white) 66.66%,
    var(--brand-red) 66.66%, var(--brand-red) 100%);
  opacity: 0.55;
}

.header-top__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 10px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

/* ---------- Social icons ---------- */

.social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-list__link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--brand-white);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), border-color var(--transition);
}

.social-list__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-list__link:hover,
.social-list__link:focus-visible {
  background: var(--brand-red);
  border-color: var(--brand-red);
  transform: translateY(-3px);
  box-shadow: var(--glow-red);
}

/* ---------- Brand logo ---------- */

.brand {
  display: block;
  line-height: 0;
}

.brand__logo {
  height: clamp(58px, 6.2vw, 88px);
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
  transition: transform var(--transition);
}

.brand:hover .brand__logo { transform: scale(1.03); }

/* ---------- Call block ---------- */

.header-call {
  position: relative;
  justify-self: end;
}

.header-call__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px;
  background: none;
  border: 0;
  cursor: default;
  text-align: left;
  color: inherit;
}

.header-call__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: var(--glow-red);
}

.header-call__icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.header-call__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  line-height: 1.4;
}

.header-call__numbers {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-call__num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1.35;
}

.header-call__num strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand-white);
}

.header-call__num em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-300);
}

/* Dropdown (tablet / mobile only) */
.call-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 5;
  width: max-content;
  max-width: min(320px, calc(100vw - 32px));
  padding: 14px;
  background: var(--ink-700);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.call-menu[hidden] { display: none; }

.call-menu__title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 8px;
}

.call-menu__item {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.call-menu__item + .call-menu__item { margin-top: 4px; }

.call-menu__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brand-white);
}

.call-menu__item span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-300);
}

.call-menu__item:hover,
.call-menu__item:focus-visible { background: rgba(251, 7, 15, 0.18); }

/* ---------- Row 2 : nav bar ---------- */

.header-nav {
  background: var(--brand-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-nav__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: stretch;
  min-height: var(--header-nav-h);
}

/* Hamburger — red square block, as in the reference */
.menu-toggle {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: var(--header-nav-h);
  background: var(--brand-red);
  border: 0;
  cursor: pointer;
  transition: background var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible { background: var(--red-600); }

/* Desktop shows every link inline, so the burger only exists on mobile */
@media (min-width: 721px) {
  .menu-toggle { display: none; }
}

.menu-toggle__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 20px;
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity 0.2s linear, width var(--transition);
}

.menu-toggle__bar:nth-child(2) { width: 70%; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Compact logo — collapsed until the bar is pinned to the top */
.nav-logo {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 0;
  opacity: 0;
  transition: width 0.35s var(--ease-out), opacity 0.25s var(--ease-out),
              margin 0.35s var(--ease-out);
}

.nav-logo img {
  height: 34px;
  width: auto;
  max-width: none;
}

.site-header.is-pinned .nav-logo {
  width: 78px;
  opacity: 1;
  margin-left: 18px;
}

.site-header.is-pinned .header-nav { box-shadow: var(--shadow-md); }

/* Primary nav */
.primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.primary-nav__list {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

/* The li has to stretch too, or the links sit at the top of the bar */
.primary-nav__list > li { display: flex; }

/* ---------- "Menu" dropdown: anchor links to the menu page sections ---------- */

.has-sub { position: relative; }

.primary-nav__caret {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  fill: currentColor;
  transition: transform var(--transition);
}

.has-sub:hover .primary-nav__caret,
.has-sub:focus-within .primary-nav__caret { transform: rotate(180deg); }

.subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 10;
  min-width: 220px;
  padding: 8px 0;
  background: var(--brand-red);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out), visibility 0s linear 0.25s;
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.subnav a {
  display: block;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  transition: background var(--transition), padding var(--transition);
}

.subnav a:hover,
.subnav a:focus-visible {
  background: rgba(0, 0, 0, 0.22);
  padding-left: 28px;
}

/* Mobile drawer: the same five links, indented under "Menu" */
.drawer__sub {
  margin: 2px 0 6px 17px;
  padding-left: 12px;
  border-left: 1px solid var(--color-border);
}

.drawer__nav .drawer__sub a {
  padding: 8px 12px;
  border-left: 0;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--ink-300);
}

.primary-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
  transition: color var(--transition);
}

.primary-nav__link::after {
  content: "";
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  height: 2px;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible,
.primary-nav__link.is-active { color: var(--brand-red); }

.primary-nav__link:hover::after,
.primary-nav__link:focus-visible::after,
.primary-nav__link.is-active::after { transform: scaleX(1); }

/* Get in touch */
.btn-touch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
}

.btn-touch svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--transition);
}

.btn-touch:hover,
.btn-touch:focus-visible { background: var(--green-burnt); }
.btn-touch:hover svg { transform: translate(3px, -3px); }

/* ==========================================================================
   OFF-CANVAS DRAWER
   ========================================================================== */

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-drawer) - 1);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity var(--transition);
}

.drawer-backdrop[hidden] { display: none; }
.drawer-backdrop.is-visible { opacity: 1; }

.drawer {
  position: fixed;
  top: 0; left: 0;
  z-index: var(--z-drawer);
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: min(360px, 88vw);
  height: 100dvh;
  padding: 24px 26px calc(24px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(180deg, #121212 0%, #000 100%);
  border-right: 3px solid var(--brand-red);
  transform: translateX(-102%);
  transition: transform 0.4s var(--ease-out);
}

.drawer.is-open { transform: translateX(0); }

.drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.drawer__logo { width: min(210px, 62%); height: auto; }

.drawer__close {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.drawer__close svg { width: 18px; height: 18px; fill: currentColor; }
.drawer__close:hover { background: var(--brand-red); transform: rotate(90deg); }

.drawer__nav ul { display: flex; flex-direction: column; gap: 2px; }

.drawer__nav a {
  display: block;
  padding: 12px 14px;
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-200);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.drawer__nav a:hover,
.drawer__nav a:focus-visible,
.drawer__nav a.is-active {
  color: #fff;
  background: rgba(251, 7, 15, 0.14);
  border-left-color: var(--brand-red);
}

.drawer__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 14px;
}

.branch {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.branch + .branch { margin-top: 12px; }

.branch__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

.branch__row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 4px 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ink-200);
  transition: color var(--transition);
}

.branch__row svg {
  flex: 0 0 auto;
  width: 15px; height: 15px;
  margin-top: 3px;
  fill: var(--brand-red);
}

a.branch__row:hover,
a.branch__row:focus-visible { color: var(--brand-yellow); }
.branch__row--static { color: var(--ink-300); }
.branch__row--static svg { fill: var(--brand-green); }

.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-200);
}

.drawer__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer__tag {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-400);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 30px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(251, 7, 15, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--green-burnt);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(46, 107, 53, 0.45);
}

.btn__sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-black);
  isolation: isolate;
}

/* Dark stucco wall behind everything */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/bg-texture-dark.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: clamp(48px, 6vw, 86px) var(--gutter) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: clamp(560px, 78svh, 780px);
}

/* ---------- Copy column ---------- */

.hero__content { padding-bottom: clamp(40px, 5vw, 72px); }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.1vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: clamp(14px, 2vw, 22px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: clamp(30px, 4vw, 48px);
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding-block: 0.04em;
}

/* Two voices in one headline: the wide, airy tracking borrowed from the
   nav links, set against the heavy condensed weight. */
.hero__title .line--airy {
  font-size: 0.34em;
  font-weight: 300;
  letter-spacing: 0.44em;
  line-height: 1.5;
  color: var(--ink-100);
}

/* Tracking adds a trailing gap — pull it back so the red block ends
   flush with the last letter. */
.hero__title .line--airy .line__inner { margin-right: -0.44em; }

.hero__title .line--heavy { font-weight: 700; }

.hero__title .line--heavy i {
  font-style: normal;
  font-size: 0.34em;
  font-weight: 300;
  letter-spacing: 0.44em;
  color: var(--ink-100);
  margin-right: -0.18em;
}

/* Each line carries its own red block that wipes across and retracts,
   dissolving into the letters underneath. */
.hero__title .line__inner {
  position: relative;
  display: inline-block;
  opacity: 0;
}

.hero__title .line__inner::after {
  content: "";
  position: absolute;
  inset: 0.08em -0.06em 0.1em;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero.is-revealed .line__inner {
  animation: heroTextIn 1.05s var(--ease-out) var(--d, 0s) both;
}

.hero.is-revealed .line__inner::after {
  animation: heroWipe 1.05s cubic-bezier(0.76, 0, 0.24, 1) var(--d, 0s) both;
}

@keyframes heroWipe {
  0%   { transform: scaleX(0); transform-origin: left center; }
  44%  { transform: scaleX(1); transform-origin: left center; }
  52%  { transform: scaleX(1); transform-origin: right center; }
  100% { transform: scaleX(0); transform-origin: right center; }
}

@keyframes heroTextIn {
  0%, 46%  { opacity: 0; filter: blur(9px); transform: translateY(0.09em); }
  100%     { opacity: 1; filter: blur(0);   transform: translateY(0); }
}

/* ---------- CTA row ---------- */

.hero__cta {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  flex-wrap: wrap;
}

.hero__lead {
  flex: 1 1 280px;
  max-width: 46ch;
  padding-left: 22px;
  border-left: 3px solid var(--brand-red);
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.95;
  color: var(--ink-200);
}

.hero__lead strong { color: var(--brand-white); font-weight: 700; }

/* ---------- Visual column ---------- */

.hero__visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 100%;
}

/* Red arch behind the food */
.hero__arch {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(240px, 27vw, 430px);
  height: clamp(300px, 34vw, 540px);
  background: var(--brand-red);
  border-radius: 999px 999px 10px 10px;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom center;
  z-index: 0;
}

.hero__photo-wrap {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 100%;
  max-width: 660px;
  margin-bottom: clamp(-18px, -1.4vw, 0px);
  opacity: 0;
}

.hero__photo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.75));
}

/* Rise from below, then settle into a slow float */
.hero.is-revealed .hero__arch {
  animation: archGrow 0.9s var(--ease-out) 0.25s both;
}

.hero.is-revealed .hero__photo-wrap {
  animation: tacoRise 1.15s var(--ease-out) 0.5s both;
}

.hero.is-revealed .hero__photo {
  animation: tacoFloat 5.5s ease-in-out 1.7s infinite;
}

@keyframes archGrow {
  from { transform: translateX(-50%) scaleY(0); }
  to   { transform: translateX(-50%) scaleY(1); }
}

@keyframes tacoRise {
  from { opacity: 0; transform: translateY(90px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes tacoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ---------- Rotating trust seal ---------- */

.hero__badge {
  position: absolute;
  top: clamp(-6px, 1vw, 16px);
  right: clamp(-10px, 0vw, 10px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(104px, 11vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg,
    var(--green-burnt) 0%,
    var(--green-burnt-dark) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  opacity: 0;
}

.hero.is-revealed .hero__badge {
  animation: badgeIn 0.7s var(--ease-out) 1.1s both;
}

@keyframes badgeIn {
  from { opacity: 0; transform: scale(0.6) rotate(-45deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

.hero__badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
}

.hero__badge-ring text {
  fill: var(--brand-white);
  font-family: var(--font-display);
  font-size: 8.6px;
  font-weight: 500;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Brand medallion at the centre of the seal */
.hero__badge-mark {
  width: 52%;
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.45));
}

/* ---------- Generic entrance helper ---------- */

[data-anim="fade-up"] { opacity: 0; }

.hero.is-revealed [data-anim="fade-up"] {
  animation: fadeUp 0.8s var(--ease-out) var(--d, 0s) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Motion-sensitive visitors get the finished state, no movement */
@media (prefers-reduced-motion: reduce) {
  .hero .line__inner,
  .hero [data-anim="fade-up"],
  .hero__photo-wrap,
  .hero__badge { opacity: 1 !important; }
  .hero__arch { transform: translateX(-50%) scaleY(1) !important; }
  .hero__title .line__inner::after { display: none; }
  .hero__badge-ring { animation: none !important; }
}

/* ==========================================================================
   SHARED SECTION HEADINGS
   ========================================================================== */

.section-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 14px;
}

/* Alfa Slab One — the heavy slab that echoes the logo lettering */
.section-title {
  font-family: var(--font-logo);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--brand-white);
  text-transform: uppercase;
}

.section-lead {
  max-width: 56ch;
  margin-top: 18px;
  font-size: clamp(0.88rem, 1.05vw, 0.98rem);
  line-height: 1.9;
  color: var(--ink-200);
}

/* ==========================================================================
   ABOUT US
   ========================================================================== */

.about {
  position: relative;
  background: var(--ink-900);
  padding-block: clamp(64px, 8vw, 116px);
  overflow: hidden;
}

.about__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

/* ---------- Copy ---------- */

/* About runs at a smaller scale than the hero */
.about .section-title {
  font-size: clamp(1.5rem, 2.9vw, 2.25rem);
  line-height: 1.16;
}

.about .section-eyebrow {
  font-size: clamp(0.66rem, 0.9vw, 0.74rem);
  letter-spacing: 0.3em;
  margin-bottom: 11px;
}

.about__text {
  max-width: 52ch;
  margin-top: 16px;
  font-size: clamp(0.78rem, 0.92vw, 0.875rem);
  line-height: 1.85;
  color: var(--ink-200);
}

.about__text strong { color: var(--brand-white); font-weight: 700; }

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 44px);
  margin-top: clamp(26px, 3vw, 36px);
  padding-top: clamp(22px, 2.6vw, 30px);
  border-top: 1px solid var(--color-border);
}

.about__stat strong {
  display: block;
  font-family: var(--font-logo);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1;
  color: var(--brand-red);
}

.about__stat span {
  display: block;
  margin-top: 5px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.about__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 2.6vw, 38px);
  margin-top: clamp(26px, 3vw, 38px);
}

.about__actions .btn {
  padding: 15px 26px;
  font-size: 0.84rem;
}

/* ---------- Call block ---------- */

.about__call {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__call-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink-700);
  border: 1px solid var(--color-border);
}

.about__call-icon svg { width: 19px; height: 19px; fill: var(--brand-red); }

.about__call-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 2px;
}

.about__call-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.38;
  color: var(--brand-white);
  transition: color var(--transition);
}

.about__call-num em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.about__call-num:hover,
.about__call-num:focus-visible { color: var(--brand-red); }

/* ---------- Visual ---------- */

.about__visual {
  margin: 0;
  justify-self: center;
}

.about__visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 26px 46px rgba(0, 0, 0, 0.7));
}

/* ==========================================================================
   DISH STRIP — decorative separator between sections
   ========================================================================== */

.dish-strip {
  position: relative;
  /* Soft band of light through the middle, fading to black at both
     edges so the strip melts into the sections above and below. */
  background: linear-gradient(180deg,
    #000000 0%,
    #101010 34%,
    #161616 50%,
    #101010 66%,
    #000000 100%);
  padding-block: clamp(30px, 3.8vw, 52px);
}

/* How many plates are on screen at once, and the space between them.
   The item width is derived from these, so changing --strip-visible is
   all it takes to re-tune the strip at any breakpoint. */
.dish-strip {
  --strip-visible: 5;
  --strip-gap: clamp(10px, 2vw, 40px);
  --strip-speed: 46s;
}

.dish-strip__viewport {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  overflow: hidden;
  /* Plates dissolve into the black at both ends instead of being cut off */
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0, #000 7%, #000 93%, transparent 100%);
}

.dish-track {
  display: flex;
  align-items: center;
  gap: var(--strip-gap);
  width: max-content;
  list-style: none;
  animation: dishMarquee var(--strip-speed) linear infinite;
  will-change: transform;
}

/* The track holds the set twice over, so sliding it back by exactly half
   lands on an identical frame — the loop has no seam. */
@keyframes dishMarquee {
  from { transform: translate3d(calc(-50% - var(--strip-gap) / 2), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.dish-track:hover { animation-play-state: paused; }

.dish {
  position: relative;
  flex: 0 0 auto;
  /* Exactly --strip-visible plates fit inside the padded container */
  width: calc(
    (min(var(--container-max), 100vw) - 2 * var(--gutter)
      - (var(--strip-visible) - 1) * var(--strip-gap))
    / var(--strip-visible)
  );
  aspect-ratio: 1 / 1;
}

/* Soft red bloom behind the hovered plate */
.dish::before {
  content: "";
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(251, 7, 15, 0.32) 0%,
    rgba(251, 7, 15, 0) 68%);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

.dish:hover::before { opacity: 1; }

.dish__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Black & white until hovered */
  filter: grayscale(1) contrast(1.08) brightness(0.78);
  transform: scale(1);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}

.dish:hover .dish__img {
  filter: grayscale(0) contrast(1) brightness(1);
  transform: scale(1.07);
}

/* Touch devices have no hover — show them in full colour instead */
@media (hover: none) {
  .dish__img { filter: grayscale(0) brightness(1); }
}

@media (prefers-reduced-motion: reduce) {
  .dish-track { animation: none !important; transform: none !important; }
}

/* ==========================================================================
   SCROLL REVEAL — the inline script in index.html adds .is-in   ========================================================================== */

[data-rise] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-out);
  transition-delay: var(--d, 0s);
}

[data-rise].is-in { opacity: 1; transform: none; }

.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

/* Pinned nav bar must not cover a section's heading after a jump link */
.offers, .menu-intro, .loyalty, .map, .site-footer { scroll-margin-top: 72px; }

@keyframes o1IconPop {
  0%   { transform: none; }
  30%  { transform: translateY(-4px) rotate(-12deg) scale(1.15); }
  60%  { transform: translateY(1px) rotate(8deg); }
  100% { transform: none; }
}

/* ==========================================================================
   OFFERS — loyalty + order online cards on the stucco wall
   ========================================================================== */

.offers {
  position: relative;
  isolation: isolate;
  padding-block: clamp(56px, 7vw, 100px);
  background: #000 url("../images/bg-texture-dark.jpg") center / cover no-repeat;
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    #000 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.5) 70%, #000 100%);
}

.offers__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 36px);
}

.offers__inner > div { display: flex; }

.offer {
  --accent: var(--brand-red);
  position: relative;
  flex: 1;
  padding: clamp(30px, 4vw, 52px);
  background: linear-gradient(160deg, #171717 0%, #0a0a0a 100%);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-md);
  transition: transform 0.45s var(--ease-out), border-color 0.45s ease, box-shadow 0.45s ease;
}

.offer--green { --accent: var(--green-burnt); }

.offer:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.offer__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.offer__icon svg { width: 30px; height: 30px; fill: #fff; }

.offer:hover .offer__icon svg { animation: o1IconPop 0.6s ease; }

.offer .section-eyebrow { color: var(--accent); }
.offer--green .section-eyebrow { color: var(--green-400); }

.offer__title {
  font-family: var(--font-logo);
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  font-weight: 400;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--brand-white);
}

.offer__text {
  max-width: 40ch;
  margin-top: 14px;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  line-height: 1.85;
  color: var(--ink-200);
}

.offer__text strong { color: var(--brand-white); }

.offer .btn { margin-top: 28px; }

/* ==========================================================================
   MENU INTRO — four dark cards, each dish sitting on a red / green arch
   ========================================================================== */

.menu-intro {
  padding-block: clamp(64px, 8vw, 110px);
  background: var(--ink-900);
}

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  margin-top: clamp(40px, 5vw, 60px);
}

.menu-card {
  --arch: var(--brand-red);
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  padding: clamp(18px, 2vw, 26px);
  overflow: hidden;
  background: linear-gradient(180deg, #171717 0%, #0b0b0b 100%);
  border: 1px solid var(--color-border);
  transition: transform 0.5s var(--ease-out), border-color 0.4s ease, box-shadow 0.5s ease;
}

.menu-card--green { --arch: var(--green-burnt); }

.menu-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--brand-red);
}

.menu-card--green .menu-card__num { color: var(--green-400); }

.menu-card__name {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-white);
}

/* Same arch as the hero, scaled down */
.menu-card__arch {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 66%;
  height: 56%;
  background: var(--arch);
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  transition: height 0.5s var(--ease-out);
}

.menu-card__img {
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 96%;
  height: 54%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.6));
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-lg);
}

.menu-card:hover .menu-card__arch { height: 62%; }

.menu-intro__foot {
  margin-top: clamp(40px, 5vw, 60px);
  text-align: center;
}

/* ==========================================================================
   LOYALTY — pitch + $5 off on a red arch, sign-up form beside it
   ========================================================================== */

.loyalty {
  position: relative;
  isolation: isolate;
  padding-block: clamp(64px, 8vw, 110px);
  background: #000 url("../images/bg-about-stone.jpg") center / cover no-repeat;
}

.loyalty::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 78%, #000 100%),
    rgba(0, 0, 0, 0.62);
}

.loyalty__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.loyalty .section-lead strong { color: var(--brand-white); }

.loyalty__gift {
  position: relative;
  display: grid;
  place-items: end center;
  width: min(340px, 82%);
  aspect-ratio: 1 / 1;
  margin-top: clamp(28px, 3vw, 40px);
}

.loyalty__arch {
  position: absolute;
  inset: auto 14% 0;
  height: 90%;
  background: var(--brand-red);
  border-radius: 999px 999px 10px 10px;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.9s var(--ease-out) 0.3s;
}

.loyalty__gift img {
  position: relative;
  width: 88%;
  margin-bottom: 6%;
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.55));
  transition: opacity 0.8s ease 0.75s, transform 1.1s var(--ease-out) 0.75s;
}

.loyalty__intro.is-in .loyalty__arch { transform: scaleY(1); }

.loyalty__intro.is-in .loyalty__gift img {
  opacity: 1;
  transform: none;
  animation: tacoFloat 6s ease-in-out 2.2s infinite;
}

/* ---------- Form panel ---------- */

.loyalty__panel {
  padding: clamp(28px, 3.4vw, 46px);
  background: linear-gradient(160deg, #181818 0%, #0a0a0a 100%);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-red);
  box-shadow: var(--shadow-lg);
}

.loyalty__panel-title {
  font-family: var(--font-logo);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
}

/* LeadConnector form. form_embed.js resizes the iframe to fit; the
   min-height matches the form's data-height so nothing jumps on load. */
.loyalty__embed {
  margin-top: 22px;
  min-height: 477px;
}

.loyalty__embed iframe {
  display: block;
  width: 100%;
  min-height: 477px;
}

/* Stand-alone loyalty.html: a bit more air under the header */
.loyalty--page {
  padding-block: clamp(72px, 9vw, 130px);
}

.o1-form {
  display: grid;
  gap: 20px;
  margin-top: 26px;
}

.o1-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.o1-field label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.o1-field label span { color: var(--brand-red); }

.o1-field input {
  width: 100%;
  padding: 10px 2px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background:
    linear-gradient(var(--brand-red), var(--brand-red)) left bottom / 0 2px no-repeat;
  font-size: 0.95rem;
  color: var(--brand-white);
  color-scheme: dark;
  transition: background-size 0.45s var(--ease-out);
}

.o1-field input::placeholder { color: var(--ink-400); }

/* Red underline sweeps across on focus */
.o1-field input:focus {
  outline: none;
  background-size: 100% 2px;
}

.o1-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.o1-form__done {
  font-weight: 600;
  line-height: 1.6;
  color: var(--green-400);
}

.o1-form.is-sent .o1-field,
.o1-form.is-sent .o1-form__row,
.o1-form.is-sent .o1-form__submit { display: none; }

/* ==========================================================================
   MAP — a red block wipes across and uncovers the map (hero motion)
   ========================================================================== */

.map {
  padding-block: clamp(64px, 8vw, 110px);
  background: var(--ink-900);
}

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

/* Both branches side by side, each with its own map and info strip */
.map__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 36px);
  margin-top: clamp(36px, 4vw, 52px);
}

.map__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 20px 22px;
  background: linear-gradient(160deg, #171717 0%, #0a0a0a 100%);
  border: 1px solid var(--color-border);
  border-top: 0;
}

.map__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-white);
}

.map__meta {
  margin-top: 4px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink-300);
}

.map__btn { flex: 0 0 auto; margin-top: 0; }

.map__frame {
  position: relative;
  height: clamp(320px, 32vw, 440px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-red);
  box-shadow: var(--shadow-lg);
  background: var(--ink-700);
}

/* The wipe is the entrance here — no rise */
.map__frame[data-rise] { opacity: 1; transform: none; }

.map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
}

.map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-red);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

/* --d staggers the second map so the wipes run one after the other */
.map__frame.is-in::after {
  animation: heroWipe 1.5s cubic-bezier(0.76, 0, 0.24, 1) var(--d, 0s) both;
}

.map__frame.is-in iframe {
  animation: mapIn 1.5s var(--ease-out) var(--d, 0s) both;
}

@keyframes mapIn {
  0%, 46% { opacity: 0; transform: scale(1.04); }
  100%    { opacity: 1; transform: none; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  isolation: isolate;
  background: #000 url("../images/bg-texture-dark.jpg") center / cover no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.72);
}

/* Tricolor hairline — the same one that sits under the header */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--brand-green) 0 33.33%,
    var(--brand-white) 33.33% 66.66%,
    var(--brand-red) 66.66% 100%);
  opacity: 0.7;
}

.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: clamp(56px, 7vw, 90px) var(--gutter) clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
}

/* ---------- Brand column ---------- */

.footer-brand__logo {
  width: min(230px, 72%);
  transform-origin: 50% 90%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6));
  opacity: 0;
  transform: translateY(-24px) scale(0.88) rotate(-6deg);
  transition: opacity 0.7s ease 0.2s, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

/* Drops in with a bounce, then sways gently; hover gives a quick wiggle */
.site-footer__inner.is-in .footer-brand__logo {
  opacity: 1;
  transform: none;
  animation: o1LogoSway 6s ease-in-out 1.5s infinite;
}

.site-footer__inner.is-in .footer-brand__logo:hover { animation: o1LogoWiggle 0.7s ease; }

@keyframes o1LogoSway {
  0%, 100% { rotate: 0deg;    translate: 0 0; }
  25%      { rotate: -1.5deg; translate: 0 -3px; }
  75%      { rotate: 1.5deg;  translate: 0 -3px; }
}

@keyframes o1LogoWiggle {
  0%, 100% { rotate: 0deg;  scale: 1; }
  25%      { rotate: -5deg; scale: 1.06; }
  50%      { rotate: 4deg;  scale: 1.06; }
  75%      { rotate: -2deg; scale: 1.03; }
}

.footer-brand__tag {
  max-width: 34ch;
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--ink-300);
}

.footer-brand__social { margin-top: 24px; }

.footer-brand__social .social-list__link { width: 44px; height: 44px; }
.footer-brand__social .social-list__link svg { width: 18px; height: 18px; }

.footer-brand__social .social-list__link:hover svg,
.footer-brand__social .social-list__link:focus-visible svg { animation: o1IconPop 0.6s ease; }

/* Icons pop in one after another once the footer is on screen */
.footer-brand__social li {
  opacity: 0;
  transform: scale(0.3) rotate(-90deg);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.6, 0.5, 1);
}

.site-footer__inner.is-in .footer-brand__social li { opacity: 1; transform: none; }
.site-footer__inner.is-in .footer-brand__social li:nth-child(1) { transition-delay: 0.6s; }
.site-footer__inner.is-in .footer-brand__social li:nth-child(2) { transition-delay: 0.75s; }
.site-footer__inner.is-in .footer-brand__social li:nth-child(3) { transition-delay: 0.9s; }

/* ---------- Branch columns ---------- */

.footer-branch__name {
  position: relative;
  margin-bottom: 18px;
  padding-bottom: 14px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-white);
}

.footer-branch__name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--brand-red);
}

.footer-branch__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-200);
  transition: color var(--transition);
}

.footer-branch__row svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  fill: var(--brand-red);
}

a.footer-branch__row:hover,
a.footer-branch__row:focus-visible { color: var(--brand-white); }

.footer-branch__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 20px;
  border: 1px solid var(--brand-red);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-white);
  transition: background var(--transition), border-color var(--transition);
}

.footer-branch__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition);
}

.footer-branch__btn:hover,
.footer-branch__btn:focus-visible { background: var(--brand-red); }

.footer-branch__btn:hover svg { transform: translateX(4px); }

/* ---------- Bottom bar ---------- */

.site-footer__bar {
  max-width: var(--container-max);
  margin-inline: auto;
  /* Extra room at the bottom for the proposal switcher */
  padding: 22px var(--gutter) 84px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  border-top: 1px solid var(--color-border);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-400);
}

.site-footer__bar a {
  font-weight: 600;
  color: var(--brand-white);
  transition: color var(--transition);
}

.site-footer__bar a:hover,
.site-footer__bar a:focus-visible { color: var(--brand-red); }

/* ---------- Motion off ---------- */

@media (prefers-reduced-motion: reduce) {
  [data-rise],
  .loyalty__gift img,
  .footer-brand__logo,
  .footer-brand__social li { opacity: 1 !important; transform: none !important; animation: none !important; }
  .loyalty__arch { transform: none; }
  .map__frame iframe { opacity: 1; animation: none !important; }
  .map__frame::after { display: none; }
}

/* ---------- Responsive for the sections above ---------- */

@media (max-width: 980px) {
  .site-footer__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .offers__inner { grid-template-columns: 1fr; }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
    margin-inline: auto;
  }

  .loyalty__inner { grid-template-columns: 1fr; }
  .loyalty__intro { text-align: center; }
  .loyalty__intro .section-lead { margin-inline: auto; }
  .loyalty__gift { margin-inline: auto; }
  .loyalty__panel { max-width: 560px; width: 100%; margin-inline: auto; }

  .map__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .map__info { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  /* The global mobile rule stretches every .btn — keep these compact */
  .offer .btn,
  .menu-intro__foot .btn { width: auto; }

  .map__frame { height: 340px; }
}

/* Small phones: menu card names must never break mid-word or reach the
   photo, and the hero copy needs clear space above the red arch */
@media (max-width: 480px) {
  .menu-card { padding: 14px; }
  .menu-card__name {
    font-size: clamp(0.86rem, 4.4vw, 1.05rem);
    letter-spacing: 0.02em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }
  .menu-card__arch { height: 50%; }
  .menu-card__img { height: 48%; }
}

/* Stacked hero: the arch was taller than the photo and climbed over the
   lead paragraph. Keep it just a little taller than the tacos and give the
   copy real clearance above it. */
/* ".hero" prefix: the responsive ladder at the end of the file sets these
   same properties and would otherwise win */
@media (max-width: 880px) {
  .hero .hero__content { padding-bottom: clamp(40px, 10vw, 64px); }
  .hero .hero__visual { padding-top: 0; }
  .hero .hero__arch {
    width: min(280px, 50vw);
    height: min(300px, 50vw);
  }
}

/* Less dead black between the last section and the footer */
.menu-page { padding-bottom: clamp(40px, 5vw, 72px); }
.v2-footer { padding-top: clamp(28px, 4vw, 64px); }

@media (max-width: 720px) {
  .v2-footer { padding-top: 16px; }
  .v2-footer__card { padding-top: 20px; }
}

@media (max-width: 560px) {
  .o1-form__row { grid-template-columns: 1fr; }

  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__bar { flex-direction: column; }
}

/* ==========================================================================
   MENU PAGE (menu.html)
   ========================================================================== */

/* ---------- Page hero ---------- */

.page-hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(56px, 8vw, 110px) clamp(40px, 5vw, 64px);
  text-align: center;
  background: #000 url("../images/bg-texture-dark.jpg") center / cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, #000 100%);
}

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

.page-hero__title {
  font-family: var(--font-logo);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--brand-white);
}

.page-hero .section-lead { margin-inline: auto; }

/* ---------- Anchor buttons (stick under the pinned nav bar) ---------- */

.menu-page {
  padding-block: 0 clamp(64px, 8vw, 110px);
  background: var(--ink-900);
}

.menu-anchors {
  position: sticky;
  top: var(--header-nav-h);
  z-index: 20;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.menu-anchors__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 14px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-anchors__inner::-webkit-scrollbar { display: none; }

.menu-anchor {
  flex: 0 0 auto;
  padding: 11px 18px;
  border: 1px solid var(--color-border);
  background: var(--ink-700);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-200);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.menu-anchor:hover { color: var(--brand-white); border-color: rgba(255, 255, 255, 0.28); }

.menu-anchor.is-active {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: var(--brand-white);
}

.menu-page__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Category: one photo on the side, text list beside it ---------- */

.menu-cat {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  padding-block: clamp(56px, 7vw, 96px);
  /* Room for the pinned nav + anchor bar after an anchor jump */
  scroll-margin-top: calc(var(--header-nav-h) + 70px);
}

.menu-cat + .menu-cat { border-top: 1px solid var(--color-border); }

.menu-cat--flip .menu-cat__photo { order: 2; }

/* Photo sits on the hero's red arch and stays in view while the list scrolls */
.menu-cat__photo {
  position: sticky;
  top: calc(var(--header-nav-h) + 110px);
  display: grid;
  place-items: end center;
  aspect-ratio: 1 / 1;
  margin: 0;
}

.menu-cat__photo::before {
  content: "";
  position: absolute;
  inset: 8% 14% 0;
  background: var(--brand-red);
  border-radius: 999px 999px 10px 10px;
}

.menu-cat--flip .menu-cat__photo::before { background: var(--green-burnt); }

.menu-cat__photo img {
  position: relative;
  width: 100%;
  max-height: 82%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.7));
}

.menu-cat__title {
  font-family: var(--font-logo);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--brand-white);
  margin-bottom: clamp(22px, 2.6vw, 30px);
}

/* ---------- Choice of meat ---------- */

.meat-choice {
  margin-bottom: 24px;
  padding: 20px 22px;
  background: var(--ink-800);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--brand-red);
}

.meat-choice__title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-red);
}

.meat-choice__list { display: flex; flex-wrap: wrap; gap: 8px; }

.meat-choice__list li {
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  font-size: 0.8rem;
  color: var(--ink-300);
}

.meat-choice__list strong {
  margin-right: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-white);
}

/* ---------- Dish rows: text only ---------- */

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-item {
  padding: 16px 18px;
  background: var(--ink-800);
  border-left: 3px solid var(--brand-red);
  transition: background var(--transition), transform var(--transition);
}

.menu-cat--flip .menu-item { border-left-color: var(--green-burnt); }

.menu-item:hover { background: #141414; transform: translateX(3px); }

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-white);
}

.menu-item__desc {
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink-300);
}

.menu-item__note {
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--green-400);
}
/* ---------- Bottom CTA ---------- */

.menu-page__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  margin-top: clamp(40px, 5vw, 64px);
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(160deg, #171717 0%, #0a0a0a 100%);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-red);
}

.menu-page__cta-text {
  font-family: var(--font-logo);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  line-height: 1.2;
}

.menu-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.menu-page__cta-actions .footer-branch__btn { margin-top: 0; padding-block: 17px; }

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .menu-cat { grid-template-columns: 1fr; }
  .menu-cat--flip .menu-cat__photo { order: 0; }
  .menu-cat__photo {
    position: relative;
    top: auto;
    width: min(320px, 78%);
    margin-inline: auto;
  }
  .menu-cat__body { text-align: left; }
}

@media (max-width: 720px) {
  .menu-anchors__inner { justify-content: flex-start; }
  .menu-page__cta-actions .btn { width: auto; }
}

@media (max-width: 560px) {
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .menu-page__cta-actions { width: 100%; }
  .menu-page__cta-actions > * { flex: 1 1 100%; justify-content: center; }
}
/* ==========================================================================
   FLOATING QUICK MENU — "Main Menu" box, bottom-right on every page
   ========================================================================== */

.fab {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: calc(var(--z-drawer) - 1);
}

/* ---------- Trigger box ---------- */

.fab__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 12px;
  border: 3px solid var(--brand-red);
  border-radius: 6px;
  background: #000;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  animation: fabPulse 2.8s ease-out 2s infinite;
  transition: background var(--transition), transform var(--transition);
}

.fab__btn:hover { background: var(--red-900); transform: translateY(-3px); }

.fab.is-open .fab__btn { animation: none; }

/* A soft red ring pulses out now and then, so the box gets noticed */
@keyframes fabPulse {
  0%   { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(251, 7, 15, 0.55); }
  70%  { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 0 14px rgba(251, 7, 15, 0); }
  100% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 0 0 rgba(251, 7, 15, 0); }
}

.fab__logo { display: block; width: 42px; }

.fab__logo img { width: 100%; height: auto; transition: transform 0.4s var(--ease-out); }

.fab__btn:hover .fab__logo img { transform: rotate(-10deg) scale(1.1); }

.fab__label {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Panel ---------- */

.fab__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(330px, calc(100vw - 32px));
  max-height: calc(100svh - 120px);
  overflow-y: auto;
  padding: 26px 24px 28px;
  border-radius: 14px;
  background: #0b0b0b;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--brand-red);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(14px) scale(0.95);
  transition: opacity 0.25s ease, transform 0.35s var(--ease-out);
}

.fab__panel[hidden] { display: none; }

.fab.is-open .fab__panel { opacity: 1; transform: none; }

.fab__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.fab__close svg { width: 18px; height: 18px; fill: currentColor; }
.fab__close:hover { background: var(--brand-red); transform: rotate(90deg); }

.fab__view[hidden] { display: none; }

.fab__view.is-active > * { animation: fadeUp 0.4s var(--ease-out) both; }
.fab__view.is-active > :nth-child(2) { animation-delay: 0.05s; }
.fab__view.is-active > :nth-child(3) { animation-delay: 0.1s; }
.fab__view.is-active > :nth-child(4) { animation-delay: 0.15s; }
.fab__view.is-active > :nth-child(5) { animation-delay: 0.2s; }

/* Brand block at the top of the first view */
.fab__brand {
  width: min(190px, 70%);
  margin: 4px auto 0;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
}

.fab__title {
  margin: 14px 0 22px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- Level-1 option rows ---------- */

.fab__opt {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 10px 8px;
  border: 0;
  border-radius: 10px;
  background: none;
  text-align: left;
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.fab__opt + .fab__opt { margin-top: 6px; }

.fab__opt:hover,
.fab__opt:focus-visible { background: rgba(255, 255, 255, 0.06); }

/* Round icon: red disc with a white ring, like the reference */
.fab__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 3px #fff, 0 8px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s var(--ease-out);
}

.fab__icon svg { width: 24px; height: 24px; fill: #fff; }

.fab__opt:hover .fab__icon { transform: scale(1.08); }
.fab__opt:hover .fab__icon svg { animation: o1IconPop 0.6s ease; }

.fab__text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fab__chev {
  width: 18px;
  height: 18px;
  fill: var(--ink-400);
  transition: transform var(--transition), fill var(--transition);
}

.fab__opt:hover .fab__chev { fill: #fff; transform: translateX(3px); }

/* ---------- Level-2: back link + branch cards ---------- */

.fab__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 4px 6px 4px 0;
  border: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-300);
  cursor: pointer;
}

.fab__back svg { width: 16px; height: 16px; fill: currentColor; transition: transform var(--transition); }
.fab__back:hover svg { transform: translateX(-3px); }

.fab__branch {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--brand-red);
  transition: background var(--transition), transform var(--transition);
}

.fab__branch + .fab__branch { margin-top: 10px; }

.fab__branch:hover,
.fab__branch:focus-visible { background: rgba(255, 255, 255, 0.1); transform: translateX(3px); }

.fab__branch strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.fab__branch span {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  color: var(--ink-200);
}

.fab__branch em {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-300);
}

@media (max-width: 560px) {
  .fab__btn { padding: 8px 16px 8px 10px; gap: 10px; }
  .fab__logo { width: 36px; }
  .fab__label { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .fab__btn { animation: none; }
  .fab__view.is-active > * { animation: none; }
}

/* ==========================================================================
   FOOTER — both branches centred on the dark doodle pattern
   ========================================================================== */

.v2-footer {
  --v2-olive: #5A6628;
  --v2-olive-dark: #454F1E;
  --font-v2-display: "Unbounded", "Arial Black", sans-serif;
  position: relative;
  isolation: isolate;
  /* Extra room at the bottom so the Main Menu box never covers the credit */
  padding: clamp(64px, 8vw, 110px) var(--gutter) clamp(110px, 10vw, 130px);
  background:
    linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 30%),
    radial-gradient(ellipse at 50% 55%,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.75) 65%,
      #000 100%),
    #000 url("../images/bg-mexican-patterns.jpg") center / 1500px auto repeat;
  scroll-margin-top: 72px;
}

.v2-footer__card {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(36px, 4.5vw, 56px) clamp(22px, 4vw, 56px);
  text-align: center;
  color: var(--brand-white);
}

/* Logo drops in with a bounce, then sways gently; hover gives a wiggle */
.v2-footer__logo {
  width: min(220px, 60%);
  margin: 0 auto clamp(28px, 3vw, 40px);
  transform-origin: 50% 90%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.6));
}

.v2-footer__card[data-rise] .v2-footer__logo {
  opacity: 0;
  transform: translateY(-30px) scale(0.85) rotate(-6deg);
  transition: opacity 0.7s ease 0.25s, transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
}

.v2-footer__card.is-in .v2-footer__logo {
  opacity: 1;
  transform: none;
  animation: o1LogoSway 6s ease-in-out 1.6s infinite;
}

.v2-footer__card.is-in .v2-footer__logo:hover { animation: o1LogoWiggle 0.7s ease; }

.v2-footer__branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-branch { padding: 0 clamp(12px, 2.5vw, 36px); }

.v2-branch__name {
  margin-bottom: 22px;
  font-family: var(--font-v2-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--red-400);
}

.v2-branch__label {
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-300);
}

.v2-branch__name + .v2-branch__label { margin-top: 0; }

.v2-branch__value {
  display: block;
  margin-top: 4px;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
}

.v2-branch__link { transition: color 0.25s ease; }
.v2-branch__link:hover,
.v2-branch__link:focus-visible { color: var(--red-400); }

.v2-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.v2-pill--olive { background: var(--v2-olive); color: var(--brand-white); }

.v2-pill--olive:hover,
.v2-pill--olive:focus-visible { background: var(--brand-white); color: var(--v2-olive-dark); }

.v2-branch__btn {
  margin-top: 24px;
  padding: 12px 28px;
  font-size: 0.95rem;
}

.v2-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(32px, 4vw, 44px);
  padding-top: clamp(4px, 1vw, 12px);
}

.v2-social__link {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--brand-white);
  color: var(--brand-white);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Red fill rises from the bottom on hover */
.v2-social__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-red);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.v2-social__link svg {
  position: relative;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.v2-social__link:hover,
.v2-social__link:focus-visible {
  border-color: var(--brand-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(208, 5, 13, 0.3);
}

.v2-social__link:hover::before,
.v2-social__link:focus-visible::before { transform: none; }

.v2-social__link:hover svg,
.v2-social__link:focus-visible svg { animation: o1IconPop 0.6s ease; }

.v2-footer__legal {
  margin-top: 26px;
  font-size: 0.8rem;
  color: var(--ink-300);
}

.v2-footer__legal a {
  font-weight: 600;
  color: var(--brand-white);
  transition: color 0.25s ease;
}

.v2-footer__legal a:hover,
.v2-footer__legal a:focus-visible { color: var(--red-300); }

/* Icons pop in one after another once the footer is on screen */
.v2-footer__card[data-rise] .v2-social li {
  opacity: 0;
  transform: scale(0.3) rotate(-90deg);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.6, 0.5, 1);
}

.v2-footer__card.is-in .v2-social li { opacity: 1; transform: none; }
.v2-footer__card.is-in .v2-social li:nth-child(1) { transition-delay: 0.6s; }
.v2-footer__card.is-in .v2-social li:nth-child(2) { transition-delay: 0.75s; }
.v2-footer__card.is-in .v2-social li:nth-child(3) { transition-delay: 0.9s; }

@media (max-width: 640px) {
  .v2-footer__branches { grid-template-columns: 1fr; }
  .v2-branch { padding: 0; }
  .v2-branch + .v2-branch { margin-top: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-footer__card[data-rise] .v2-social li,
  .v2-footer__card[data-rise] .v2-footer__logo { opacity: 1; transform: none; animation: none !important; }
  .v2-social__link:hover svg { animation: none; }
}

/* ==========================================================================
   Temporary placeholder — replaced as sections are built
   ========================================================================== */

.placeholder {
  display: grid;
  place-items: center;
  min-height: 180vh;
  padding: var(--gutter);
  color: var(--ink-400);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   RESPONSIVE
   One descending ladder. Each block only narrows what the one above it
   established, so later rules always win cleanly:

     1180  nav and hero tighten
      980  call block collapses to a dropdown · strip shows 4
      880  hero and about stack
      720  mobile header · strip shows 3 · buttons go full width
      560  actions stack · stats wrap
      400  smallest phones

   Keep this order. The 980 breakpoint is mirrored in main.js — if it
   changes here it has to change there too.
   ========================================================================== */

/* --- Laptop --- */
@media (max-width: 1180px) {
  .primary-nav__link { padding: 0 16px; }
  .btn-touch { padding: 0 20px; font-size: 0.82rem; }
  .header-call__num strong { font-size: 0.95rem; }

  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); }
  .hero__lead { line-height: 1.8; }

  .about__inner { gap: clamp(28px, 4vw, 48px); }
  .about__stats { gap: 24px; }
  .about__actions { gap: 24px; }
}

/* --- Small laptop / large tablet --- */
@media (max-width: 980px) {
  /* Inline phone numbers give way to a tap-to-open dropdown */
  .header-call__trigger { cursor: pointer; gap: 0; padding: 0; }
  .header-call__text { display: none; }

  .social-list__link { width: 34px; height: 34px; }
  .social-list__link svg { width: 14px; height: 14px; }
  .brand__logo { height: clamp(52px, 7.4vw, 70px); }

  .dish-strip { --strip-visible: 4; }
}

/* --- Tablet: the two-column layouts stack --- */
@media (max-width: 880px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    padding-bottom: 0;
    gap: 0;
  }

  .hero__content { padding-bottom: clamp(28px, 5vw, 44px); }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }

  .hero__lead {
    flex: 0 1 auto;
    padding: 0 0 0 18px;
    text-align: left;
    margin-inline: auto;
  }

  .hero__visual {
    min-height: 0;
    padding-top: 12px;
  }

  .hero__photo-wrap {
    max-width: min(560px, 88vw);
    margin-inline: auto;
    margin-bottom: 0;
  }

  .hero__arch {
    width: min(300px, 52vw);
    height: min(360px, 62vw);
  }

  .hero__badge {
    top: auto;
    bottom: clamp(-6px, 1vw, 18px);
    right: clamp(4px, 3vw, 28px);
    width: clamp(88px, 17vw, 118px);
  }

  /* About: copy first, photo below */
  .about__inner { grid-template-columns: 1fr; }
  .about__content { order: 1; }
  .about__visual { order: 2; width: min(460px, 100%); }
  .about__text { max-width: none; }
}

/* --- Mobile: header collapses to two compact rows --- */
@media (max-width: 720px) {
  :root { --header-nav-h: 54px; }

  .header-top__inner {
    padding: 8px var(--gutter);
    gap: 8px;
  }

  .social-list { display: none; }
  .brand__logo { height: 50px; }

  .header-call__icon { width: 42px; height: 42px; }
  .header-call__icon svg { width: 19px; height: 19px; }

  .primary-nav { display: none; }
  .header-nav__inner { padding-inline: 0; }

  .menu-toggle {
    width: auto;
    padding-inline: 20px;
    gap: 12px;
    grid-auto-flow: column;
    place-items: center;
  }

  /* The hamburger gets a visible label once it is the only way in */
  .menu-toggle .sr-only {
    position: static;
    width: auto; height: auto;
    margin: 0; clip: auto;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
  }

  .nav-logo { display: none; }

  .btn-touch {
    margin-left: auto;
    padding: 0 18px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .btn-touch span { display: none; }
  .btn-touch svg { width: 20px; height: 20px; }

  /* Hero */
  .hero__inner { padding-top: clamp(32px, 7vw, 48px); }
  .hero__title { font-size: clamp(2.2rem, 10.5vw, 3.4rem); }
  .hero__eyebrow { letter-spacing: 0.26em; }
  .hero__cta { width: 100%; }
  .hero__lead { line-height: 1.75; }
  .btn { width: 100%; justify-content: center; padding: 16px 24px; }

  /* Strip */
  .dish-strip { --strip-visible: 3; --strip-speed: 34s; }

  /* About */
  .about .section-title { font-size: clamp(1.45rem, 6vw, 1.9rem); }
  .about__actions .btn { width: auto; }
}

/* --- Small phones --- */
@media (max-width: 560px) {
  .about__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .about__call { justify-content: flex-start; }
  .about__stats { gap: 18px 28px; }
  .about__stat { flex: 1 1 100px; }

  .drawer { width: min(340px, 90vw); }
}

/* --- Smallest phones --- */
@media (max-width: 400px) {
  .brand__logo { height: 42px; }
  .menu-toggle { padding-inline: 14px; gap: 9px; }
  .menu-toggle .sr-only { font-size: 0.74rem; }

  .hero__title { font-size: clamp(1.95rem, 11vw, 2.6rem); }
  .hero__badge { width: 78px; }

  .dish-strip { --strip-gap: 8px; }
  .about__stats { gap: 16px 20px; }
}

/* --- Landscape phones: the hero must not demand a tall screen --- */
@media (max-height: 560px) and (orientation: landscape) {
  .hero__inner {
    min-height: 0;
    padding-block: 28px 0;
  }
  .hero__title { font-size: clamp(1.8rem, 5.2vw, 2.8rem); }
  .hero__photo-wrap { max-width: min(420px, 42vw); }
  .drawer { gap: 18px; padding-block: 16px; }
  .drawer__logo { width: min(150px, 46%); }
}

/* --- Large desktop: let the hero breathe --- */
@media (min-width: 1600px) {
  .hero__inner { min-height: clamp(620px, 72svh, 820px); }
}
