/* ============================================================
   The Fly Trap — site.css
   Mobile-first redesign. Builds on colors_and_type.css.
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text-ink);
  background: var(--color-checker-black);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* Visually hidden but readable by screen readers + crawlers (page H1). */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

/* ============================================================
   NAV — mobile-first, sticky, drawer on small screens
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 250ms var(--ease-out),
              backdrop-filter 250ms var(--ease-out),
              border-color 250ms var(--ease-out);
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(245, 238, 220, 0.12);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) { .nav-inner { padding: 18px 32px; } }
@media (min-width: 1024px) { .nav-inner { padding: 20px 48px; } }

.nav .lockup {
  display: flex; align-items: center; gap: 8px; line-height: 0; text-decoration: none;
  /* Header wordmark is hidden over the hero and fades in once scrolled past it. */
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-out);
}
.nav .lockup.show { opacity: 1; pointer-events: auto; }
.nav .lockup img {
  height: 30px; width: auto;
  filter: none;
  transition: filter 200ms;
}

.nav-links {
  display: none;
  list-style: none; margin: 0; padding: 0;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-flytrap-red-deep);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 150ms;
}
.nav-links a:hover { color: var(--color-flytrap-red-bright); }
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-flytrap-red-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-cream-paper);
  background: var(--color-flytrap-red-deep);
  border: 1.5px solid var(--color-flytrap-red-deep);
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms, transform 80ms;
}
.nav-cta:hover { background: var(--color-flytrap-red-bright); border-color: var(--color-flytrap-red-bright); color: var(--color-cream-paper); }
.nav-cta:active { transform: translateY(1px); }

.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0; padding: 12px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--color-flytrap-red-deep);
  border-radius: 2px;
  transition: transform 200ms, opacity 150ms, background 200ms;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--color-cream-paper); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--color-cream-paper); }

@media (min-width: 880px) {
  .nav-burger { display: none; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; }
}

/* Mobile drawer */
.drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--color-cream-paper);
  display: flex; flex-direction: column;
  padding: 80px 24px 32px;
  transform: translateY(-100%);
  transition: transform 320ms var(--ease-out);
  pointer-events: none;
}
.drawer.open { transform: translateY(0); pointer-events: auto; }
.drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.drawer ul li { border-bottom: 1px dashed rgba(26,26,26,.18); }
.drawer ul li:first-child { border-top: 1px dashed rgba(26,26,26,.18); }
.drawer ul a {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 22px 4px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  color: var(--color-flytrap-red-deep);
  text-decoration: none;
}
.drawer ul a .num {
  font-family: ui-monospace, monospace;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-charcoal);
  font-weight: 400;
}
.drawer .drawer-order {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream-paper);
  background: var(--color-flytrap-red-deep);
  border: 1.5px solid var(--color-flytrap-red-deep);
  padding: 18px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 150ms, transform 80ms;
}
.drawer .drawer-order:hover { background: var(--color-flytrap-red-bright); border-color: var(--color-flytrap-red-bright); }
.drawer .drawer-order:active { transform: translateY(1px); }
.drawer .drawer-order svg { flex: 0 0 auto; }
.drawer .drawer-meta {
  margin-top: auto;
  padding-top: 24px;
  font-size: 13px;
  color: var(--color-text-charcoal);
  line-height: 1.6;
}
.drawer .drawer-meta .open-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--color-flytrap-red-deep);
  margin-bottom: 8px;
}
.drawer .drawer-meta .open-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2A8A4E;
  box-shadow: 0 0 0 0 rgba(42,138,78,.6);
  animation: pulse 2s infinite;
}
.drawer .drawer-meta .open-pill.closed { color: var(--color-text-charcoal); }
.drawer .drawer-meta .open-pill.closed .dot { background: #9A9A9A; box-shadow: none; animation: none; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,138,78,.6); }
  70% { box-shadow: 0 0 0 8px rgba(42,138,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,138,78,0); }
}

