/* ==========================================================================
   The Porch Coffee House — "Front porch classic"
   Cream siding, porch-ceiling blue, walnut, espresso. Morning to evening.
   ========================================================================== */

:root {
  /* Morning → evening: latte tan, deepening to caramel, then walnut and espresso */
  --dawn: #dcc8aa;
  --morning: #d6bf9c;
  --late-morning: #cfb48e;
  --midday: #c6a87f;
  --afternoon: #5b3a29;
  --dusk: #4a2f22;
  --evening: #2b2420;
  --night: #1e1915;

  --porch-blue: #a9c9c6;
  --porch-blue-soft: #d5e6e3;
  --porch-teal: #22403d; /* deep blue-green, readable on every tan */
  --walnut: #5b3a29;
  --walnut-dark: #452b1e;
  --walnut-text: #4f3222; /* walnut for small text on tan (5.1:1) */
  --glow: #f4c77b;
  --glow-soft: #f9dfae;
  --paper: #fbf4e8; /* menu boards, notes */

  --ink: #2b2420;
  --ink-2: #3f322a; /* 5.5:1 on the darkest tan */
  --ink-3: #4a3b31; /* 4.7:1 on the darkest tan */
  --cream-text: #f6efe4;
  --cream-text-2: #dccbb6;
  --line: rgb(74 52 38 / 0.2);
  --line-dark: rgb(246 239 228 / 0.16);

  --font-display: "Young Serif", Georgia, "Times New Roman", serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-hand: "Caveat", "Bradley Hand", cursive;

  --arch: 999px 999px 18px 18px;
  --radius: 18px;
  --shadow: 0 18px 40px -22px rgb(43 36 32 / 0.45);
  --shadow-soft: 0 10px 28px -18px rgb(43 36 32 / 0.35);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 44px);
  --section: clamp(80px, 11vw, 140px);
  --header-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65;
  color: var(--ink); background: var(--dawn);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
/* Paper grain over the whole page */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 400; pointer-events: none; opacity: 0.55;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.35  0 0 0 0 0.25  0 0 0 0 0.15  0 0 0 0.09 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 500; padding: 12px 18px; border-radius: 12px;
  background: var(--walnut); color: var(--cream-text); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--porch-teal); outline-offset: 3px; border-radius: 6px; }
.dark :focus-visible, .site-footer :focus-visible { outline-color: var(--glow); }

