/* =========================================================================
   Carnitas Angel y Jenny
   Design direction: "El Cazo" — grounded in the copper pot carnitas are
   cooked in, the butcher paper they're wrapped in, and the hand-painted
   rótulo lettering their truck banner already uses.
   Mobile-first. Every breakpoint below is min-width.
   ========================================================================= */

/* ---------- Fonts (self-hosted, latin subset) ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo.woff2') format('woff2-variations');
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo Black';
  src: url('/assets/fonts/archivoblack.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Grand Hotel';
  src: url('/assets/fonts/grandhotel.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Palette — taken from their existing logo (soft pink ground, dark
     slate-teal bars, pink pig with brown spots) plus the food itself. */
  --soot:    #1B3238;  /* dark slate teal — their logo's header bars */
  --soot-2:  #24444A;  /* raised surface on dark */
  --night:   #101F23;  /* deepest teal-black, footer only */
  --cazo:    #B4682E;  /* burnished copper — the pot, the pig's spots */
  --cazo-lo: #8A4E21;
  --crisp:   #E8A427;  /* the golden crispy edge */
  --pig:     #F2A0B5;  /* their mascot pink */
  --pig-lo:  #D9758F;
  --paper:   #F7EBE2;  /* their logo's soft pink-cream ground */
  --paper-2: #EBD9CD;
  --lime:    #9DBF3E;  /* cilantro — only ever the "open" light */
  --ink:     #2A1F1A;  /* body text on paper */
  --ink-mut: #6B564B;

  --shadow-hard: 3px 3px 0 var(--cazo);

  /* Type scale — fluid, tuned so the hero never overflows a 320px screen */
  --t-hero: clamp(3rem, 15.5vw, 8.5rem);
  --t-h2:   clamp(2rem, 8.5vw, 4rem);
  --t-h3:   clamp(1.15rem, 4vw, 1.5rem);
  --t-body: clamp(1rem, 3.6vw, 1.125rem);
  --t-lede: clamp(1.06rem, 4vw, 1.3rem);
  --t-sm:   .875rem;
  --t-xs:   .75rem;

  --wrap: 1180px;
  --gut: clamp(1.15rem, 5vw, 2.5rem);
  --sec-y: clamp(3.5rem, 11vw, 7rem);
  --r: 14px;

  /* Height of the mobile call bar, so content can clear it */
  --callbar-h: calc(72px + env(safe-area-inset-bottom, 0px));
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--soot);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Clear the sticky call bar on mobile */
  padding-bottom: var(--callbar-h);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
:where(h1,h2,h3) { line-height: 1.02; text-wrap: balance; }
p { text-wrap: pretty; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Focus — visible on every background */
:focus-visible {
  outline: 3px solid var(--crisp);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--crisp); color: var(--soot); padding: .8rem 1.2rem;
  font-weight: 700; text-decoration: none;
}
.skip:focus { left: .5rem; top: .5rem; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* =========================================================================
   Display type — the rótulo device.
   Heavy grotesque, tracked tight, with a hard offset shadow the way a
   hand-painted truck sign has a painted drop shadow.
   ========================================================================= */
.h2 {
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  font-size: var(--t-h2);
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--soot);
  text-shadow: var(--shadow-hard);
}
.h2--light { color: var(--paper); }
.h2 em {
  display: block;
  font-family: 'Grand Hotel', cursive;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.32em;
  line-height: .95;
  color: var(--cazo);
  text-shadow: none;
  margin-top: .1em;
}

/* Copper at full strength fails AA against the cream ground at these sizes,
   so text roles use the deeper copper; --cazo stays for borders and shadows.
   On the dark sections, amber carries far better than copper. */
.eyebrow {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cazo-lo);
  margin-bottom: .85rem;
}
.sec--dark .eyebrow { color: var(--crisp); }

/* =========================================================================
   Header
   ========================================================================= */
.hdr {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 1rem;
  padding: .6rem var(--gut);
  background: color-mix(in srgb, var(--soot) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(242,231,213,.1);
  transition: background .25s ease;
}
.hdr__brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; margin-right: auto;
}
.hdr__pig { width: 36px; height: 36px; color: var(--pig); flex: none; }
.hdr__names { display: flex; flex-direction: column; line-height: 1; }
.hdr__l1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: .95rem; letter-spacing: -.02em; text-transform: uppercase;
  color: var(--paper);
}
.hdr__l2 {
  font-family: 'Grand Hotel', cursive;
  font-size: 1.05rem; color: var(--pig); margin-top: .05em;
}

