/* =========================================================
   Olaya's Tamales — Rogersville, TN
   ========================================================= */

:root {
  /* Palette pulled from the truck wrap / logo */
  --red:        #C8102E;
  --red-deep:   #9B0B23;
  --red-bright: #E8283F;
  --green:      #2F7A3E;
  --green-deep: #1F5A2C;
  --gold:       #F2A93B;
  --gold-deep:  #D98A18;
  --cream:      #FFF8EC;
  --ink:        #2A1A12;
  --ink-soft:   #5B4638;
  --line:       #E7D6BE;
  --white:      #FFFFFF;

  --shadow-sm: 0 2px 6px rgba(42, 26, 18, .08);
  --shadow-md: 0 10px 30px rgba(42, 26, 18, .13);
  --shadow-lg: 0 24px 60px rgba(42, 26, 18, .20);

  --radius:    18px;
  --radius-lg: 28px;

  --font-display: "Alfa Slab One", Georgia, "Times New Roman", serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1200px;
  --header-h: 86px;

  /* Solid section surfaces — a warm scale drawn off the logo cream and gold,
     so adjacent sections separate by tone alone. */
  --surface-1: #FFF6DB;   /* bright cream */
  --surface-2: #FFE9BE;   /* bright wheat */
  --surface-3: #FFDB9B;   /* bright amber */
  --surface-4: #E3F1D8;   /* bright mint  — breaks up the warm run */
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--surface-1);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.005em;
  margin: 0;
}

p { margin: 0 0 1em; }

a { color: var(--red); }
a:hover { color: var(--red-deep); }

.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .82em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn .ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 0 var(--red-deep), var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-bright); color: var(--white); box-shadow: 0 8px 0 var(--red-deep), var(--shadow-md); }
.btn-primary:active { box-shadow: 0 3px 0 var(--red-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: var(--white); color: var(--red-deep); }

.btn-lg { font-size: 1.05rem; padding: 1em 1.9em; }

.btn-call {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 0 var(--green-deep);
}
.btn-call:hover { background: #37904a; color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 246, 219, .94);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
  transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
  padding-block: .5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}
.brand-mark {
  width: 64px; height: 64px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  object-fit: cover;
  background: var(--white);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.26rem;
  color: var(--red);
}
.brand-sub {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: .18em;
}

.nav { display: flex; gap: 1.6rem; }
.nav a {
  font-weight: 700;
  font-size: .93rem;
  text-decoration: none;
  color: var(--ink);
  padding: .35em 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--red); }

.nav-toggle {
  display: none;
  width: 46px; height: 42px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s 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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  background: var(--surface-2);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(47, 122, 62, .1);
  border: 1.5px solid rgba(47, 122, 62, .28);
  padding: .5em 1em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47,122,62,.55); }
  50%      { box-shadow: 0 0 0 7px rgba(47,122,62,0); }
}

.hero-title {
  font-size: clamp(2.45rem, 5vw, 3.9rem);
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.hero-title .hl {
  color: var(--red);
  position: relative;
  white-space: nowrap;
}
.hero-title .hl::after {
  content: "";
  position: absolute;
  left: -.04em; right: -.04em; bottom: .04em;
  height: .16em;
  background: var(--gold);
  border-radius: 999px;
  z-index: -1;
}

.hero-lede {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.7rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.6rem; }

.hero-note {
  font-size: .92rem;
  color: var(--ink-soft);
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin: 0;
  max-width: 42ch;
}
.hero-note strong { color: var(--red); }

/* Hero artwork */
.hero-art { position: relative; }

.shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }

.shot-main { transform: rotate(-1.6deg); }

.shot-inset {
  position: absolute;
  right: -1.5rem;
  bottom: -2.5rem;
  width: 46%;
  transform: rotate(3.2deg);
  border-width: 4px;
  box-shadow: var(--shadow-lg);
}

.badge-round {
  position: absolute;
  top: -1.6rem;
  left: -1.6rem;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: 4px solid var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: .82rem;
  line-height: 1.25;
  transform: rotate(-11deg);
  box-shadow: var(--shadow-md);
}