.icon { width: 1.2em; height: 1.2em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.doodle { fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Layout ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
/* Each section fades from the time of day before it to its own */
.t-dawn { background: linear-gradient(var(--dawn), var(--morning)); }
.t-morning { background: linear-gradient(var(--morning), var(--late-morning)); }
.t-late-morning { background: linear-gradient(var(--late-morning), var(--midday)); }
.t-midday { background: var(--midday); }
.t-afternoon { background: linear-gradient(var(--afternoon), var(--dusk)); }
.t-evening { background: linear-gradient(var(--dusk), var(--evening)); }
.t-night { background: linear-gradient(var(--evening), var(--night)); }
.t-paper { background: var(--dawn); }
.dark { color: var(--cream-text); }
.dark h1, .dark h2, .dark h3 { color: var(--cream-text); }

/* Porch trim: scalloped edge where the light sections meet the walnut ones */
.trim {
  height: 22px; background-color: var(--afternoon);
  background-image: radial-gradient(circle at 18px 0, var(--midday) 17px, transparent 18px);
  background-size: 36px 22px; background-repeat: repeat-x;
}

/* ---------- Type ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 400; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: 1.02; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); line-height: 1.06; }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); line-height: 1.2; }
.soft { color: var(--walnut); }
.dark .soft { color: var(--glow); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--porch-teal);
}
.eyebrow::before { content: ""; width: 22px; height: 1.5px; background: currentColor; }
.dark .eyebrow { color: var(--porch-blue); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--ink-2); }
.dark .lead, .dark p { color: var(--cream-text-2); }
.hand { font-family: var(--font-hand); font-weight: 600; line-height: 1.1; }
.section-head { max-width: 620px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p:not(.eyebrow) { margin-top: 16px; font-size: 1.125rem; color: var(--ink-2); }

.text-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--walnut-text);
  text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 5px;
  text-decoration-color: rgb(91 58 41 / 0.35); transition: gap 0.25s var(--ease), text-decoration-color 0.2s;
}
.text-link:hover { gap: 12px; text-decoration-color: currentColor; }
.dark .text-link { color: var(--glow); text-decoration-color: rgb(244 199 123 / 0.4); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--walnut); --fg: var(--cream-text); --bd: var(--walnut);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 26px; border-radius: 999px; border: 1.5px solid var(--bd);
  background: var(--bg); color: var(--fg); font-weight: 600; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.25s var(--ease), box-shadow 0.25s;
  box-shadow: 0 10px 22px -14px rgb(69 43 30 / 0.8);
}
.btn:hover { --bg: var(--walnut-dark); --bd: var(--walnut-dark); transform: translateY(-2px); }
.btn:active { transform: none; }
.btn .icon { width: 1.1em; height: 1.1em; }
.btn--ghost { --bg: transparent; --fg: var(--walnut); --bd: rgb(91 58 41 / 0.35); box-shadow: none; }
.btn--ghost:hover { --bg: var(--walnut); --fg: var(--cream-text); --bd: var(--walnut); }
.btn--glow { --bg: var(--glow); --fg: var(--evening); --bd: var(--glow); box-shadow: 0 0 0 0 transparent, 0 12px 30px -12px rgb(244 199 123 / 0.55); }
.btn--glow:hover { --bg: var(--glow-soft); --bd: var(--glow-soft); }
.btn--ghost-light { --bg: transparent; --fg: var(--cream-text); --bd: rgb(246 239 228 / 0.35); box-shadow: none; }
.btn--ghost-light:hover { --bg: rgb(246 239 228 / 0.1); --bd: var(--cream-text); }

/* ---------- Concept bar (portfolio) ---------- */
.concept-bar { background: #161513; color: #f7f4ee; font-size: 0.8125rem; line-height: 1.4; }
.concept-bar .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px 20px; padding-block: 9px; }
.concept-bar a { color: #f7f4ee; font-weight: 600; text-underline-offset: 3px; }
.concept-bar-link { text-decoration: none; opacity: 0.85; white-space: nowrap; }
.concept-bar-link:hover { opacity: 1; text-decoration: underline; }
.is-framed, .is-framed body { overflow: hidden; }
.is-framed .concept-bar { display: none; }
.is-framed .reveal, .is-framed .arch-reveal > img { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--walnut); }
.logo-mark { width: 44px; height: 36px; flex: none; }
.logo-text { display: grid; line-height: 1; }
.logo-text strong { font-family: var(--font-display); font-weight: 400; font-size: 1.45rem; color: var(--ink); letter-spacing: -0.01em; }
.logo-text span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--porch-teal); margin-top: 4px; }
.site-footer .logo, .site-footer .logo-text strong { color: var(--cream-text); }
.site-footer .logo-text span { color: var(--porch-blue); }
.site-footer .logo-mark { color: var(--glow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgb(220 200 170 / 0.9); -webkit-backdrop-filter: saturate(1.3) blur(12px); backdrop-filter: saturate(1.3) blur(12px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 28px -24px rgb(43 36 32 / 0.6); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }
.nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 36px); }
.nav-links { display: flex; gap: clamp(18px, 2.6vw, 32px); list-style: none; padding: 0; }
.nav-links a { position: relative; padding-block: 6px; text-decoration: none; font-weight: 500; color: var(--ink-2); transition: color 0.2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 2px; background: var(--porch-blue);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); background: var(--walnut); }
.btn--sm { min-height: 44px; padding: 9px 20px; font-size: 0.95rem; }

.menu-toggle {
  display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: transparent; cursor: pointer; color: var(--walnut);
}
.menu-toggle .icon { width: 22px; height: 22px; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; overflow-y: auto;
  display: flex; flex-direction: column; gap: 28px; padding: 24px var(--gutter) 40px; background: var(--dawn);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity 0.25s, transform 0.3s var(--ease), visibility 0s; }
.mobile-menu ul { list-style: none; padding: 0; border-top: 1px solid var(--line); }
.mobile-menu li a {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0;
  border-bottom: 1px solid var(--line); text-decoration: none; font-family: var(--font-display); font-size: 1.8rem; color: var(--ink);
}
.mobile-menu li a[aria-current="page"] { color: var(--walnut); }
.mobile-menu .icon { color: var(--porch-teal); }
.mobile-menu-foot { display: grid; gap: 12px; }
.mobile-menu-foot p { color: var(--ink-3); font-size: 0.95rem; }
body.menu-open { overflow: hidden; }
.action-bar { display: none; }