.hdr__nav { display: none; }

.hdr__right { display: flex; align-items: center; gap: .6rem; }

.lang { display: flex; border: 1px solid rgba(242,231,213,.25); border-radius: 999px; overflow: hidden; }
.lang__btn {
  display: grid; place-items: center;
  min-height: 44px; min-width: 44px; /* thumb target */
  padding: .3rem .55rem; font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .06em; color: rgba(242,231,213,.72);
  transition: background .18s ease, color .18s ease;
}
.lang__btn[aria-pressed="true"] { background: var(--paper); color: var(--soot); }

.hdr__call { display: none; }

@media (min-width: 900px) {
  .hdr { padding-block: .75rem; gap: 2rem; }
  .hdr__pig { width: 44px; height: 44px; }
  .hdr__l1 { font-size: 1.1rem; }
  .hdr__l2 { font-size: 1.25rem; }
  .hdr__nav { display: flex; gap: 1.75rem; }
  .hdr__nav a {
    font-size: var(--t-sm); font-weight: 600; text-decoration: none;
    color: rgba(242,231,213,.8); position: relative; padding-block: .3rem;
  }
  .hdr__nav a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
    background: var(--pig); transform: scaleX(0); transform-origin: left;
    transition: transform .22s ease;
  }
  .hdr__nav a:hover::after, .hdr__nav a:focus-visible::after { transform: scaleX(1); }
  .hdr__call {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--crisp); color: var(--soot);
    padding: .6rem 1rem; border-radius: 999px;
    font-weight: 700; font-size: var(--t-sm); text-decoration: none;
    transition: transform .18s ease, background .18s ease;
  }
  .hdr__call svg { width: 17px; height: 17px; }
  .hdr__call:hover { background: var(--pig); transform: translateY(-1px); }
}

/* =========================================================================
   HERO — the daily board
   ========================================================================= */
.hero {
  position: relative; overflow: hidden;
  /* Warm corner bloom. Pink sits cleanly over teal; amber alone turns olive,
     so it's kept tight to the corner where it reads as heat, not haze. */
  background:
    radial-gradient(34% 30% at 100% -2%, rgba(232,164,39,.26), transparent 66%),
    radial-gradient(52% 44% at 92% 0%, rgba(242,160,181,.22), transparent 72%),
    radial-gradient(46% 40% at 0% 100%, rgba(242,160,181,.12), transparent 72%),
    linear-gradient(178deg, #1E373D 0%, #16292E 100%);
  padding: clamp(2.5rem, 9vw, 5.5rem) var(--gut) clamp(3rem, 10vw, 6rem);
  min-height: min(88svh, 780px);
  display: flex; align-items: center;
}
/* Fine grain so the dark reads as painted metal, not a flat UI panel */
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero__board { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto; }

/* Live status */
.status {
  display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  padding: .5rem .95rem;
  border: 1px solid rgba(242,231,213,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.3);
  font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper);
  margin-bottom: clamp(1.1rem, 4vw, 1.8rem);
}
.status__dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--crisp);
  box-shadow: 0 0 0 0 currentColor;
}
.status__sep { color: rgba(242,231,213,.35); }
.status__text { color: var(--crisp); letter-spacing: .06em; }
.status[data-state="open"] .status__dot { background: var(--lime); animation: pulse 2.4s ease-out infinite; }
.status[data-state="open"] .status__text { color: var(--lime); }
.status[data-state="soldout"] .status__dot,
.status[data-state="closed"] .status__dot { background: var(--pig-lo); }
.status[data-state="soldout"] .status__text,
.status[data-state="closed"] .status__text { color: var(--pig); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(157,191,62,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(157,191,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(157,191,62,0); }
}

.hero__h {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--t-hero);
  line-height: .84;
  letter-spacing: -.045em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 4px 4px 0 var(--cazo-lo);
  margin-bottom: clamp(1.1rem, 4vw, 1.6rem);
}
.hero__line { display: block; }
.hero__line--accent { color: var(--crisp); text-shadow: 4px 4px 0 rgba(0,0,0,.45); }

.hero__sub {
  max-width: 46ch;
  font-size: var(--t-lede);
  color: rgba(242,231,213,.82);
  margin-bottom: clamp(1.6rem, 5vw, 2.4rem);
}