/* ---------- Papel picado ---------- */
.papel {
  height: 46px;
  background-repeat: repeat-x;
  background-position: top center;
  background-size: auto 46px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='46' viewBox='0 0 240 46'%3E%3Cdefs%3E%3Cpath id='f' fill-rule='evenodd' d='M0 3h56v26l-28 14L0 29Z M28 13m-6.5 0a6.5 6.5 0 1 0 13 0a6.5 6.5 0 1 0-13 0 M13 22l4.5 4.5L13 31l-4.5-4.5Z M43 22l4.5 4.5L43 31l-4.5-4.5Z'/%3E%3C/defs%3E%3Cpath d='M0 3h240' stroke='%232A1A12' stroke-width='2.5' fill='none'/%3E%3Cuse href='%23f' x='0' fill='%23C8102E'/%3E%3Cuse href='%23f' x='60' fill='%232F7A3E'/%3E%3Cuse href='%23f' x='120' fill='%23F2A93B'/%3E%3Cuse href='%23f' x='180' fill='%23E8407A'/%3E%3C/svg%3E");
}
.papel-up { transform: scaleY(-1); }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--red);
  color: var(--white);
  border-block: 3px solid var(--ink);
  overflow: hidden;
  padding: .7rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-x 45s linear infinite;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: .02em;
}
/* Two identical groups, each carrying its own trailing gap, so a -50%
   shift lands exactly one group over and the loop is seamless. */
.ticker-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex: none;
}
.ticker-track i { color: var(--gold); font-style: normal; font-size: .7em; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Section shell ---------- */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }

.kicker {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.kicker.light { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  color: var(--ink);
  margin-bottom: .7rem;
}
.section-title.light { color: var(--white); }

.section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Find us ---------- */
.find {
  background: var(--surface-4);
  border-block: 3px solid var(--ink);
}

.find-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stop-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 6px 0 rgba(42, 26, 18, .12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stop-card:hover { transform: translateY(-4px); box-shadow: 0 10px 0 rgba(42, 26, 18, .14); }

.stop-pin {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.stop-pin svg { width: 26px; height: 26px; fill: var(--white); }
.stop-card-alt .stop-pin { background: var(--green); }

.stop-card h3 { font-size: 1.22rem; margin-bottom: .25rem; }
.stop-town {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .7rem;
}
.stop-card p:last-child { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.find-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.find-cta h3 { font-size: clamp(1.3rem, 2.3vw, 1.75rem); color: var(--white); margin-bottom: .4rem; }
.find-cta p { margin: 0; color: rgba(255, 248, 236, .78); max-width: 46ch; }
.find-cta-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }
.find-cta .btn-ghost { color: var(--cream); border-color: rgba(255,248,236,.5); }
.find-cta .btn-ghost:hover { background: var(--cream); color: var(--ink); }

/* ---------- Menu ---------- */
.menu { background: var(--surface-3); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.menu-card {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 6px 0 rgba(42, 26, 18, .12);
}

.menu-card-feature {
  grid-column: 1 / -1;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(200px, 34%) 1fr;
  background: var(--gold);
}
.menu-card-media { overflow: hidden; }
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.menu-card-body {
  padding: 1.9rem 1.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.menu-card-feature .menu-desc { max-width: 58ch; }

.menu-cat {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}
.menu-card-feature .menu-cat { color: var(--red-deep); }

.menu-card h3 { font-size: 1.5rem; margin-bottom: .8rem; color: var(--ink); }
.menu-card-feature h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

.menu-desc { color: var(--ink); margin-bottom: 1rem; }
.menu-tag {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  font-size: .8rem;
  font-weight: 700;
  padding: .5em 1em;
  border-radius: 999px;
  margin: 0;
}

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: flex;
  flex-direction: column;
  padding: .8rem 0;
  border-bottom: 2px dotted var(--line);
}
.menu-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-list span { font-weight: 800; font-size: 1.02rem; }
.menu-list em {
  font-style: normal;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-top: .12em;
}

.menu-foot {
  margin: 2.25rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: .98rem;
}

/* ---------- Stats band ---------- */
.stats {
  background: var(--red);
  color: rgba(255, 248, 236, .85);
  border-block: 3px solid var(--ink);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.stat { text-align: center; }
.stat + .stat { border-left: 2px dotted rgba(255, 248, 236, .3); padding-left: clamp(1.5rem, 3vw, 3rem); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 3.9rem);
  line-height: 1;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  margin: .6rem 0 .7rem;
}
.stat p {
  margin: 0 auto;
  font-size: .95rem;
  max-width: 32ch;
}

/* ---------- Story ---------- */
.story { background: var(--surface-1); border-block: 3px solid var(--ink); }

.story-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-art { position: relative; }
.story-art .shot { transform: rotate(-2deg); }

.story-stamp {
  position: absolute;
  right: -1.2rem;
  bottom: -1.2rem;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: 4px solid var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: .9rem;
  line-height: 1.2;
  transform: rotate(9deg);
  box-shadow: var(--shadow-md);
}

.story-body p { color: var(--ink-soft); }
.story-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.1rem;
  float: left;
  line-height: .8;
  padding: .1em .12em 0 0;
  color: var(--red);
}

.story-quote {
  margin-top: 1.75rem;
  border-left: 5px solid var(--red);
  padding: .3rem 0 .3rem 1.25rem;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

/* ---------- Food wall ---------- */
.food { background: var(--surface-4); }

.food-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 215px;
  gap: 1rem;
}

.fw-hero { grid-column: span 2; grid-row: span 2; }
.fw-tall { grid-row: span 2; }

.gal-item .fw-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.4rem 1.1rem .9rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  text-shadow: 0 2px 10px rgba(28, 17, 11, .8);
  background: linear-gradient(180deg, transparent, rgba(28, 17, 11, .78));
  transform: translateY(8px);
  opacity: .96;
  transition: transform .25s ease;
}
.gal-item:hover .fw-cap { transform: translateY(0); }
.fw-hero .fw-cap { font-size: 1.3rem; padding: 1.8rem 1.5rem 1.2rem; }

/* Text tile — keeps the wall balanced and points at the daily posts */
.fw-more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--red);
  padding: 1.4rem 1.3rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.fw-more:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.fw-more-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.fw-more-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.15;
  color: var(--white);
}
.fw-more-link {
  margin-top: .35rem;
  font-weight: 800;
  font-size: .88rem;
  color: var(--cream);
}