/* ---------- Open status pill ---------- */
.status {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 12px; border-radius: 999px;
  background: rgb(255 255 255 / 0.55); border: 1px solid var(--line); font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
}
.status i { width: 9px; height: 9px; border-radius: 50%; background: #9a8f86; flex: none; }
.status.is-open i { background: #4f8a5b; box-shadow: 0 0 0 4px rgb(79 138 91 / 0.18); }
.status--dark { background: rgb(246 239 228 / 0.06); border-color: var(--line-dark); color: var(--cream-text-2); }
.status--dark.is-open i { background: #7fc28c; box-shadow: 0 0 0 4px rgb(127 194 140 / 0.2); }

/* Closing strip on inner pages */
.cta-strip { padding-block: clamp(64px, 8vw, 104px); }
.cta-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px 48px; }
.cta-strip h2 { margin-bottom: 16px; }

/* ---------- Arched photos ---------- */
.arch { overflow: hidden; border-radius: var(--arch); background: var(--midday); box-shadow: var(--shadow); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.js .arch-reveal > img { clip-path: inset(100% 0 0 0); transform: scale(1.08); transition: clip-path 1.3s var(--ease), transform 1.6s var(--ease); }
.js .arch-reveal.is-visible > img { clip-path: inset(0 0 0 0); transform: none; }
.round { overflow: hidden; border-radius: 50%; box-shadow: var(--shadow); border: 6px solid var(--dawn); }
.round img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Hero (morning) ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(40px, 6vw, 88px) clamp(72px, 9vw, 120px); }
.hero::before { /* soft morning sun */
  content: ""; position: absolute; width: 900px; height: 900px; right: -260px; top: -380px; border-radius: 50%;
  background: radial-gradient(circle, rgb(236 196 132 / 0.5), rgb(236 196 132 / 0) 65%); pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.hero h1 { margin: 22px 0 24px; font-size: clamp(2.7rem, 5.4vw, 4.7rem); }
.hero h1 .soft { display: block; }
.hero .lead { max-width: 31em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; margin-top: 34px; }
.hero-doodle { width: 58px; height: 58px; margin-bottom: 6px; color: var(--walnut); }
.hero-collage { position: relative; aspect-ratio: 1 / 1.08; }
.hero-collage .arch { position: absolute; right: 0; top: 0; width: 74%; height: 92%; }
.hero-collage .round { position: absolute; left: 0; bottom: 4%; width: 44%; aspect-ratio: 1; }
.hero-note {
  position: absolute; right: 6%; bottom: -2%; z-index: 2;
  display: flex; align-items: flex-end; gap: 6px; color: var(--walnut); font-size: clamp(1.35rem, 2vw, 1.7rem); transform: rotate(-4deg);
}
.hero-note svg { width: 54px; height: 44px; margin-bottom: 18px; transform: scaleX(-1) rotate(10deg); }
.steam path { animation: steam 3.2s ease-in-out infinite; transform-box: fill-box; transform-origin: bottom; }
.steam path:nth-child(2) { animation-delay: 0.6s; }
.steam path:nth-child(3) { animation-delay: 1.2s; }
@keyframes steam {
  0% { opacity: 0; transform: translateY(4px); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-8px); }
}

/* ---------- Standouts (mid-morning) ---------- */
.standouts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 4vw, 56px); list-style: none; padding: 0; }
.standout { text-align: center; padding-inline: 8px; }
.standout-icon {
  display: grid; place-items: center; width: 96px; height: 96px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--porch-blue-soft); color: var(--walnut);
}
.standout-icon svg { width: 52px; height: 52px; }
.standout h3 { margin-bottom: 10px; }
.standout p { color: var(--ink-2); max-width: 30ch; margin-inline: auto; }

