/* ==========================================================================
   Pop's Soul Food — styles.css
   Bold industrial food-truck aesthetic
   Palette: deep red #A30901 | white #FEFEFE | industrial gray #C9C9BF | black #000
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --red: #a30901;
  --red-dark: #7c0701;
  --white: #fefefe;
  --gray: #c9c9bf;
  --gray-dark: #9a9a90;
  --black: #000000;
  --ink: #141414;
  --panel: #f4f2ec;
  --steel: #b7b7ad;

  --font-head: "Oswald", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --maxw: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --radius: 4px;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  --shadow-lift: 0 12px 28px rgba(0, 0, 0, 0.22);
  --rule: 4px solid var(--black);
  --transition: 200ms ease;
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.4em;
}

p { margin: 0 0 1rem; }

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

/* Accessible skip link */
.skip-link {
  position: absolute;
  left: 8px;
  top: -60px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; }

/* Global focus visibility */
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.header :focus-visible,
.footer :focus-visible,
.btn--primary:focus-visible {
  outline-color: var(--white);
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--black);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  line-height: 1;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition);
}
.btn:hover,
.btn:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(-1px); }

.btn--primary { --btn-bg: var(--red); --btn-fg: var(--white); border-color: var(--red-dark); }
.btn--primary:hover,
.btn--primary:focus-visible { --btn-bg: var(--red-dark); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--black);
}
.btn--ghost:hover,
.btn--ghost:focus-visible { --btn-bg: var(--black); --btn-fg: var(--white); }

.btn--light {
  --btn-bg: var(--white);
  --btn-fg: var(--black);
  border-color: var(--white);
}

.btn__icon { width: 1.1em; height: 1.1em; flex: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: var(--rule);
  transition: box-shadow var(--transition), padding var(--transition);
}
.header.is-stuck { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--black);
  flex: none;
}
.brand__logo {
  height: 54px;
  width: auto;
  transition: height var(--transition);
}
.header.is-stuck .brand__logo { height: 46px; }
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand__name span { color: var(--red); }

/* Nav */
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--black);
  padding: 0.35rem 0.15rem;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--red); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: var(--black);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-left: var(--rule);
    padding: 5rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 260ms ease;
    box-shadow: var(--shadow-lift);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__item { border-bottom: 2px solid var(--gray); }
  .nav__link { display: block; padding: 1rem 0.25rem; font-size: 1.3rem; }
  .nav .btn { margin-top: 1.4rem; width: 100%; }
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    padding: 0;
    z-index: 99;
  }
}

/* ==========================================================================
   Announcement strip
   ========================================================================== */
.announce {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--red);
  font-size: 0.95rem;
}
.announce__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  padding-block: 0.6rem;
  text-align: center;
}
.announce__text { font-weight: 500; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border: 2px solid var(--steel);
  border-radius: 999px;
}
.status__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-dark);
  flex: none;
}
.status.is-open { border-color: #3fae57; }
.status.is-open .status__dot { background: #4cd964; box-shadow: 0 0 0 3px rgba(76, 217, 100, 0.25); }
.status.is-closed { border-color: var(--red); }
.status.is-closed .status__dot { background: var(--red); }

/* ==========================================================================
   Sections / shared
   ========================================================================== */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--dark { background: var(--black); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }
.section--panel { background: var(--panel); }

.section--dark h2,
.section--red h2 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--red);
  background: var(--white);
  border: 2px solid var(--black);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 3px 3px 0 var(--black);
}
.section--dark .eyebrow,
.section--red .eyebrow { color: var(--white); background: var(--black); border-color: var(--white); box-shadow: 3px 3px 0 rgba(255,255,255,0.25); }