/* ---------- Gallery ---------- */
.gallery { background: var(--surface-2); border-top: 3px solid var(--ink); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.gal-item {
  position: relative;
  padding: 0;
  margin: 0;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.gal-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gal-item:hover img { transform: scale(1.06); }

.gal-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42, 26, 18, .35));
  opacity: 0;
  transition: opacity .25s ease;
}
.gal-item:hover::after { opacity: 1; }

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* ---------- Catering ---------- */
.catering {
  background: var(--green-deep);
  color: rgba(255, 248, 236, .88);
  border-top: 3px solid var(--ink);
  overflow: hidden;
}

.catering-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.catering-copy p { max-width: 52ch; }

.catering-list {
  list-style: none;
  margin: 0 0 1.9rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.catering-list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 500;
}
.catering-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 11px; height: 11px;
  border-radius: 3px;
  background: var(--gold);
  transform: rotate(45deg);
}

.catering-cta { display: flex; flex-wrap: wrap; gap: .85rem; }

.catering-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 248, 236, .75);
  border-top: 3px solid var(--ink);
  padding-top: clamp(2.75rem, 5vw, 4rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(160px, .8fr) repeat(3, 1fr);
  gap: 2.25rem;
  padding-bottom: 2.75rem;
}

.footer-brand img {
  width: 100%;
  max-width: 200px;
  border-radius: var(--radius);
  border: 3px solid rgba(255, 248, 236, .18);
}

.footer-col h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .85rem;
}
.footer-col p { font-size: .95rem; }

.footer-phone a {
  font-family: var(--font-display);
  font-size: 1.42rem;
  color: var(--white);
  text-decoration: none;
}
.footer-phone a:hover { color: var(--gold); }

.social { display: flex; gap: .65rem; margin-top: 1.1rem; }
.social a {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 236, .1);
  border: 1.5px solid rgba(255, 248, 236, .22);
  transition: background-color .2s ease, transform .2s ease;
}
.social a:hover { background: var(--red); transform: translateY(-2px); }
.social svg { width: 21px; height: 21px; fill: var(--cream); }

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-links a {
  color: rgba(255, 248, 236, .78);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }

.footer-base {
  border-top: 1px solid rgba(255, 248, 236, .14);
  padding: 1.35rem 0 calc(1.35rem + env(safe-area-inset-bottom));
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: .85rem;
}
.footer-base p { margin: 0; }
.footer-tag { font-family: var(--font-display); color: var(--gold); }

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  padding: .95rem 1rem calc(.95rem + env(safe-area-inset-bottom));
  border-top: 3px solid var(--ink);
  box-shadow: 0 -6px 20px rgba(42, 26, 18, .22);
}
.call-bar .ico { width: 1.15em; height: 1.15em; fill: currentColor; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(28, 17, 11, .94);
  backdrop-filter: blur(6px);
  animation: fade-in .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.lb-figure { margin: 0; display: grid; justify-items: center; gap: .9rem; min-width: 0; }
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  border-radius: 14px;
  border: 3px solid rgba(255, 248, 236, .22);
  object-fit: contain;
}
.lb-figure figcaption {
  color: rgba(255, 248, 236, .82);
  font-size: .95rem;
  text-align: center;
  max-width: 52ch;
}

.lb-nav, .lb-close {
  background: rgba(255, 248, 236, .12);
  border: 1.5px solid rgba(255, 248, 236, .28);
  color: var(--cream);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color .2s ease;
  line-height: 1;
}
.lb-nav { width: 52px; height: 52px; font-size: 2rem; padding-bottom: .12em; }
.lb-nav:hover, .lb-close:hover { background: var(--red); }

.lb-close {
  position: absolute;
  top: clamp(.75rem, 2vw, 1.5rem);
  right: clamp(.75rem, 2vw, 1.5rem);
  width: 46px; height: 46px;
  font-size: 1.9rem;
  padding-bottom: .1em;
}

body.lb-open { overflow: hidden; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .68, .34, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1024px) {
  .food-wall { grid-auto-rows: 185px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 40rem; }
  .hero-lede { max-width: none; }
  .hero-art { max-width: 34rem; margin-top: 1rem; }
  .story-inner { grid-template-columns: 1fr; }
  .story-art { max-width: 26rem; }
  .catering-inner { grid-template-columns: 1fr; }
  .catering-art { max-width: 34rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-brand img { max-width: 150px; }
}

@media (max-width: 860px) {
  :root { --header-h: 76px; }

  .food-wall { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .fw-hero { grid-column: span 2; grid-row: span 2; }
  .fw-tall { grid-row: span 1; }
  .fw-more { grid-column: span 2; }
  .fw-hero .fw-cap { font-size: 1.1rem; }

  .header-call { display: none; }
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 3px solid var(--ink);
    box-shadow: var(--shadow-md);
    padding: .5rem 1.25rem 1.25rem;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: .9rem .25rem;
    border-bottom: 2px dotted var(--line);
    font-size: 1.05rem;
  }
  .nav a::after { display: none; }

  .brand-mark { width: 54px; height: 54px; }
  .brand-name { font-size: 1.12rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal-wide { grid-column: span 2; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-feature { grid-template-columns: 1fr; }
  .menu-card-media img { min-height: 220px; max-height: 300px; }

  .call-bar { display: flex; }
  body { padding-bottom: 64px; }

  .find-cta { flex-direction: column; align-items: flex-start; }

  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat {
    border-left: 0;
    padding-left: 0;
    border-top: 2px dotted rgba(255, 248, 236, .3);
    padding-top: 1.75rem;
  }

  .papel, .papel-up { height: 34px; background-size: auto 34px; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 1.75rem, var(--wrap)); }

  .hero { padding-top: 2rem; }
  .badge-round { width: 84px; height: 84px; font-size: .68rem; top: -1rem; left: -.75rem; }
  .shot-inset { width: 52%; right: -.5rem; bottom: -1.75rem; }
  .story-stamp { width: 82px; height: 82px; font-size: .74rem; right: -.5rem; bottom: -.75rem; }

  .hero-cta .btn, .catering-cta .btn, .find-cta-buttons .btn { width: 100%; }

  .gallery-grid { grid-auto-rows: 140px; }
  .food-wall { grid-auto-rows: 142px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-base { flex-direction: column; }

  .lightbox { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .lb-nav {
    position: relative;
    width: 46px; height: 46px;
  }
  .lb-prev { grid-column: 1; grid-row: 2; justify-self: end; margin-right: 4rem; }
  .lb-next { grid-column: 1; grid-row: 2; justify-self: end; }
  .lb-figure { grid-column: 1; grid-row: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .eyebrow .dot { animation: none; }
  .btn:hover, .gal-item:hover, .stop-card:hover, .social a:hover { transform: none; }
  .gal-item:hover img { transform: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

@media print {
  .site-header, .call-bar, .lightbox, .ticker, .nav-toggle { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1; transform: none; }
}