/* ---------- Signature drinks (late morning) ---------- */
.drinks { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2.4vw, 32px); list-style: none; padding: 0; }
.drink { text-align: center; }
.drink .arch { aspect-ratio: 3 / 4; margin-bottom: 20px; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.drink:hover .arch { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 26px 44px -24px rgb(43 36 32 / 0.55); }
.drink h3 { font-size: 1.35rem; margin-bottom: 4px; }
.drink p { color: var(--ink-3); font-size: 0.95rem; }
.drink .price { display: inline-block; margin-top: 10px; font-family: var(--font-display); font-size: 1.15rem; color: var(--walnut-text); }
.drinks-foot { display: flex; justify-content: center; margin-top: 48px; }
.drinks-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.drinks-head .hand { color: var(--porch-teal); font-size: clamp(1.5rem, 2.4vw, 1.9rem); transform: rotate(-3deg); margin-bottom: 12px; white-space: nowrap; }

/* ---------- Baked (midday) ---------- */
.baked { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.baked-collage { position: relative; aspect-ratio: 1 / 1.05; }
.baked-collage .arch { position: absolute; left: 0; top: 0; width: 70%; height: 90%; }
.baked-collage .round { position: absolute; right: 0; bottom: 0; width: 50%; aspect-ratio: 1; border-color: var(--midday); }
.baked-copy h2 { margin-bottom: 20px; }
.baked-copy > p { color: var(--ink-2); font-size: 1.125rem; }
.pastry-list { margin-top: 28px; list-style: none; padding: 0; border-top: 1px solid var(--line); }
.pastry-list li { display: flex; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.pastry-list .dots { flex: 1; border-bottom: 2px dotted rgb(91 58 41 / 0.3); transform: translateY(-4px); }
.pastry-list .price { font-family: var(--font-display); color: var(--walnut-text); }
.note-card {
  position: relative; display: inline-block; margin-top: 36px; padding: 22px 28px 18px; max-width: 380px;
  background: var(--paper); box-shadow: var(--shadow-soft); transform: rotate(-2deg);
  font-family: var(--font-hand); font-size: 1.85rem; line-height: 1.15; color: var(--walnut);
}
.note-card::before { /* tape */
  content: ""; position: absolute; top: -12px; left: 50%; width: 86px; height: 24px; transform: translateX(-50%) rotate(3deg);
  background: rgb(169 201 198 / 0.7);
}
.note-card small { display: block; margin-top: 6px; font-size: 1.5rem; text-align: right; color: var(--ink-3); }

/* ---------- Story (afternoon) ---------- */
.story-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 7vw, 110px); align-items: center; }
.story-collage { position: relative; aspect-ratio: 1.05 / 1; }
.story-collage .photo-a { position: absolute; left: 0; top: 0; width: 76%; height: 74%; border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 50px -24px rgb(0 0 0 / 0.6); }
.story-collage .photo-b { position: absolute; right: 0; bottom: 0; width: 48%; height: 58%; }
.story-collage img { width: 100%; height: 100%; object-fit: cover; }
.story-collage .photo-b.arch { border: 6px solid var(--afternoon); box-shadow: 0 24px 50px -24px rgb(0 0 0 / 0.6); }
.story-copy h2 { margin-bottom: 22px; }
.story-copy p + p { margin-top: 16px; }
.story-copy .text-link { margin-top: 28px; }

/* ---------- Porch Nights (evening) ---------- */
.nights { overflow: hidden; }
.lights { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 120px; pointer-events: none; }
.lights .wire { fill: none; stroke: #0e0b09; stroke-width: 2; opacity: 0.8; }
.lights .bulb { fill: var(--glow); }
.lights .halo { fill: var(--glow); opacity: 0.22; filter: blur(6px); }
.lights g { animation: twinkle 4s ease-in-out infinite; }
.lights g:nth-child(3n) { animation-delay: 1.3s; }
.lights g:nth-child(3n+1) { animation-delay: 2.4s; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.nights-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(40px, 7vw, 110px); align-items: center; padding-top: 40px; }
.nights h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 20px; }
.nights .lead { max-width: 30em; }
.night-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 34px; padding: 0; list-style: none; }
.night-facts li {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--line-dark); background: rgb(246 239 228 / 0.06); color: var(--cream-text); font-weight: 500; font-size: 0.95rem;
}
.night-facts .icon { color: var(--glow); }
.nights .arch { aspect-ratio: 4 / 5; box-shadow: 0 30px 70px -30px rgb(0 0 0 / 0.8), 0 0 90px -30px rgb(244 199 123 / 0.35); }
.nights-photo { position: relative; }
.nights-photo .hand { position: absolute; left: -12%; bottom: 10%; color: var(--glow); font-size: clamp(1.5rem, 2.4vw, 2rem); transform: rotate(-6deg); }