/* ============================================================
   HERO — full-bleed rotating fly painting on mobile
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: var(--color-cream-paper);
  isolation: isolate;
}
.hero.hero-solid .hero-wordmark { filter: none; }
.hero.hero-solid .hero-strip { text-shadow: none; }

.hero-content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 88px 20px 24px;
}
@media (min-width: 768px) {
  .hero-content { padding: 108px 48px 32px; }
}


/* Wordmark wrapper — positioning context so the fly can perch on the letters */
.hero-wordmark-wrap {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 540px;
  margin: 0 0 24px;
}
@media (min-width: 768px) { .hero-wordmark-wrap { max-width: 680px; } }
@media (min-width: 1024px) { .hero-wordmark-wrap { max-width: 780px; } }

.hero-wordmark {
  display: block;
  width: 100%;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.5)) brightness(1.05);
}

/* Hero copy sits ABOVE the background fly. Raise the wordmark IMG and each copy
   element individually — never `.hero-wordmark-wrap`, which would become a
   stacking context and trap the absolutely-positioned fly in front of the letters. */
.hero-wordmark,
.hero-actions {
  position: relative;
  z-index: 2;
}

/* Second fly — free flyer that follows the reader down the back of the page.
   Fixed to the viewport; transform + opacity are driven per frame by BackFly in
   App.jsx. Sits above section content but below both nav bars (z 100 / 99). */
.back-fly {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;              /* fallback — BackFly sizes it to ~half the header text */
  height: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transform: translate(-100px, -100px);
  will-change: transform, opacity;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.25));
}
@media (prefers-reduced-motion: reduce) { .back-fly { display: none; } }

/* Comet trail for the back-fly — a fixed SVG overlay whose dashed polyline is
   driven per frame by BackFly in App.jsx. Sits just under the fly (z 49). Colour
   + geometry are set inline; only the static dash cadence lives here. */
.fly-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 49;
  overflow: visible;
}
.fly-trail polyline {
  fill: none;
  stroke-width: 1.2;          /* thin */
  stroke-linecap: round;
  stroke-linejoin: round;     /* each dash is a short curved segment along the path */
}
@media (prefers-reduced-motion: reduce) { .fly-trail { display: none; } }


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
/* CTA visibility — the Order Takeout CTA shows on mobile only; desktop reaches
   Order via the nav. Selector uses .btn.hero-cta-mobile to outrank `.btn`. */
.btn.hero-cta-mobile { display: inline-flex; }
@media (min-width: 768px) {
  .btn.hero-cta-mobile { display: none; }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid;
  transition: background 150ms, color 150ms, transform 80ms, border-color 150ms;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--color-flytrap-red-deep);
  color: var(--color-cream-paper);
  border-color: var(--color-flytrap-red-deep);
}
.btn-primary:hover { background: var(--color-flytrap-red-bright); border-color: var(--color-flytrap-red-bright); }
.btn-ghost {
  background: transparent;
  color: var(--color-cream-paper);
  border-color: rgba(245,238,220,.7);
}
.btn-ghost:hover { background: rgba(245,238,220,.95); color: var(--color-checker-black); border-color: var(--color-cream-paper); }
.btn-dark {
  background: var(--color-checker-black);
  color: var(--color-cream-paper);
  border-color: var(--color-checker-black);
}
.btn-dark:hover { background: var(--color-flytrap-red-deep); border-color: var(--color-flytrap-red-deep); }

/* hero meta strip — open status, hours, address */
.hero-strip {
  position: static;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  padding: 0 20px 22px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-cream-paper);
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  z-index: 1;
}
.hero-strip .grp { display: flex; align-items: center; gap: 18px; }
.hero-strip .open-now { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip .open-now .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2A8A4E;
  box-shadow: 0 0 12px #2A8A4E;
}
.hero-strip .open-now.closed .dot { background: #9A9A9A; box-shadow: none; }
@media (min-width: 1024px) { .hero-strip { display: flex; } }

/* hero side rail with painting indicators */
.hero-rail {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
}
.hero-rail button {
  width: 24px; height: 4px;
  background: rgba(245,238,220,.4);
  border: 0; cursor: pointer;
  border-radius: 2px;
  transition: background 200ms, width 200ms;
  padding: 0;
}
.hero-rail button.on { background: var(--color-cream-paper); width: 36px; }
.hero-rail button:hover { background: rgba(245,238,220,.85); }

.hero-credit {
  position: absolute;
  bottom: 80px; right: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--color-cream-paper);
  opacity: .75;
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
  text-align: right;
  max-width: 200px;
  z-index: 1;
}
@media (max-width: 880px) {
  .hero-credit { bottom: 16px; right: 16px; max-width: 140px; font-size: 11px; }
  .hero-rail { right: 12px; }
}

