/* ==========================================================================
   London Nutrition — styles.css
   Theme: "Holographic Deli" — editorial layout, hairline rules, printed-menu
   typography, warm ink on pearl, foil seal as a physical sticker. Photos pop.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  --pearl:    #FAF7FD;
  --pearl-2:  #F1EAF8;
  --card:     #FFFFFF;

  --ink:      #17121E;   /* near-black, warm */
  --ink-soft: #5E5568;   /* secondary text */
  --line:     rgba(23, 18, 30, .14);
  --line-2:   rgba(23, 18, 30, .08);

  --accent:   #B23A6A;   /* rose — text-safe on pearl */
  --rose:     #C7799B;
  --plum:     #8E6FB8;
  --sky:      #6FAFD6;
  --leaf:     #84BE73;
  --tangerine:#E2884F;
  --mocha:    #A9846A;

  /* Holographic foil — decorative only (seal, hairline accents) */
  --holo: linear-gradient(125deg, #F7C6DD, #E6D2F4, #CFE4F6, #D6F0E2, #FBDDCB, #F7C6DD);

  --maxw: 1160px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Offset anchor jumps so targets clear the sticky nav (matters most on phones) */
  scroll-padding-top: 84px;
  /* Stop iOS/Android from auto-inflating text on rotate */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--pearl);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Subtle branded tap flash instead of the default grey/blue box */
  -webkit-tap-highlight-color: rgba(178, 58, 106, .18);
}
/* Belt-and-suspenders: keep every section clear of the sticky nav on jump */
section[id], header[id], [id] { scroll-margin-top: 84px; }
/* Never let a stray element trigger horizontal scroll on small screens */
html, body { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.02; letter-spacing: -.02em; font-weight: 600; }
img { max-width: 100%; display: block; }

/* --------------------------------------------------------------------------
   Kicker (editorial label with rule/number) + script accent
   -------------------------------------------------------------------------- */
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Mono", monospace;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.kicker .num {
  font-style: normal;
  padding: 2px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .66rem;
  line-height: 1;
}
.kicker-rule { display: inline-block; width: 34px; height: 1px; background: currentColor; opacity: .6; }
.kicker.light { color: rgba(250, 247, 253, .8); }

.script-accent {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.18em;
  line-height: .9;
}

/* --------------------------------------------------------------------------
   Foil seal (recreated Ohio + script logo) — scales via --s
   -------------------------------------------------------------------------- */
.seal {
  --s: 46px;
  position: relative;
  width: var(--s); height: var(--s);
  flex: none;
  border-radius: 50%;
  background: var(--holo);
  display: grid; place-items: center;
  font-size: calc(var(--s) * .34);
  box-shadow:
    inset 0 0 0 1px rgba(23, 18, 30, .16),
    inset 0 -5px 12px rgba(255, 255, 255, .55),
    inset 0 5px 12px rgba(180, 140, 200, .25),
    0 8px 20px -8px rgba(23, 18, 30, .45);
  overflow: hidden;
}
.seal::after { /* glossy sweep so it reads like foil */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 36%, rgba(255,255,255,.6) 50%, transparent 64%);
}
.seal-ohio { position: absolute; width: 84%; height: 84%; color: rgba(23, 18, 30, .5); z-index: 1; }
.seal-script {
  position: relative; z-index: 2;
  font-family: "Dancing Script", cursive; font-weight: 700;
  font-size: .82em; letter-spacing: -.01em;
  color: var(--ink); line-height: 1; transform: translateY(-10%);
}
.seal-sub {
  position: absolute; z-index: 2; bottom: 16%;
  font-family: "DM Mono", monospace; font-size: .28em;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink); opacity: .6;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif; font-weight: 600; font-size: .9rem;
  text-decoration: none; cursor: pointer; border: none;
  padding: 13px 22px; border-radius: 999px;
  color: var(--pearl); background: var(--ink);
  box-shadow: 0 10px 22px -12px rgba(23, 18, 30, .7);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(23, 18, 30, .75); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; border: 1.5px solid var(--line); }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