.hero__acts { display: flex; flex-direction: column; gap: .75rem; max-width: 420px; }

.hero__note {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  margin-top: clamp(1.4rem, 4vw, 2rem);
  font-size: var(--t-sm); color: rgba(242,231,213,.6);
}
.hero__note svg { width: 16px; height: 16px; flex: none; }
.hero__note a { color: var(--pig); font-weight: 700; text-underline-offset: 3px; }

.hero__mascot {
  position: absolute; z-index: 1;
  right: -14%; bottom: -12%;
  width: min(62vw, 340px); height: auto;
  color: var(--pig); opacity: .1;
  transform: rotate(-8deg);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero__acts { flex-direction: row; max-width: none; }
  .hero__mascot { right: -3%; bottom: -8%; width: min(38vw, 460px); opacity: .13; }
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  padding: .95rem 1.4rem;
  border-radius: var(--r);
  font-weight: 700; text-decoration: none;
  min-height: 56px; /* comfortable thumb target */
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn svg { width: 22px; height: 22px; flex: none; }
.btn__stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn__stack small { font-size: var(--t-xs); font-weight: 600; opacity: .9; letter-spacing: .04em; }
.btn__stack strong { font-size: 1.15rem; letter-spacing: -.01em; }

.btn--call { background: var(--crisp); color: var(--soot); box-shadow: 0 0 0 0 rgba(232,164,39,.5); }
.btn--call:hover { background: var(--pig); transform: translateY(-2px); }
.btn--map  { background: rgba(242,231,213,.09); color: var(--paper); border: 1px solid rgba(242,231,213,.24); }
.btn--map:hover { background: rgba(242,231,213,.16); transform: translateY(-2px); }
.btn--pig  { background: var(--pig); color: var(--soot); }
.btn--pig:hover { background: var(--crisp); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--paper); border: 1px solid rgba(242,231,213,.35); }
.btn--ghost:hover { background: rgba(242,231,213,.1); }
.btn--fb { background: var(--paper); color: var(--soot); }
.btn--ig { background: var(--pig); color: var(--soot); }
.btn--fb:hover, .btn--ig:hover { transform: translateY(-2px); }

/* =========================================================================
   Ticker — the sign-painter's repeated word band
   ========================================================================= */
.ticker {
  background: var(--pig); color: var(--soot);
  border-block: 3px solid var(--soot);
  padding-block: .6rem;
  overflow: hidden; display: flex;
}
.ticker__track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.ticker__set { display: flex; align-items: center; flex: none; white-space: nowrap; }
.ticker__set b {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(.85rem, 3vw, 1.1rem);
  letter-spacing: .02em; text-transform: uppercase;
  padding-inline: 1.1rem;
  white-space: nowrap;
}
.ticker__set i { width: 7px; height: 7px; border-radius: 50%; background: var(--soot); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
  .status[data-state="open"] .status__dot { animation: none; }
}

/* =========================================================================
   Sections
   ========================================================================= */
.sec { padding-block: var(--sec-y); position: relative; }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--dark  { background: var(--soot); color: var(--paper); }
.sec--pig   { background: var(--pig); color: var(--soot); }

/* Paper grain, light sections only */
.sec--paper::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23p)' opacity='.16'/%3E%3C/svg%3E");
}
.sec > .wrap { position: relative; z-index: 1; }

.sec__head { margin-bottom: clamp(2rem, 6vw, 3.25rem); max-width: 42ch; }
.sec__intro { margin-top: 1rem; opacity: .75; }
.sec--dark .sec__intro { color: rgba(242,231,213,.7); }

/* ---------- The carnitas ---------- */
.carn__grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); }
.pull {
  border-left: 4px solid var(--cazo);
  padding: .2rem 0 .2rem 1.1rem;
  margin-block: clamp(1.25rem, 4vw, 1.75rem);
}
.pull p {
  font-family: 'Grand Hotel', cursive;
  font-size: clamp(1.45rem, 6vw, 2.1rem);
  line-height: 1.18; color: var(--crisp);
}
.pull cite {
  display: block; margin-top: .5rem;
  font-style: normal; font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(247,235,226,.66);
}
.lede { font-size: var(--t-lede); color: rgba(247,235,226,.82); }
.chich {
  display: flex; gap: .8rem; align-items: flex-start;
  margin-top: clamp(1.4rem, 4vw, 1.9rem);
  padding: 1rem 1.15rem;
  background: rgba(232,164,39,.1);
  border: 1px dashed var(--crisp);
  border-radius: var(--r);
}
.chich svg { width: 22px; height: 22px; color: var(--crisp); flex: none; margin-top: .15rem; }
.chich p { font-weight: 600; color: var(--paper); }
.carn .shot figcaption { color: rgba(247,235,226,.55); }