/* ---------- Visit (night) ---------- */
.visit-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.visit h2 { margin-bottom: 18px; }
.hours { margin: 30px 0; padding: 0; border-top: 1px solid var(--line-dark); }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 4px; border-bottom: 1px solid var(--line-dark); }
.hours dt { color: var(--cream-text-2); }
.hours dd { color: var(--cream-text); font-weight: 500; }
.hours .is-today { background: rgb(244 199 123 / 0.09); border-radius: 8px; }
.hours .is-today dt, .hours .is-today dd { color: var(--glow); font-weight: 600; }
.visit-contact { display: grid; gap: 14px; list-style: none; padding: 0; margin-bottom: 32px; }
.visit-contact li { display: flex; gap: 12px; align-items: flex-start; color: var(--cream-text-2); }
.visit-contact .icon { color: var(--porch-blue); margin-top: 3px; }
.visit-contact a { color: var(--cream-text); text-decoration: none; font-weight: 500; }
.visit-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map { position: relative; border-radius: var(--radius); overflow: hidden; background: #2a221d; border: 1px solid var(--line-dark); aspect-ratio: 5 / 4; }
.map svg { width: 100%; height: 100%; }
.map-caption { position: absolute; left: 18px; bottom: 16px; font-family: var(--font-hand); font-size: 1.5rem; color: var(--glow); }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--cream-text-2); padding-block: 64px 32px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 40px; }
.footer-brand p { margin-top: 18px; max-width: 30ch; font-size: 0.975rem; }
.footer-col h2 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--porch-blue); margin-bottom: 16px; }
.footer-col ul { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; list-style: none; padding: 0; font-size: 0.975rem; overflow-wrap: anywhere; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--cream-text); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-dark); font-size: 0.875rem; }
.footer-bottom .hand { font-size: 1.35rem; color: var(--glow); }