/* checker divider after hero */
.checker-divider {
  height: 14px;
  background:
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 0 0/14px 14px,
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 7px 7px/14px 14px,
    var(--color-cream-paper);
}
@media (min-width: 768px) {
  .checker-divider { height: 18px; background-size: 18px 18px, 18px 18px; background-position: 0 0, 9px 9px; }
}

/* ============================================================
   Generic section bits
   ============================================================ */
section { position: relative; }

.section {
  padding: 56px 0;
}
@media (min-width: 768px) { .section { padding: 88px 0; } }
@media (min-width: 1024px) { .section { padding: 112px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-script);
  font-size: 26px;
  line-height: 1;
  color: var(--color-flytrap-red-deep);
  margin: 0 0 8px;
  transform: rotate(-1.5deg);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .5;
}

.section h2.title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-flytrap-red-deep);
  margin: 0 0 16px;
  text-wrap: balance;
}
@media (min-width: 768px) { .section h2.title { font-size: 48px; } }
@media (min-width: 1024px) { .section h2.title { font-size: 60px; } }

.section .lede {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-ink);
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}
@media (min-width: 768px) { .section .lede { font-size: 22px; } }

.section-head { margin-bottom: 36px; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ============================================================
   THIS WEEK'S SPECIALS — photo-forward, Instagram 1:1, one-screen fit
   ============================================================ */
.specials {
  background: var(--color-checker-black);
  border-top: 1px solid rgba(245,238,220,.12);
  border-bottom: 1px solid rgba(245,238,220,.12);
  padding: 44px 0;
}
@media (min-width: 768px) { .specials { padding: 56px 0; } }

/* Compact header just for specials */
.specials .section-head { margin-bottom: 24px; }
.specials h2.title { font-size: 30px; }
@media (min-width: 768px) { .specials h2.title { font-size: 40px; } }
@media (min-width: 1024px) { .specials h2.title { font-size: 46px; } }
.specials .lede { font-size: 16px; }
@media (min-width: 768px) { .specials .lede { font-size: 18px; } }
.specials .eyebrow { color: var(--color-flytrap-red-bright); }
.specials h2.title, .specials .lede { color: var(--color-cream-paper); }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .specials-grid { gap: 24px; }
}

.special-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.special-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0,0,0,.14); }

/* A special with no Toast photo renders text-only. Without this it collapses to
   a short block that reads as broken next to the photo cards, so give it a red
   top rule in place of the image and enough padding to hold the grid row. */
/* A special Toast has no photo for yet. It keeps the same 1:1 photo box as every
   other card — so the grid row stays even — and fills it with a brand tile
   instead of an image: the black field of the hero, a soft red bloom, and the
   cut-out fly. Reads as designed rather than as a missing asset. The sync keeps
   checking Toast, so the real photo replaces this on its own once it exists. */
.special-photo.is-placeholder {
  background:
    radial-gradient(circle at 50% 44%, rgba(253, 0, 3, .22), transparent 64%),
    var(--color-checker-black);
  display: grid;
  place-items: center;
}
.special-photo.is-placeholder::after {
  content: "";
  width: 32%;
  aspect-ratio: 71 / 73;             /* fly-red.png */
  background: url("assets/brand/fly-red.png") center / contain no-repeat;
  opacity: .92;
  transform: rotate(-8deg);
}
/* The fly holds still for anyone who asks for reduced motion; it has no
   animation here, but keep the hover lift off the card too. */
@media (prefers-reduced-motion: reduce) {
  .special-card.no-photo:hover { transform: none; }
}

/* Photo focal point — Instagram square (1:1) at every breakpoint */
.special-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-checker-black);
}
.special-photo image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* Specials tab inside the menu reuses .special-card, but renders the photo as a
   plain <img> (the standalone Specials section uses <image-slot>). Give it the
   same absolute-fill sizing so it fills the 1:1 photo box. */