@media (min-width: 900px) {
  .carn__grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
}

/* ---------- Photo slots ----------
   Designed placeholders, not empty grey boxes. Swap .shot__ph for an <img>
   when the real photos arrive; the frame and caption stay as-is. */
.shot { position: relative; }
.shot__ph {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r);
  overflow: hidden;
  display: grid; place-items: center;
  background:
    radial-gradient(80% 80% at 30% 20%, rgba(232,164,39,.5), transparent 70%),
    linear-gradient(150deg, var(--cazo), var(--cazo-lo) 55%, #5E3517);
  box-shadow: 0 14px 34px rgba(22,17,15,.22);
}
.shot__ph svg { width: 34%; height: auto; color: var(--paper); opacity: .26; }
.shot__ph::after {
  content: attr(data-label);
  position: absolute; inset: auto .7rem .7rem;
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .05em;
  color: rgba(242,231,213,.75); text-transform: uppercase;
}
.shot--tall .shot__ph { aspect-ratio: 3 / 4; }
/* Real photos inherit the placeholder's frame: same ratio, radius and shadow. */
.shot img {
  display: block;
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r);
  box-shadow: 0 14px 34px rgba(22,17,15,.22);
}
.shot--tall img { aspect-ratio: 3 / 4; }
.shot figcaption {
  margin-top: .7rem; font-size: var(--t-sm); color: var(--ink-mut); font-weight: 600;
}

/* ---------- Menu board ---------- */
.menu__cat {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cazo-lo);
  margin-top: clamp(2rem, 6vw, 3rem);
  margin-bottom: .4rem;
}
.menu__cat:first-of-type { margin-top: 0; }

.board { border-top: 2px solid rgba(42,31,26,.16); }
.board__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .35rem 1rem;
  align-items: baseline;
  padding-block: clamp(.95rem, 3.5vw, 1.3rem);
  border-bottom: 2px solid rgba(42,31,26,.16);
}
.board__name { grid-column: 1; }
.board__name h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--t-h3); letter-spacing: -.02em; text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
}
.board__name p { font-size: var(--t-sm); color: var(--ink-mut); margin-top: .3rem; max-width: 48ch; }
.board__dots { display: none; }
.board__price {
  grid-column: 2; grid-row: 1;
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--t-h3); color: var(--cazo-lo); letter-spacing: -.02em;
  white-space: nowrap;
}
.board__price sup { font-size: .58em; top: -.55em; position: relative; }

@media (min-width: 700px) {
  .board__row { grid-template-columns: minmax(0,1fr) minmax(2rem,1fr) auto; }
  .board__dots {
    display: block; grid-column: 2; align-self: end;
    border-bottom: 2px dotted rgba(42,31,26,.3); margin-bottom: .45rem;
  }
  .board__price { grid-column: 3; }
}

/* Weekend-only by-the-pound. Their one "take it home" offer — real, and
   genuinely limited to Sat/Sun, so it gets its own framed block. */
.pound {
  margin-top: clamp(2rem, 6vw, 3rem);
  padding: clamp(1.4rem, 5vw, 2.2rem);
  background: var(--soot);
  border-radius: var(--r);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.pound__flag {
  display: inline-block;
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--soot);
  background: var(--crisp); padding: .3rem .7rem; border-radius: 999px;
  margin-bottom: .9rem;
}
.pound h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--t-h2); text-transform: uppercase; letter-spacing: -.03em;
  color: var(--paper); text-shadow: 3px 3px 0 var(--cazo-lo);
  margin-bottom: .6rem;
}
.pound__copy { color: rgba(247,235,226,.75); font-size: var(--t-sm); max-width: 44ch; }
.pound__rows { margin-top: 1.4rem; display: grid; gap: .5rem; max-width: 34rem; }
.pound__rows li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding-block: .6rem;
  border-bottom: 1px dashed rgba(247,235,226,.24);
  font-size: var(--t-sm); color: rgba(247,235,226,.85);
}
.pound__rows li:last-child { border-bottom: 0; }
.pound__rows b {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.35rem; color: var(--crisp); letter-spacing: -.02em; white-space: nowrap;
}
.pound__rows b small { font-size: .55em; font-weight: 400; opacity: .75; margin-left: .1em; }