/* ---------- Page heads (menu + story) ---------- */
.page-head { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 96px) clamp(48px, 6vw, 80px); text-align: center; }
.page-head::before {
  content: ""; position: absolute; width: 760px; height: 760px; left: 50%; top: -470px; transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgb(236 196 132 / 0.5), rgb(236 196 132 / 0) 65%); pointer-events: none;
}
.page-head .container { position: relative; }
.page-head h1 { margin: 18px auto 20px; font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
.page-head h1 .soft { display: block; }
.page-head .lead { max-width: 34em; margin-inline: auto; }
.page-head .hand { display: block; margin-top: 22px; color: var(--porch-teal); font-size: 1.6rem; transform: rotate(-2deg); }

/* ---------- Menu page ---------- */
.menu-jump { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; padding: 0; list-style: none; }
.menu-jump a {
  display: inline-block; padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: rgb(255 255 255 / 0.4); font-weight: 600; font-size: 0.95rem; text-decoration: none; color: var(--walnut);
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.menu-jump a:hover { background: var(--walnut); border-color: var(--walnut); color: var(--cream-text); }
.menu-board {
  position: relative; padding: clamp(28px, 4.5vw, 56px); border-radius: 26px;
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
}
.menu-board + .menu-board { margin-top: 32px; }
.menu-board-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.menu-board-head svg { width: 46px; height: 46px; color: var(--walnut); flex: none; }
.menu-board-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
.menu-board-head p { color: var(--ink-3); font-size: 0.95rem; }
.menu-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(32px, 5vw, 72px); list-style: none; padding: 0; }
.menu-item { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.menu-item-top { display: flex; align-items: baseline; gap: 10px; }
.menu-item-top strong { font-weight: 600; font-size: 1.05rem; }
.menu-item-top .dots { flex: 1; border-bottom: 2px dotted rgb(91 58 41 / 0.28); transform: translateY(-4px); min-width: 16px; }
.menu-item-top .price { font-family: var(--font-display); color: var(--walnut-text); white-space: nowrap; }
.menu-item p { font-size: 0.925rem; color: var(--ink-3); margin-top: 2px; }
.tag-new { display: inline-block; margin-left: 6px; padding: 1px 8px; border-radius: 999px; background: var(--porch-blue-soft); color: var(--porch-teal); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; vertical-align: 2px; }
.menu-board--dark { background: var(--evening); border-color: var(--evening); color: var(--cream-text); }
.menu-board--dark h2 { color: var(--cream-text); }
.menu-board--dark .menu-board-head svg { color: var(--glow); }
.menu-board--dark .menu-board-head p, .menu-board--dark .menu-item p { color: var(--cream-text-2); }
.menu-board--dark .menu-item { border-bottom-color: var(--line-dark); }
.menu-board--dark .dots { border-bottom-color: rgb(246 239 228 / 0.22) !important; }
.menu-board--dark .price { color: var(--glow) !important; }
.menu-note { margin-top: 26px; text-align: center; color: var(--ink-3); font-size: 0.95rem; }

/* ---------- Story page ---------- */
.story-hero-photo { max-width: 980px; margin: clamp(40px, 6vw, 64px) auto 0; }
.story-hero-photo .arch { aspect-ratio: 16 / 9; border-radius: 50% 50% 22px 22px / 30% 30% 22px 22px; }
.story-body { max-width: 700px; margin-inline: auto; }
.story-body p { font-size: 1.1875rem; line-height: 1.75; color: var(--ink-2); }
.story-body p + p { margin-top: 22px; }
.story-body .first::first-letter { float: left; font-family: var(--font-display); font-size: 4.6rem; line-height: 0.82; padding: 8px 12px 0 0; color: var(--walnut); }
.pull {
  margin: 44px 0; text-align: center; font-family: var(--font-hand); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; color: var(--porch-teal); transform: rotate(-1.5deg);
}
.gallery { display: grid; grid-template-columns: 1.1fr 0.9fr 1fr; gap: clamp(14px, 2vw, 24px); list-style: none; padding: 0; }
.gallery li:nth-child(2) { margin-top: 64px; }
.gallery figure { position: relative; }
.gallery .frame { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.gallery li:nth-child(2) .frame { border-radius: var(--arch); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { margin-top: 12px; font-family: var(--font-hand); font-size: 1.5rem; color: var(--walnut); text-align: center; }
.people { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 3vw, 32px); list-style: none; padding: 0; max-width: 980px; margin-inline: auto; }
.person { padding: clamp(28px, 4vw, 40px); border-radius: 24px; background: rgb(246 239 228 / 0.06); border: 1px solid var(--line-dark); }
.person svg { width: 48px; height: 48px; color: var(--glow); margin-bottom: 18px; }
.person h3 { margin-bottom: 4px; }
.person .role { font-family: var(--font-hand); font-size: 1.45rem; color: var(--porch-blue); margin-bottom: 12px; display: block; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); transition-delay: calc(var(--d, 0) * 100ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1060px) {
  .drinks { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 24px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .baked, .story-grid, .nights-grid, .visit-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-collage { max-width: 520px; width: 100%; margin-inline: auto; }
  .baked-collage, .story-collage { max-width: 540px; width: 100%; margin-inline: auto; }
  .standouts { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .nights-photo { max-width: 420px; margin-inline: auto; width: 100%; }
  .nights-photo .hand { left: -4%; }
  .menu-cols { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery li:nth-child(2) { margin-top: 32px; }
  .people { grid-template-columns: minmax(0, 1fr); }
  .drinks-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .action-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 98;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgb(220 200 170 / 0.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line); box-shadow: 0 -10px 26px -18px rgb(43 36 32 / 0.5);
  }
  .action-bar a {
    display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 52px; border-radius: 16px;
    font-weight: 600; font-size: 0.95rem; text-decoration: none; background: rgb(255 255 255 / 0.7); color: var(--walnut); border: 1px solid var(--line);
  }
  .action-bar a:first-child { background: var(--walnut); color: var(--cream-text); border-color: var(--walnut); }
  body.menu-open .action-bar { display: none; }

  .logo-text strong { font-size: 1.3rem; }
  .logo-mark { width: 40px; height: 32px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-actions .text-link { margin-inline: auto; }
  .hero-note { right: 0; font-size: 1.3rem; }
  .hero-note svg { width: 42px; height: 34px; }
  .drinks { gap: 32px 16px; }
  .drink .arch { margin-bottom: 14px; }
  .drink h3 { font-size: 1.15rem; }
  .drink p { font-size: 0.875rem; line-height: 1.45; }
  .note-card { font-size: 1.4rem; }
  .visit-actions .btn { flex: 1 1 100%; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery li:nth-child(2) { margin-top: 0; }
  .gallery li:nth-child(3) { grid-column: 1 / -1; }
  .gallery li:nth-child(3) .frame { aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px 20px; }
  .footer-col--visit { grid-column: 1 / -1; order: 1; }
  .trim { height: 16px; background-size: 26px 16px; background-image: radial-gradient(circle at 13px 0, var(--midday) 12px, transparent 13px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .arch-reveal > img { clip-path: none; transform: none; }
}