#menu-sec-specials .special-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.special-body {
  padding: 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.special-headline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.special-headline h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  color: var(--color-flytrap-red-deep);
  margin: 0;
}
@media (min-width: 768px) { .special-headline h3 { font-size: 24px; } }
.special-desc {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-charcoal);
  margin: 0;
  flex: 1;
}
.special-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(26,26,26,.15);
}
.special-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--color-checker-black);
}
.special-ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-flytrap-red-deep);
  text-decoration: none;
  transition: color 150ms;
}
.special-ig:hover { color: var(--color-flytrap-red-bright); }
.special-ig svg { flex: 0 0 auto; }

/* Muffin + soup flavor pair under the main specials. Toast-driven, flavor-forward,
   no photo. Soup shows its cup/bowl prices; muffin stays price-free. Muffin left,
   soup right on wide screens; stacked when narrow. */
.specials-extras {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 940px;
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .specials-extras { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
}
/* Lone extras card (e.g. soup sold out) centers instead of sitting in the left
   column. Two-class specificity overrides the 1fr 1fr rule at every width. */
.specials-extras.solo { grid-template-columns: 1fr; }
.specials-extras.solo .extra-card { justify-self: center; width: 100%; max-width: 460px; }
.extra-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.10);
  border-left: 3px solid var(--color-flytrap-red-bright);
  padding: 16px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.extra-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-charcoal);
  opacity: .7;
}
.extra-flavor {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--color-flytrap-red-deep);
  margin: 0;
}
@media (min-width: 768px) { .extra-flavor { font-size: 24px; } }
.extra-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-checker-black);
  margin: 2px 0 0;
}

/* ============================================================
   ABOUT — terracotta zone, two-up grid
   ============================================================ */
.about {
  background: var(--color-checker-black);
  color: var(--color-cream-paper);
}
.about .eyebrow,
.about h2.title,
.about-dateline { color: var(--color-flytrap-red-bright); }

/* Editorial origin story: masthead, drop cap, featured pull-quote */
.about-editorial {
  max-width: 720px;
  margin-inline: auto;
}
.about-masthead {
  text-align: center;
  margin-bottom: 38px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(245,238,220,.18);
}
.about-masthead .eyebrow { justify-content: center; }
.about-masthead h2.title { margin-bottom: 14px; }
.about-dateline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.about-body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-cream-paper);
  margin: 0 0 22px;
  text-wrap: pretty;
}
@media (min-width: 768px) { .about-body { font-size: 19px; } }
.about-body:last-child { margin-bottom: 0; }

.about-lead::first-letter {
  float: left;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 4.4em;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--color-flytrap-red-bright);
}
.about-lead::first-line {
  font-variant: small-caps;
  letter-spacing: 0.02em;
}

.about-pull {
  position: relative;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  text-align: center;
  color: var(--color-cream-paper);
  text-wrap: balance;
  margin: 36px 0;
  padding: 44px 34px 48px;
  border-top: 1px solid rgba(245,238,220,.22);
  border-bottom: 1px solid rgba(245,238,220,.22);
}
@media (min-width: 768px) { .about-pull { font-size: 32px; } }
.about-pull::before,
.about-pull::after {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1;
  color: var(--color-flytrap-red-bright);
}
/* opening quote — upper left */
.about-pull::before {
  content: "\201C";
  top: 14px;
  left: 8px;
}
/* closing quote — lower right */
.about-pull::after {
  content: "\201D";
  bottom: -8px;
  right: 8px;
}

.about-attr {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .8;
  margin: 0;
}


/* ============================================================
   MENU — section nav, tabbed by category
   ============================================================ */
.menu-section-bg {
  background: var(--color-checker-black);
}