.salsa {
  display: flex; align-items: center; gap: .7rem; flex-wrap: wrap;
  margin-top: clamp(1.5rem, 5vw, 2rem);
  padding: 1rem 1.15rem;
  background: var(--pig);
  border-radius: var(--r);
  color: var(--ink);
  font-size: var(--t-sm); font-weight: 600;
}
.salsa svg { width: 22px; height: 22px; color: var(--cazo-lo); flex: none; }
.salsa b { font-family: 'Archivo Black', sans-serif; letter-spacing: .01em; text-transform: uppercase; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: clamp(1.5rem, 5vw, 2.25rem); counter-reset: s; }
.step { position: relative; padding-top: 3.4rem; }
.step__n {
  position: absolute; top: 0; left: 0;
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  background: var(--cazo); color: var(--paper);
  font-family: 'Archivo Black', sans-serif; font-size: 1.15rem;
}
.step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: var(--t-h3); text-transform: uppercase; letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.step p { color: var(--ink-mut); }
.step__link {
  display: inline-block; margin-top: .7rem;
  font-weight: 700; color: var(--cazo-lo);
  text-underline-offset: 4px; text-decoration-thickness: 2px;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Find us ---------- */
.find__grid { display: grid; gap: clamp(1.75rem, 5vw, 3rem); }
.addr {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: 1.15rem;
  background: var(--soot-2);
  border: 1px solid rgba(242,231,213,.14);
  border-radius: var(--r);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}
.addr:hover { border-color: var(--pig); transform: translateY(-2px); }
.addr svg { width: 24px; height: 24px; color: var(--pig); flex: none; margin-top: .15rem; }
.addr span { display: flex; flex-direction: column; gap: .15rem; color: rgba(242,231,213,.7); font-size: var(--t-sm); }
.addr strong {
  font-family: 'Archivo Black', sans-serif; font-size: 1.25rem;
  letter-spacing: -.02em; color: var(--paper); text-transform: uppercase;
}
.addr em { font-style: normal; font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pig); margin-top: .3rem; }

.hours { margin-top: 1.75rem; }
.hours h3 {
  font-family: 'Archivo Black', sans-serif; font-size: var(--t-h3);
  text-transform: uppercase; letter-spacing: -.02em; color: var(--paper);
  margin-bottom: .8rem;
}

/* Hours table. Today's row is highlighted by JS — the one line most
   visitors are actually looking for. */