.section__head { max-width: 46rem; margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.section__title { font-size: clamp(1.9rem, 1.2rem + 3vw, 3.1rem); }
.section__lead { font-size: 1.15rem; }

/* Angular divider */
.divider {
  height: 22px;
  background: repeating-linear-gradient(
    -45deg,
    var(--black) 0,
    var(--black) 16px,
    var(--red) 16px,
    var(--red) 32px
  );
  border-block: 3px solid var(--black);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% -10%, rgba(163, 9, 1, 0.14), transparent 45%),
    var(--white);
  border-bottom: var(--rule);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.hero__title {
  font-size: clamp(2.4rem, 1.2rem + 6vw, 4.6rem);
  margin-bottom: 0.5rem;
}
.hero__title .accent { color: var(--red); }
.hero__body { font-size: 1.2rem; max-width: 40ch; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1.25rem;
}
.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-left: 5px solid var(--red);
  padding-left: 0.8rem;
}

.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.hero__art::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  background: var(--red);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.12;
  z-index: 0;
}
.hero__logo {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}

/* ==========================================================================
   Favorites cards
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--red);
}
/* rivet detail */
.card::after {
  content: "";
  position: absolute;
  top: 18px; right: 16px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--steel), var(--gray-dark));
  box-shadow: 0 1px 1px rgba(0,0,0,0.4);
}
.card:hover,
.card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card__num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gray);
  -webkit-text-stroke: 1px var(--black);
}
.card__title { font-size: 1.55rem; margin-top: 0.4rem; }
.card__title span { color: var(--red); }
.card p { margin-bottom: 0; }

.section__cta { margin-top: clamp(1.75rem, 4vw, 2.5rem); }

/* ==========================================================================
   Showcase — real food photos
   ========================================================================== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 4vw, 2rem);
}
.showcase__item {
  position: relative;
  margin: 0;
  border: 5px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}
.showcase__item img {
  width: 100%;
  aspect-ratio: 1500 / 819;
  object-fit: cover;
  display: block;
  transition: transform 450ms ease;
}
.showcase__item:hover img,
.showcase__item:focus-within img { transform: scale(1.045); }
.showcase__item figcaption {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  color: var(--white);
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 0.75rem 1rem;
}
@media (max-width: 640px) {
  .showcase { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
.about__figure {
  margin: 0;
  position: relative;
  border: 5px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
}
.about__figure img {
  width: 100%;
  aspect-ratio: 1500 / 819;
  object-fit: cover;
  display: block;
}
/* corner rivets on the photo frame */
.about__figure::after {
  content: "";
  position: absolute;
  top: 10px; left: 10px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e9e9e2, var(--gray-dark));
  box-shadow: 0 1px 1px rgba(0,0,0,0.5);
}
.about__stamp { margin-top: 1.5rem; }
.stamp {
  font-family: var(--font-head);
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  background: var(--red);
  border: 4px double var(--white);
  outline: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  font-size: clamp(1.4rem, 1rem + 2vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

/* ==========================================================================
   Menu
   ========================================================================== */
.menu__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
}
.menu-frame {
  position: relative;
  background: var(--gray);
  border: 5px solid var(--black);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
/* corner rivets */
.menu-frame::before,
.menu-frame::after {
  content: "";
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e9e9e2, var(--gray-dark));
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.4);
}
.menu-frame::before { top: 8px; left: 8px; }
.menu-frame::after { bottom: 8px; right: 8px; }
.menu-frame__btn {
  display: block;
  padding: 0;
  border: 3px solid var(--black);
  background: var(--white);
  cursor: zoom-in;
  width: 100%;
  border-radius: 2px;
}
.menu-frame__btn img { width: 100%; }
.menu-frame__hint {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: var(--black);
  padding-top: 10px;
}
.menu__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.5rem 0; }
.menu__note {
  font-size: 0.95rem;
  border-left: 4px solid var(--gray-dark);
  padding-left: 0.8rem;
  color: #444;
}