.menu-frame {
  background: #fff;
  position: relative;
  padding: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  margin-top: 24px;
}
.menu-frame::before, .menu-frame::after,
.menu-frame > .edge-l, .menu-frame > .edge-r {
  content: ""; position: absolute; pointer-events: none;
}
.menu-frame::before {
  top: 0; left: 0; right: 0; height: 12px;
  background:
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 0 0/12px 12px,
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 6px 6px/12px 12px,
    #fff;
}
.menu-frame::after {
  bottom: 0; left: 0; right: 0; height: 12px;
  background:
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 0 0/12px 12px,
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 6px 6px/12px 12px,
    #fff;
}
.menu-frame .edge-l {
  top: 12px; bottom: 12px; left: 0; width: 12px;
  background:
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 0 0/12px 12px,
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 6px 6px/12px 12px,
    #fff;
}
.menu-frame .edge-r {
  top: 12px; bottom: 12px; right: 0; width: 12px;
  background:
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 0 0/12px 12px,
    linear-gradient(45deg, #1A1A1A 25%, transparent 25%, transparent 75%, #1A1A1A 75%) 6px 6px/12px 12px,
    #fff;
}
.menu-inner { padding: 24px 16px 28px; position: relative; z-index: 1; }
@media (min-width: 768px) { .menu-inner { padding: 36px 40px 40px; } }

/* Toolbar: tabs + filters */
.menu-toolbar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(26,26,26,.18);
}
@media (min-width: 768px) {
  .menu-toolbar { gap: 16px; }
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--color-cream-paper);
  padding: 6px;
  border-radius: 8px;
  width: 100%;
}
.menu-tabs button {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(26,26,26,.12);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--color-text-charcoal);
  white-space: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.menu-tabs button.on {
  background: var(--color-flytrap-red-deep);
  color: var(--color-cream-paper);
  border-color: var(--color-flytrap-red-deep);
}
.menu-tabs button:hover:not(.on) { color: var(--color-flytrap-red-deep); border-color: var(--color-flytrap-red-deep); }

/* Group 7 — sticky jump-nav (scrollspy). Stays under the fixed site nav while
   the stacked menu sections scroll; a horizontal strip so 8 sections never wrap. */
.menu-jumpnav {
  position: sticky;
  top: 74px;
  z-index: 5;
  background: #fff;
  margin-bottom: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 8px;
}
@media (min-width: 768px) { .menu-jumpnav { top: 86px; } }
.menu-jumpnav .menu-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-jumpnav .menu-tabs::-webkit-scrollbar { display: none; }
.menu-jumpnav .menu-tabs button { flex: 0 0 auto; }
.menu-foot .veg-legend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.35;
  color: var(--color-text-charcoal);
  text-align: center;
}


/* category section */
.menu-cat {
  margin-top: 36px;
  scroll-margin-top: 100px;
}
.menu-cat:first-of-type { margin-top: 0; }
.menu-cat h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--color-flytrap-red-bright);
  margin: 0 0 4px;
  text-align: center;
}
@media (min-width: 768px) { .menu-cat h3 { font-size: 34px; } }
.menu-cat .sub {
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: var(--color-text-charcoal);
  margin: 0 0 22px;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 880px) {
  .menu-items { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(26,26,26,.15);
}
.menu-item .nm-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.menu-item .nm {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-checker-black);
}
.menu-item .veg-tag {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #4A7A2A;
  background: rgba(74,122,42,.12);
  padding: 3px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.menu-item .pr {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-flytrap-red-deep);
  white-space: nowrap;
  grid-column: 2;
  grid-row: 1;
  align-self: baseline;
}
.menu-item .desc {
  grid-column: 1 / -1;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-charcoal);
  margin-top: 2px;
}
.menu-item.hidden { display: none; }

/* Fallback + loading states for the live menu fetch. */
.menu-backup-note,
.menu-loading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-charcoal);
  text-align: center;
  padding: 12px 0;
  margin: 0;
}
.menu-loading { padding: 40px 0; }

/* callouts on menu */
.menu-callout {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: var(--color-flytrap-red-bright);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 36px 0 0;
  padding: 0 12px;
}
.menu-callout .stars { letter-spacing: .15em; }

.menu-foot {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--color-text-charcoal);
  border-top: 1px dashed rgba(26,26,26,.15);
  padding-top: 16px;
  line-height: 1.5;
}