.hrs { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.hrs th, .hrs td { padding: .5rem .1rem; text-align: left; font-weight: 400; }
.hrs th { color: rgba(247,235,226,.62); }
.hrs td { text-align: right; color: var(--paper); font-variant-numeric: tabular-nums; }
.hrs tr { border-bottom: 1px solid rgba(247,235,226,.1); }
.hrs tr:last-child { border-bottom: 0; }
.hrs tr[data-today] th, .hrs tr[data-today] td { color: var(--crisp); font-weight: 700; }
.hrs tr[data-today] th::before {
  content: '▸'; margin-right: .45rem; color: var(--crisp);
}

.hours__note { color: rgba(247,235,226,.65); font-size: var(--t-sm); margin: 1rem 0 1.1rem; }
.hours__note em { color: var(--pig); font-style: italic; }

.map {
  position: relative; min-height: 300px;
  border-radius: var(--r); overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(242,231,213,.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(242,231,213,.05) 0 1px, transparent 1px 46px),
    var(--soot-2);
  border: 1px solid rgba(242,231,213,.14);
  display: grid; place-items: center;
}
.map iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.map__load {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 1.35rem; border-radius: 999px;
  background: var(--paper); color: var(--soot); font-weight: 700;
  min-height: 52px;
  transition: background .18s ease, transform .18s ease;
}
.map__load svg { width: 20px; height: 20px; }
.map__load:hover { background: var(--pig); transform: translateY(-2px); }

@media (min-width: 900px) {
  .find__grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .map { min-height: 100%; }
}

/* ---------- Gallery ---------- */
.gal__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(.6rem, 2.5vw, 1rem); }
@media (min-width: 800px) { .gal__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Reviews ---------- */
.revs .eyebrow { color: var(--soot); opacity: .65; }
.revs__grid { display: grid; gap: 1rem; }
.rev {
  background: var(--paper);
  border: 3px solid var(--soot);
  border-radius: var(--r);
  padding: clamp(1.2rem, 4vw, 1.6rem);
  box-shadow: 6px 6px 0 var(--soot);
}
.rev p {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  line-height: 1.22; letter-spacing: -.02em; color: var(--soot);
}
.rev figcaption {
  margin-top: .85rem; font-size: var(--t-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mut);
}
@media (min-width: 800px) { .revs__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Follow ---------- */
.follow__inner { text-align: center; max-width: 46ch; margin-inline: auto; }
.follow__pig { width: 74px; height: 74px; color: var(--pig); margin: 0 auto 1.25rem; }
.follow__inner p { color: rgba(247,235,226,.72); margin-top: 1rem; }
.follow__btns { display: flex; justify-content: center; margin-top: 1.75rem; }
.follow__btns .btn { min-width: min(100%, 280px); }
/* Instagram is near-dormant (57 followers) — present, but not given
   equal weight to Facebook, which is where they actually post. */
.follow__ig {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem; font-size: var(--t-sm); font-weight: 600;
  color: rgba(247,235,226,.7); text-decoration: none;
}
.follow__ig svg { width: 17px; height: 17px; }
.follow__ig:hover { color: var(--pig); }

/* ---------- Footer ---------- */
.ftr { background: var(--night); color: rgba(247,235,226,.65); padding-block: clamp(2.5rem, 8vw, 4rem) 1.5rem; }
.ftr__grid { display: grid; gap: 2rem; }
.ftr__brand { display: flex; align-items: center; gap: .85rem; }
.ftr__pig { width: 52px; height: 52px; color: var(--pig); flex: none; }
.ftr__name {
  font-family: 'Archivo Black', sans-serif; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: -.02em; color: var(--paper); line-height: 1.1;
}
.ftr__name span {
  font-family: 'Grand Hotel', cursive; font-size: 1.4rem;
  text-transform: none; letter-spacing: 0; color: var(--pig);
}
.ftr__col h3 {
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--crisp); margin-bottom: .8rem;
}
.ftr__col a, .ftr__col p { display: block; font-size: var(--t-sm); margin-bottom: .55rem; text-decoration: none; }
.ftr__col a:hover { color: var(--pig); text-decoration: underline; text-underline-offset: 3px; }
.ftr__sell { color: var(--pig); font-weight: 600; margin-top: .3rem; }
.ftr__legal {
  max-width: var(--wrap); margin: 2.5rem auto 0; padding: 1.25rem var(--gut) 0;
  border-top: 1px solid rgba(247,235,226,.1);
  font-size: var(--t-xs); letter-spacing: .06em; color: rgba(247,235,226,.55);
}
@media (min-width: 800px) { .ftr__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; } }

/* =========================================================================
   Sticky thumb-zone call bar (mobile only)
   The phone number is the conversion. It lives where a thumb actually
   reaches, not in a top corner.
   ========================================================================= */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  display: flex; gap: .5rem;
  padding: .55rem var(--gut);
  padding-bottom: calc(.55rem + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--soot) 94%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--cazo);
  transform: translateY(0);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.callbar[data-hidden="true"] { transform: translateY(110%); }
.callbar__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 56px; border-radius: var(--r);
  background: var(--crisp); color: var(--soot);
  font-weight: 700; text-decoration: none;
}
.callbar__btn svg { width: 22px; height: 22px; flex: none; }
.callbar__stack { display: flex; flex-direction: column; line-height: 1.12; }
.callbar__stack small { font-size: var(--t-xs); font-weight: 600; opacity: .9; }
.callbar__stack strong { font-size: 1.1rem; letter-spacing: -.01em; }
.callbar__map {
  display: grid; place-items: center; flex: none;
  width: 56px; min-height: 56px; border-radius: var(--r);
  background: rgba(242,231,213,.1); color: var(--paper);
  border: 1px solid rgba(242,231,213,.24);
}
.callbar__map svg { width: 22px; height: 22px; }

@media (min-width: 900px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .addr, .hdr__call, .map__load { transition: none; }
}