/* Disclosure — text menu */
.disclosure { margin-top: 1.5rem; border: 3px solid var(--black); border-radius: var(--radius); background: var(--white); }
.disclosure > summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.disclosure > summary::-webkit-details-marker { display: none; }
.disclosure > summary::after {
  content: "+";
  font-size: 1.6rem;
  line-height: 1;
  color: var(--red);
}
.disclosure[open] > summary::after { content: "\2013"; }
.disclosure > summary:hover { background: var(--panel); }
.menu-text { padding: 0 1.25rem 1.25rem; }
.menu-text h3 {
  font-size: 1.2rem;
  color: var(--red);
  border-bottom: 3px solid var(--black);
  padding-bottom: 0.3rem;
  margin-top: 1.5rem;
}
.menu-text ul { list-style: none; margin: 0.6rem 0 0; padding: 0; }
.menu-text li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dotted var(--gray-dark);
}
.menu-text li .price { font-family: var(--font-head); font-weight: 600; white-space: nowrap; }
.menu-text li.note { color: #555; font-style: italic; border-bottom: 0; }

/* ==========================================================================
   Visit / info blocks
   ========================================================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.info-block {
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.section--dark .info-block,
.section--red .info-block { background: var(--white); }
.info-block__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.info-block__icon { width: 1.15rem; height: 1.15rem; }
.info-block p { margin: 0; font-size: 1.1rem; font-weight: 500; }
.info-block a { color: var(--ink); text-decoration: none; font-weight: 600; }
.info-block a:hover { text-decoration: underline; }

.visit__actions,
.callout__actions,
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ==========================================================================
   Map panel (contact page)
   ========================================================================== */
.map-panel {
  position: relative;
  border: 5px solid var(--black);
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px),
    var(--gray);
  background-size: 28px 28px, 28px 28px, auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 46%, var(--red) 46%, var(--red) 54%, transparent 54%);
  opacity: 0.14;
}
.map-panel__pin {
  position: relative;
  z-index: 1;
  width: 56px; height: 56px;
  color: var(--red);
  filter: drop-shadow(0 6px 6px rgba(0,0,0,0.3));
  margin-bottom: 0.75rem;
}
.map-panel__addr {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.3rem;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  box-shadow: 3px 3px 0 var(--black);
  margin-bottom: 1.25rem;
}
.map-panel .btn { position: relative; z-index: 1; }

.contact-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--black);
  color: var(--gray);
  border-top: 5px solid var(--red);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer a { color: var(--white); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}
.footer__brand-logo { height: 64px; width: auto; margin-bottom: 0.75rem; }
.footer__tag { max-width: 34ch; }
.footer h3 {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.4rem;
  margin-bottom: 0.9rem;
  display: inline-block;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer__list a { text-decoration: none; }
.footer__list a:hover { text-decoration: underline; }
.footer address { font-style: normal; line-height: 1.7; }
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.75rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}
.social__icon {
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 6px;
  transition: transform var(--transition), background var(--transition);
}
.social:hover .social__icon,
.social:focus-visible .social__icon { transform: translateY(-3px); background: var(--white); color: var(--red); }
.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #333;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Mobile action bar
   ========================================================================== */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 2px;
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 6px;
}
.action-bar .btn {
  flex: 1;
  border-radius: var(--radius);
  font-size: 1rem;
  padding: 0.75rem 0.5rem;
  min-height: 52px;
}
@media (max-width: 860px) {
  .action-bar { display: flex; }
  body { padding-bottom: 68px; }
  .action-bar[hidden] { display: none; }
}

/* ==========================================================================
   Lightbox / modal
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2rem);
  background: rgba(0, 0, 0, 0.88);
}
.lightbox[open],
.lightbox.is-open { display: flex; }
.lightbox__dialog {
  position: relative;
  max-width: 960px;
  width: 100%;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 12px;
  animation: pop 240ms ease;
}
@keyframes pop {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox__dialog { animation: none; }
}
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
}
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.25rem 0.5rem;
}
.lightbox__title { font-size: 1.2rem; margin: 0; }
.lightbox__close {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox__close:hover,
.lightbox__close:focus-visible { background: var(--red); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Responsive breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__logo { width: min(340px, 78%); }
  .about__grid,
  .menu__grid,
  .contact-two { grid-template-columns: 1fr; }
  .stamp { max-width: 24rem; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn,
  .menu__actions .btn,
  .visit__actions .btn,
  .callout__actions .btn { flex: 1 1 100%; }
}