/* Dish scroll — key dishes carousel that replaces the old paintings gallery */
.dishes {
  background: var(--color-checker-black);
  padding: 56px 0 60px;
}
.dishes .eyebrow { color: var(--color-flytrap-red-bright); }
.dishes .title { color: var(--color-cream-paper); }
.dish-scroll { position: relative; }
.dish-track {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 20px 8px;
}
.dish-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .dish-track { gap: 18px; padding: 4px 56px 8px; } }
.dish-card {
  flex: 0 0 auto;   /* width follows the image so mixed aspect ratios aren't cropped */
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-checker-black);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.dish-card img { height: 180px; width: auto; display: block; }   /* uniform height, natural width — no crop, no letterbox */
@media (min-width: 768px) { .dish-card img { height: 240px; } }
.dish-card .label {
  /* Sits below the photo (no longer overlaid). The photo alone sets the card
     width (natural aspect ratio preserved); width:0 + min-width:100% makes this
     caption match the photo's width without ever widening the card, so long
     titles wrap onto the reserved 3 lines instead of stretching the card.
     Fixed 3-line-tall plate keeps cards aligned; text is centered top-to-bottom
     so one-line titles rest in the middle instead of clinging to the top edge. */
  width: 0;
  min-width: 100%;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-cream-paper);
  padding: 8px 10px;
  min-height: calc(1.35em * 3 + 16px); /* 3 lines of text + 8px padding top & bottom */
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering */
  text-align: center;
}
.dish-nav {
  position: absolute; top: 46%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border: 0; border-radius: 50%;
  cursor: pointer; z-index: 2;
  background: var(--color-flytrap-red-deep);
  color: var(--color-cream-paper);
  font-size: 24px; line-height: 1;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.45);
  transition: background 150ms, transform 80ms;
}
.dish-nav:hover { background: var(--color-flytrap-red-bright); }
.dish-nav:active { transform: translateY(-50%) scale(.94); }
.dish-nav.prev { left: 12px; }
.dish-nav.next { right: 12px; }
@media (min-width: 768px) { .dish-nav { display: inline-flex; } }

/* ============================================================
   RETAIL
   ============================================================ */
.retail {
  background: var(--color-checker-black);
  color: var(--color-cream-paper);
}
.retail .eyebrow { color: var(--color-flytrap-red-bright); }
/* Match the menu section headers (e.g. "This week's specials"): Fraunces italic 700. */
.retail h2.title { color: var(--color-flytrap-red-bright); font-style: italic; font-weight: 700; }
.retail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) { .retail-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width: 1024px) { .retail-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.retail-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform 200ms, box-shadow 200ms;
}
.retail-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.1); }
.retail-card .ph {
  aspect-ratio: 3/4;   /* portrait — the product photos are ~3:4 (1100x1461); a landscape box cropped ~44% off top+bottom */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream-paper);
  overflow: hidden;
}
.retail-card .ph .ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.retail-card .ph .ph-label {
  font-family: var(--font-script);
  font-size: 32px;
  transform: rotate(-3deg);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.retail-card.swat .ph { background: linear-gradient(180deg, #C8341A, #6F1A0A); }
.retail-card.jam .ph { background: #6B1A2F; color: var(--color-butter-yellow); }
.retail-card.tees .ph {
  background-color: var(--color-checker-black);
  background-image:
    linear-gradient(45deg, rgba(245,238,220,.06) 25%, transparent 25%, transparent 75%, rgba(245,238,220,.06) 75%) 0 0/16px 16px,
    linear-gradient(45deg, rgba(245,238,220,.06) 25%, transparent 25%, transparent 75%, rgba(245,238,220,.06) 75%) 8px 8px/16px 16px;
}
.retail-card.gift .ph { background: var(--color-flytrap-red-deep); }
.retail-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.retail-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--color-flytrap-red-deep);
  margin: 0 0 8px;
  line-height: 1.05;
}
.retail-card .desc {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-charcoal);
  margin: 0 0 18px;
  flex: 1;
}
.retail-card .meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(26,26,26,.15);
}
.retail-card .price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-checker-black);
}
.retail-card .ask {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-charcoal);
}

/* Retail carousel — a card whose product has multiple options shows one at a time.
   Arrows + dots are the click affordance; the photo captures horizontal swipes. */