/* --------------------------------------------------------------------------
   Top announcement bar
   -------------------------------------------------------------------------- */
.topbar { background: var(--ink); color: var(--pearl); }
.topbar-in {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px; padding: 9px 0;
  font-family: "DM Mono", monospace; font-size: .68rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.topbar-in .sep { color: var(--rose); }
.topbar-in a { color: inherit; text-decoration: none; }
.topbar-in a:hover { color: var(--rose); }

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 253, .85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.nm { display: flex; flex-direction: column; }
.nm-main { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: 1.14rem; line-height: 1.04; }
.nm small { font-family: "DM Mono", monospace; font-size: .56rem; letter-spacing: .24em; color: var(--accent); text-transform: uppercase; margin-top: 1px; }
.nav-links { display: none; gap: 30px; align-items: center; margin-left: auto; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .9rem; opacity: .72; transition: opacity .15s, color .15s; }
.nav-links a:hover, .nav-links a:focus-visible { opacity: 1; color: var(--accent); }
/* Inline CTA is redundant on mobile (it lives in the topbar phone link + the
   drawer), and it crowds the brand/hamburger on narrow phones — hide it until
   the desktop nav appears. */
.nav-cta { display: none; }

.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: none; background: none; cursor: pointer; padding: 9px; border-radius: 10px; color: var(--ink); margin-left: auto; }
.nav-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 0 18px; border-top: 1px solid var(--line); background: var(--pearl); }
.nav-mobile.open { display: flex; }
/* Min 44px tap target per platform guidelines */
.nav-mobile a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1.02rem; padding: 14px 24px; border-radius: 10px; opacity: .85; }
.nav-mobile a:hover, .nav-mobile a:focus-visible { opacity: 1; color: var(--accent); background: rgba(178, 58, 106, .07); }
.nav-mobile .btn { margin: 8px 24px 0; justify-content: center; }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; margin-left: 8px; }
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero { position: relative; padding: clamp(40px, 7vw, 84px) 0 clamp(36px, 5vw, 64px); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; gap: clamp(34px, 6vw, 64px); align-items: center; }

.hero-copy .kicker { margin-bottom: 22px; }
.hero-copy h1 {
  font-size: clamp(3rem, 9.5vw, 6rem);
  font-weight: 600; letter-spacing: -.03em; line-height: .96;
}
.hero-copy h1 .script-accent { font-size: 1.16em; color: var(--accent); padding: 0 .04em; }
.hero-copy p.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); margin: 24px 0 30px; max-width: 38ch; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-rating { display: flex; align-items: center; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.stars { display: inline-flex; gap: 2px; color: var(--tangerine); }
.stars svg { width: 18px; height: 18px; }
.hero-rating-text { font-family: "DM Mono", monospace; font-size: .8rem; color: var(--ink-soft); letter-spacing: .02em; }
.hero-rating-text strong { color: var(--ink); font-weight: 500; }

/* Hero media: framed photo + floating foil seal */
.hero-media { position: relative; }
.frame {
  position: relative; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  box-shadow: 0 30px 60px -34px rgba(23, 18, 30, .55);
}
.hero-frame { aspect-ratio: 4 / 5; }
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  /* Real photo is set inline in the HTML; this gradient is just a load fallback */
  background-image: linear-gradient(160deg, #F2789F 0%, #F4A65E 34%, #A7D77B 64%, #6FC3DF 100%);
  display: grid; place-items: center;
}
.placeholder-pour::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 26% 22%, rgba(255,255,255,.6) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.5) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 60%, rgba(255,255,255,.4) 0 4px, transparent 5px),
    linear-gradient(120deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
}
.frame-watermark { position: relative; width: 44%; height: 44%; color: rgba(255, 255, 255, .35); }
.frame-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  font-family: "DM Mono", monospace; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  background: var(--ink); color: var(--pearl); padding: 7px 13px; border-radius: 999px;
}
.seal-float { position: absolute; top: -24px; right: -14px; z-index: 4; rotate: -8deg; }