.retail-card.carousel .ph { touch-action: pan-y; }
.car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9);
  color: var(--color-flytrap-red-deep);
  cursor: pointer; z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  transition: background 150ms, transform 80ms;
}
.car-nav:hover { background: #fff; }
.car-nav:active { transform: translateY(-50%) scale(.9); }
.car-nav.prev { left: 8px; }
.car-nav.next { right: 8px; }
.car-count {
  position: absolute;
  right: 8px; bottom: 8px; z-index: 2;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: var(--color-cream-paper);
  background: rgba(0,0,0,.5);
  padding: 2px 8px; border-radius: 999px;
}
.car-name {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  line-height: 1.35;
  color: var(--color-flytrap-red-deep);
  margin: 0 0 6px;
  min-height: 2.7em;              /* reserve two lines so slides keep a steady height */
}
.retail-card.carousel .desc { min-height: 4.5em; }
.car-dots {
  display: flex; gap: 7px;
  margin: 2px 0 16px;
}
.car-dot {
  width: 8px; height: 8px; padding: 0;
  border: 0; border-radius: 50%;
  background: rgba(26,26,26,.22);
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.car-dot.on { background: var(--color-flytrap-red-deep); transform: scale(1.15); }
.car-dot:hover { background: rgba(253,0,3,.55); }

/* ============================================================
   PRESS
   ============================================================ */
.press {
  background: var(--color-checker-black);
  color: var(--color-cream-paper);
}
.press .eyebrow,
.press h2.title,
.press .lede { color: var(--color-cream-paper); }

.press-pull {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  text-wrap: balance;
  max-width: 30ch;
  margin: 32px 0 8px;
  color: var(--color-cream-paper);
  position: relative;
  padding-left: 24px;
}
@media (min-width: 768px) { .press-pull { font-size: 32px; } }
.press-pull::before {
  content: '“';
  position: absolute;
  left: -8px; top: -16px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--color-flytrap-red-bright);
  opacity: .8;
}
.press-pull-attr {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: .8;
  padding-left: 24px;
}

/* Rotating pull-quote — reserve height so cycling doesn't jump the layout,
   and crossfade each quote in as it mounts. */
.press-quote { min-height: 150px; }
@media (min-width: 768px) { .press-quote { min-height: 180px; } }
.press-quote .press-pull { animation: pressQuoteIn .5s var(--ease-out) both; }
.press-quote .press-pull-attr { animation: pressAttrIn .5s var(--ease-out) .05s both; }
@keyframes pressQuoteIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pressAttrIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: .8; transform: none; }
}
.press-quote-dots { display: flex; gap: 8px; padding-left: 24px; margin-top: 18px; }
.press-quote-dot {
  width: 8px; height: 8px; padding: 0;
  border-radius: 50%;
  border: 1px solid var(--color-flytrap-red-bright);
  background: transparent;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.press-quote-dot.active { background: var(--color-flytrap-red-bright); }
.press-quote-dot:hover { transform: scale(1.25); }
@media (prefers-reduced-motion: reduce) {
  .press-quote .press-pull,
  .press-quote .press-pull-attr { animation: none; opacity: 1; }
  .press-quote .press-pull-attr { opacity: .8; }
}

.press-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border-top: 1px solid rgba(245,238,220,.2);
}
.press-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245,238,220,.2);
  text-decoration: none;
  color: var(--color-cream-paper);
  transition: background 150ms;
}
.press-item:hover { background: rgba(245,238,220,.04); }
.press-item .year {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: .04em;
  opacity: .7;
}
.press-item .body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.press-item .outlet {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: var(--color-cream-paper);
}
@media (min-width: 768px) { .press-item .outlet { font-size: 28px; } }
.press-item .title {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.45;
  opacity: .85;
}
.press-item .arrow {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-flytrap-red-bright);
  transition: transform 150ms;
}
.press-item:hover .arrow { transform: translateX(4px); }
@media (min-width: 768px) {
  .press-item { grid-template-columns: 80px 1fr auto; gap: 24px; }
}

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit {
  background: var(--color-checker-black);
  color: var(--color-cream-paper);
}
.visit .eyebrow,
.visit h2.title,
.visit .lede { color: var(--color-cream-paper); }
.visit h2.title { color: var(--color-cream-paper); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 880px) {
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.visit-card h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 14px;
}

.visit-addr {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  color: var(--color-cream-paper);
  margin: 0;
}
@media (min-width: 768px) { .visit-addr { font-size: 32px; } }

.visit-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  font-family: ui-monospace, monospace;
}
.visit-contact a {
  color: var(--color-cream-paper);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: color 150ms;
}
.visit-contact a .vc-ico { flex: 0 0 auto; opacity: .85; }
.visit-contact a .vc-text {
  border-bottom: 1px dashed rgba(245,238,220,.4);
  padding-bottom: 1px;
  transition: border-color 150ms;
}
.visit-contact a:hover { color: var(--color-flytrap-red-bright); }
.visit-contact a:hover .vc-text { border-bottom-color: var(--color-flytrap-red-bright); }

.visit-note {
  margin-top: 20px;
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.5;
  opacity: .7;
  max-width: 38ch;
}

.hours {
  width: 100%;
  border-collapse: collapse;
}
.hours tr { border-bottom: 1px solid rgba(245,238,220,.12); }
.hours tr:last-child { border-bottom: 0; }
.hours td {
  padding: 12px 0;
  font-size: 14px;
  vertical-align: middle;
}
.hours td:first-child {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.7;
}
.hours td:last-child {
  text-align: right;
  font-family: ui-monospace, monospace;
  font-size: 14px;
}
.hours tr.today {
  background: linear-gradient(90deg, rgba(253,0,3,.15), transparent);
}
.hours tr.today td:first-child {
  color: var(--color-flytrap-red-bright);
  opacity: 1;
  position: relative;
  padding-left: 14px;
}
.hours tr.today td:first-child::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-flytrap-red-bright);
  box-shadow: 0 0 8px var(--color-flytrap-red-bright);
}

.contact-form {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .contact-form { grid-template-columns: 1fr 1fr; } }
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  background: rgba(245,238,220,.06);
  border: 1px solid rgba(245,238,220,.2);
  color: var(--color-cream-paper);
  border-radius: 4px;
  padding: 12px 14px;
  transition: border-color 150ms, background 150ms;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,238,220,.4); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-flytrap-red-bright);
  background: rgba(245,238,220,.1);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .actions { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.contact-form .submitted {
  background: rgba(76,209,122,.12);
  border: 1px solid rgba(76,209,122,.4);
  color: #B5F0CB;
  padding: 14px;
  border-radius: 4px;
  font-size: 14px;
}

/* Address as map link */
.visit-addr-link {
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}
.visit-addr-link .visit-addr {
  border-bottom: 1px dashed rgba(245,238,220,.4);
  padding-bottom: 4px;
  transition: color 150ms, border-color 150ms;
}
.visit-addr-link:hover .visit-addr { color: var(--color-flytrap-red-bright); border-bottom-color: var(--color-flytrap-red-bright); }
.addr-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .65;
  transition: opacity 150ms, color 150ms;
}
.addr-cta svg { width: 12px; height: 12px; }
.visit-addr-link:hover .addr-cta { opacity: 1; color: var(--color-flytrap-red-bright); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--color-checker-black);
  color: var(--color-cream-paper);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(245,238,220,.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
}
.footer-brand img { height: 36px; width: auto; }
.footer-brand .tag {
  font-family: var(--font-script);
  font-size: 22px;
  margin-top: 8px;
  color: var(--color-flytrap-red-bright);
  display: block;
}
/* Address and motto under the footer wordmark. Two separate lines: the address
   is plain, the motto sits below it in italic. Both carry the styles that used
   to be inline on the single combined paragraph. */
.footer-addr,
.footer-motto {
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.7;
  max-width: 32ch;
  margin: 0;
}
.footer-addr { margin-top: 12px; }
.footer-motto {
  margin-top: 6px;
  font-style: italic;
}
.footer-col h6 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 0 0 12px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-cream-paper);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 150ms, color 150ms;
}
.footer-col a:hover { color: var(--color-flytrap-red-bright); opacity: 1; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(245,238,220,.1);
  font-size: 12px;
  opacity: 0.6;
}
/* Build credit. The link inherits the footer-bottom size/colour so it reads as
   part of the line, not a call to action — underlined only so it's discoverable
   as a link, and it picks up the brand red on hover like the other footer links. */
.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms;
}
.footer-credit a:hover { color: var(--color-flytrap-red-bright); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Keyboard focus — visible ring on all interactive controls (QA a11y) */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--color-flytrap-red-bright);
  outline-offset: 2px;
}