@media (max-width: 560px) {
  .seal-float { --s: 86px !important; top: -16px; right: -6px; }
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .hero-frame { aspect-ratio: 5 / 6; }
  .seal-float { top: -30px; right: -22px; }
}

/* --------------------------------------------------------------------------
   TICKER
   -------------------------------------------------------------------------- */
.ticker { background: var(--ink); color: var(--pearl); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; align-items: center; white-space: nowrap; width: max-content; animation: scroll 34s linear infinite; }
.ticker span { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; font-size: 1.1rem; padding: 0 22px; }
.ticker i { color: var(--rose); font-style: normal; font-size: .7rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Section shell
   -------------------------------------------------------------------------- */
section { padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.sec-head { max-width: 46ch; margin-bottom: clamp(34px, 4vw, 52px); }
.sec-head .kicker { margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); font-weight: 600; }
.sec-sub { color: var(--ink-soft); margin-top: 14px; font-size: 1.06rem; }

/* --------------------------------------------------------------------------
   MENU — printed list
   -------------------------------------------------------------------------- */
.menu { background: var(--pearl-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.menu-grid { display: grid; gap: clamp(34px, 5vw, 56px); grid-template-columns: 1fr; }
.menu-block { border-top: 2px solid var(--ink); padding-top: 18px; }
.menu-block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.menu-block-head h3 { font-size: 1.5rem; font-weight: 600; }
.menu-block-meta { font-family: "DM Mono", monospace; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.menu-block-desc { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 18px; }
.menu-list { list-style: none; display: flex; flex-direction: column; }
.menu-list li { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.menu-list li:last-child { border-bottom: none; }
.mi-name { font-weight: 600; font-size: .98rem; }
.mi-dots { flex: 1; border-bottom: 1.5px dotted var(--line); transform: translateY(-5px); }
.mi-price { font-family: "DM Mono", monospace; font-size: .82rem; color: var(--ink-soft); }
.menu-foot { margin-top: clamp(34px, 4vw, 48px); text-align: center; font-size: 1.05rem; color: var(--ink-soft); }
.menu-foot .script-accent { font-size: 1.4em; }

@media (min-width: 760px) { .menu-grid { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   FAN FAVORITES — photo plates
   -------------------------------------------------------------------------- */
.fav-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
.fav {
  background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden;
  box-shadow: 0 14px 36px -28px rgba(23, 18, 30, .5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fav:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -30px rgba(23, 18, 30, .5); }
.fav-photo {
  position: relative; aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  display: grid; place-items: center; overflow: hidden;
  transition: filter .18s ease;
}
.fav:hover .fav-photo { filter: saturate(1.08) brightness(1.03); }
.fav-photo .frame-watermark { width: 38%; height: 38%; color: rgba(255, 255, 255, .32); }
.fav-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: "DM Mono", monospace; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  background: var(--holo); color: var(--ink); padding: 6px 11px; border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(23,18,30,.14);
}
.fav-cap { padding: 18px 20px 22px; }
.fav-kind { font-family: "DM Mono", monospace; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.fav-cap h3 { font-size: 1.32rem; font-weight: 600; margin: 6px 0 8px; }
.fav-cap p { font-family: "DM Mono", monospace; font-size: .74rem; color: var(--ink-soft); line-height: 1.55; }

/* Soft pastel placeholders — TODO: replace with real photos via
   style="background-image:url('assets/drinks/NAME.jpg')" on .fav-photo */
.d1 { background-image: linear-gradient(150deg, #EE7C9E, #F0A368); }
.d2 { background-image: linear-gradient(150deg, #E58CC0, #9D86D8); }
.d3 { background-image: linear-gradient(150deg, #6FAFD6, #79CFBD); }
.d4 { background-image: linear-gradient(150deg, #8E6FB8, #D586A6); }
.d5 { background-image: linear-gradient(150deg, #EE7C9E, #F0A368); }
.d6 { background-image: linear-gradient(150deg, #B08A6E, #7A5E49); }

@media (min-width: 680px) { .fav-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .fav-grid { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   FROM OUR FEED — real Instagram photos
   -------------------------------------------------------------------------- */
.feed { background: var(--pearl-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* Mobile: swipeable scroll-snap strip (reads like a feed, saves vertical space) */
.feed-grid {
  display: grid; grid-auto-flow: column; grid-auto-columns: 80%;
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 -20px; padding: 4px 20px 14px;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.feed-grid::-webkit-scrollbar { display: none; }
.feed-item {
  position: relative; scroll-snap-align: center;
  border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
  box-shadow: 0 18px 40px -28px rgba(23, 18, 30, .55);
}
.feed-item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .35s ease;
}
.feed-item:hover img { transform: scale(1.04); }
.feed-cap {
  position: absolute; left: 12px; bottom: 12px;
  font-family: "DM Mono", monospace; font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  background: rgba(23, 18, 30, .72); color: var(--pearl);
  padding: 6px 11px; border-radius: 999px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.feed-foot { margin-top: 22px; display: flex; justify-content: center; }

@media (min-width: 680px) {
  /* Desktop/tablet: clean 3-up grid, no scrolling */
  .feed-grid {
    grid-auto-flow: row; grid-template-columns: repeat(3, 1fr);
    gap: 22px; overflow: visible; margin: 0; padding: 0;
  }
  .feed-foot { margin-top: 34px; }
}

/* --------------------------------------------------------------------------
   SOCIAL PROOF — dark editorial band
   -------------------------------------------------------------------------- */
.proof { background: var(--ink); color: var(--pearl); overflow: hidden; text-align: center; }
.proof-ohio { position: absolute; top: 50%; right: -60px; width: 420px; height: 460px; transform: translateY(-50%); color: rgba(250, 247, 253, .05); z-index: 0; }
.proof .wrap { position: relative; z-index: 2; }
.proof .kicker { justify-content: center; margin-bottom: 36px; }

.proof-stats {
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 760px; margin: 0 auto 48px;
  border-top: 1px solid rgba(250, 247, 253, .16);
}
.proof-stats li { padding: 26px 10px; border-bottom: 1px solid rgba(250, 247, 253, .16); }
.proof-stats b { font-family: "Fraunces", Georgia, serif; font-weight: 600; font-size: clamp(2.6rem, 8vw, 3.6rem); display: block; line-height: 1; }
.proof-stats span { font-family: "DM Mono", monospace; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(250, 247, 253, .65); margin-top: 8px; display: block; }

.quote { position: relative; max-width: 30ch; margin: 0 auto; }
.quote-mark { font-family: "Fraunces", Georgia, serif; font-size: 4rem; line-height: 0; color: var(--rose); display: block; height: .5em; }
.quote-body { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.35; display: block; }
.quote-body em { color: var(--rose); font-style: italic; }
.quote cite { display: block; font-family: "DM Mono", monospace; font-style: normal; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250, 247, 253, .6); margin-top: 22px; }

@media (min-width: 700px) {
  .proof-stats { grid-template-columns: repeat(3, 1fr); }
  .proof-stats li { border-bottom: none; border-right: 1px solid rgba(250, 247, 253, .16); }
  .proof-stats li:last-child { border-right: none; }
}

/* --------------------------------------------------------------------------
   VISIT
   -------------------------------------------------------------------------- */
.visit-grid { display: grid; gap: 24px; }
.visit-card { background: var(--card); border-radius: 24px; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--line); box-shadow: 0 14px 36px -28px rgba(23, 18, 30, .5); }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { width: 42px; height: 42px; border-radius: 13px; flex: none; display: grid; place-items: center; background: var(--holo); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(23,18,30,.1); }
.info-row .ic svg { width: 19px; height: 19px; }
.info-row b { display: block; font-size: 1rem; font-weight: 700; }
.info-row a { color: var(--accent); text-decoration: none; font-weight: 600; }
.info-row a:hover { text-decoration: underline; }
.info-row span { font-size: .9rem; color: var(--ink-soft); }

.hours-card .kicker { margin-bottom: 18px; }
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 16px; font-family: "DM Mono", monospace; font-size: .86rem; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.hours li:last-child { border-bottom: none; }
.hours li.today { color: var(--accent); font-weight: 500; }
.hours li.today span:first-child::after { content: " · today"; font-size: .82em; opacity: .75; }
.hours-note { font-family: "DM Mono", monospace; font-size: .68rem; color: var(--ink-soft); margin-top: 18px; line-height: 1.6; }
.visit-cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }

@media (min-width: 880px) { .visit-grid { grid-template-columns: 1.1fr .9fr; } }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer { background: var(--ink); color: var(--pearl); padding: clamp(48px, 6vw, 72px) 0 36px; }
.footer-grid { display: grid; gap: 32px; align-items: start; }
.footer-brand { justify-content: flex-start; color: var(--pearl); }
.footer-brand .nm-main { color: var(--pearl); }
.footer-brand .nm small { color: rgba(250, 247, 253, .6); }
.tagline { font-family: "Fraunces", Georgia, serif; font-style: italic; opacity: .72; font-size: 1.02rem; margin-top: 16px; max-width: 34ch; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--pearl); opacity: .78; text-decoration: none; font-weight: 600; font-size: .95rem; }
.footer-nav a:hover { opacity: 1; color: var(--rose); }
.footer-social-col { display: flex; }
.social { display: flex; gap: 14px; }
.social a { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: rgba(250, 247, 253, .08); color: var(--pearl); transition: background .15s, transform .15s; text-decoration: none; }
.social a:hover { background: var(--accent); transform: translateY(-2px); }
.social svg { width: 19px; height: 19px; }
.fine { font-family: "DM Mono", monospace; font-size: .66rem; letter-spacing: .06em; opacity: .5; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(250, 247, 253, .12); }
.fine a { color: inherit; }

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-social-col { justify-content: flex-end; }
}

/* --------------------------------------------------------------------------
   Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 200;
  background: var(--ink); color: var(--pearl);
  padding: 11px 18px; border-radius: 10px;
  font-weight: 600; font-size: .85rem; text-decoration: none;
  transition: top .16s ease;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   ABOUT
   -------------------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(34px, 5vw, 60px); }
.about-copy .kicker { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(2rem, 5vw, 3rem); }
.about-lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; }
.about-lead strong { color: var(--ink); font-weight: 700; }
.props { list-style: none; display: grid; gap: 16px; }
.props li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 18px;
  box-shadow: 0 10px 30px -26px rgba(23, 18, 30, .5);
}
.prop-ic { width: 44px; height: 44px; flex: none; border-radius: 13px; display: grid; place-items: center; background: var(--holo); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(23, 18, 30, .1); }
.prop-ic svg { width: 21px; height: 21px; }
.props b { display: block; font-size: 1rem; font-weight: 700; }
.props span { display: block; font-size: .86rem; color: var(--ink-soft); margin-top: 2px; line-height: 1.5; }
@media (min-width: 520px) { .props { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .about-grid { grid-template-columns: 1.05fr .95fr; align-items: start; } }

/* --------------------------------------------------------------------------
   THIS MONTH'S SPECIALS — chalkboard
   -------------------------------------------------------------------------- */
.board {
  position: relative;
  background: var(--ink); color: var(--pearl);
  border-radius: 28px; padding: clamp(30px, 5vw, 56px); overflow: hidden;
  box-shadow: 0 34px 64px -36px rgba(23, 18, 30, .65);
}
.board::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(250, 247, 253, .18); border-radius: 18px; pointer-events: none; }
.board .kicker { margin-bottom: 14px; }
.board-title { font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1; }
.board-month { text-transform: capitalize; }
.board-title .script-accent { color: var(--rose); }
.board-seal { position: absolute; top: 24px; right: 24px; rotate: -6deg; }
.board-list { list-style: none; margin: clamp(22px, 3vw, 34px) 0 0; max-width: 640px; }
.board-list li { display: flex; flex-direction: column; gap: 3px; padding: 16px 0; border-bottom: 1px solid rgba(250, 247, 253, .16); }
.board-list li:first-child { border-top: 1px solid rgba(250, 247, 253, .16); }
.bi-name { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 500; font-size: 1.3rem; }
.bi-desc { font-family: "DM Mono", monospace; font-size: .72rem; letter-spacing: .05em; color: rgba(250, 247, 253, .65); }
.board-note { margin-top: 26px; color: rgba(250, 247, 253, .72); font-size: .98rem; }
.board-note .script-accent { color: var(--rose); font-size: 1.3em; }
@media (max-width: 520px) { .board-seal { display: none; } }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-grid { display: grid; gap: clamp(26px, 4vw, 48px); }
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px;
  font-family: "Fraunces", Georgia, serif; font-size: clamp(1.05rem, 2vw, 1.2rem); font-weight: 600;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-mark { position: relative; width: 16px; height: 16px; flex: none; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-mark::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-mark::after { top: 0; left: 7px; width: 2px; height: 16px; transition: transform .2s ease; }
.faq-list details[open] .faq-mark::after { transform: scaleY(0); }
.faq-list p { padding: 0 4px 22px; color: var(--ink-soft); max-width: 62ch; }
.faq-list a { color: var(--accent); font-weight: 600; text-decoration: none; }
.faq-list a:hover { text-decoration: underline; }
@media (min-width: 880px) { .faq-grid { grid-template-columns: .82fr 1.18fr; align-items: start; } }

/* --------------------------------------------------------------------------
   MAP
   -------------------------------------------------------------------------- */
.map-frame { margin-top: 24px; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 14px 36px -28px rgba(23, 18, 30, .5); }
.map-frame iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(.18) contrast(1.02); }
@media (min-width: 880px) { .map-frame iframe { height: 380px; } }

/* --------------------------------------------------------------------------
   Reveal + accessibility
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   MOBILE REFINEMENTS — phone-first polish (this site ships on phones)
   -------------------------------------------------------------------------- */

/* Tablet / large-phone landscape and below */
@media (max-width: 880px) {
  /* Sticky nav is shorter here, so tighten the anchor offset to match */
  html { scroll-padding-top: 70px; }
  section[id], header[id], [id] { scroll-margin-top: 70px; }
  .nav-in { height: 64px; }
}

/* Phones */
@media (max-width: 600px) {
  /* A touch more breathing room edge-to-edge */
  .wrap { padding: 0 20px; }

  /* Topbar: keep it to one tidy strip — drop the lower-priority line and let
     the address + phone do the work. Phone gets a real tap target. */
  .topbar-in { gap: 8px 12px; font-size: .64rem; padding: 8px 16px; }
  .topbar-in span:nth-child(5),   /* "In-store pickup" */
  .topbar-in span:nth-child(6) {  /* its separator */
    display: none;
  }
  .topbar-in a { padding: 4px 2px; }

  /* Stack the primary CTAs full width so they're easy to thumb */
  .hero-cta { gap: 10px; }
  .hero-cta .btn,
  .visit-cta .btn { width: 100%; justify-content: center; }
  .visit-cta { gap: 10px; }

  /* Headline + lead sit better with a little less hug on tiny screens */
  .hero-copy h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-copy p.lead { font-size: 1.04rem; }

  /* Reveal slightly less travel so nothing peeks off-screen mid-animation */
  .reveal { transform: translateY(16px); }
}

/* Very small phones (e.g. 320–360px) */
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .nm small { font-size: .52rem; letter-spacing: .18em; }
  .topbar-in span:nth-child(1),   /* "Walk-ins welcome" */
  .topbar-in span:nth-child(2) {  /* its separator */
    display: none;
  }
}
