/* ═══════════════════════════════════════════
   IDLE HANDS · minimal one-page · Northern Quarter
   ═══════════════════════════════════════════ */

@font-face {
  font-family: "The Seasons";
  src: url("assets/fonts/TheSeasons-Regular.woff2") format("woff2"), url("assets/fonts/TheSeasons-Regular.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
/* the bundled The Seasons is a demo cut: its ampersand, apostrophes and quotes are
   "DEMO" watermarks. Borrow Georgia for just those punctuation glyphs (declared last,
   so it wins them): ampersand, straight/curly apostrophes and single/double quotes. */
@font-face {
  font-family: "The Seasons";
  src: local("Georgia"), local("Times New Roman");
  font-weight: 400; font-display: swap;
  unicode-range: U+0022, U+0026-0027, U+2018-2019, U+201C-201D;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Light.woff2") format("woff2"), url("assets/fonts/Inter-Light.otf") format("opentype");
  font-weight: 300; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.woff2") format("woff2"), url("assets/fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Medium.woff2") format("woff2"), url("assets/fonts/Inter-Medium.otf") format("opentype");
  font-weight: 500; font-display: swap;
}

:root {
  --linen: #f2eade;
  --bean: #191412;
  --dusk: #536492;
  --honey: #D9A441;
  --blush: #DDA7A1;
  --lightblue: #9FC3C6;
  --muted: color-mix(in srgb, var(--bean) 52%, transparent);
  --hair: color-mix(in srgb, var(--bean) 14%, transparent);

  --serif: "The Seasons", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --maxw: 1180px;
  --gutter: clamp(22px, 6vw, 110px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--linen);
  color: var(--bean);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--dusk); color: var(--linen); }

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── reveal (GSAP driven) ── */
.reveal { opacity: 0; transform: translateY(26px); }
[data-split] { opacity: 0; }
.word { display: inline-block; }
.no-js .reveal, .no-js [data-split] { opacity: 1 !important; transform: none !important; }

/* ── intro loader ── */
.intro {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--linen);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(10px, 2.4vh, 24px);
  cursor: pointer;
}
/* preview variant: enable with ?bg=1 in the URL (handled in script.js) */
.intro.intro--bg {
  background:
    linear-gradient(rgba(242, 234, 222, 0.18), rgba(242, 234, 222, 0.18)),
    url("assets/intro-bg.webp") center / 100% auto no-repeat,
    var(--linen);
}
.intro.is-done {
  opacity: 0; pointer-events: none;
  transform: scale(1.06);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.intro__frame {
  height: clamp(170px, 30vh, 320px); width: auto; display: block;
}
.intro__enter {
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bean); background: none; border: 0; cursor: pointer;
  padding: 4px 4px;
  transition: color 0.3s var(--ease);
  animation: enterPulse 2.6s ease-in-out infinite;
}
.intro__enter:hover { color: var(--dusk); }
@keyframes enterPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
html.intro-lock, html.intro-lock body { overflow: hidden; height: 100%; }

/* ── brand mark ── */
.brandmark {
  position: absolute; top: clamp(18px, 2.6vw, 32px); left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.brandmark img { height: 30px; }

/* ── right-hand scroll-spy nav (Cafe Cecilia style) ── */
.spy {
  position: fixed; left: clamp(34px, 4vw, 62px); top: 50%;
  transform: translateY(-50%); z-index: 60;
}
.spy ul { list-style: none; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.spy a {
  font-family: var(--serif); font-size: 1.12rem; line-height: 1; letter-spacing: 0.02em;
  color: color-mix(in srgb, var(--bean) 42%, transparent);
  transition: color 0.35s var(--ease);
  display: inline-flex; align-items: center;
}
.spy a:hover, .spy a.is-active, .spy a.is-current { color: var(--dusk); }

/* ════════ HERO ════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(24px, 3vh, 56px) var(--gutter) clamp(180px, 24vh, 300px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
}
.scroll-stage {
  position: relative; z-index: 1;
  background: var(--linen);
}
/* soft warm light spot for depth (minimalist-ui §6) */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 42%, rgba(217, 164, 65, 0.05), transparent 70%);
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dusk); margin-bottom: clamp(28px, 4vw, 48px);
}
.hero__line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 6rem);
  line-height: 1.02; letter-spacing: -0.025em;
  max-width: 18ch;
}
.hero__cue {
  position: absolute; bottom: clamp(34px, 6vh, 60px); left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ════════ BLOCKS (centered editorial) ════════ */
.block {
  padding: clamp(90px, 15vh, 200px) var(--gutter);
  border-top: 1px solid var(--hair);
  text-align: center;
}
.sectlabel {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: clamp(40px, 6vw, 80px);
}
.block__grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px); justify-items: center;
  max-width: 780px; margin: 0 auto;
}
.block__lead h2,
.block__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.03; letter-spacing: -0.022em;
  max-width: 18ch; margin-left: auto; margin-right: auto;
}
.block__title { margin-bottom: clamp(40px, 6vw, 80px); }
.block__body { padding-top: 0; }
.block__body p { max-width: 52ch; color: color-mix(in srgb, var(--bean) 84%, transparent); margin: 0 auto 18px; }
.lead-quote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.35; color: var(--bean) !important;
  margin-bottom: 26px !important;
}

.wide-photo {
  margin-top: clamp(48px, 7vw, 96px);
  border-radius: 4px; overflow: hidden;
}
.wide-photo img {
  width: 100%; aspect-ratio: 16 / 8; object-fit: cover;
}
.wide-photo--map { aspect-ratio: 16 / 8; background: #ece1d1; }
.wide-photo--map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.35) sepia(0.12) contrast(0.96) brightness(1.02);
  pointer-events: none;
}

/* ── about: grid gallery preview ── */
.gallery {
  margin-top: clamp(48px, 7vw, 96px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.2vw, 16px);
}
.gallery figure { overflow: hidden; border-radius: 4px; }
.gallery img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ── menu: pinned reveal sequence (What we make) ── */
#menu {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding-top: clamp(54px, 7.5vh, 88px); padding-bottom: clamp(34px, 5vh, 60px);
}
#menu .sectlabel { margin-bottom: clamp(14px, 2vw, 26px); }
#menu .block__title { margin-bottom: clamp(20px, 3vw, 38px); }
.menu__cta { margin-top: clamp(24px, 3.2vw, 42px); }
.menu-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--dusk); color: var(--linen);
  padding: 13px 26px; border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.menu-btn .arr { transition: transform 0.3s var(--ease); }
.menu-btn:hover { background: color-mix(in srgb, var(--dusk) 85%, #000); transform: translateY(-2px); }
.menu-btn:hover .arr { transform: translateX(4px); }
.menu { display: flex; flex-direction: column; border-bottom: 1px solid var(--hair); max-width: 760px; margin: 0 auto; }
.menu__row {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: 10px; justify-items: center; text-align: center;
  padding: clamp(13px, 2vw, 26px) 0;
}
.menu__rule {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--hair);
  transform: scaleX(1); transform-origin: center center;
}
.menu__row h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.04;
}
.menu__row p { max-width: 54ch; margin: 0 auto; color: color-mix(in srgb, var(--bean) 82%, transparent); }

/* ════════ WHAT WE MAKE — interactive type + photo reveal ════════ */
.whatwemake { min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding-top: clamp(60px, 9vh, 120px); padding-bottom: clamp(15px, 3vh, 45px); }
.wwm { position: relative; max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 0 var(--gutter); }
.wwm__title { font-family: var(--sans); font-weight: 400;
  font-size: clamp(0.92rem, 1.05vw, 1.05rem); line-height: 1.5; letter-spacing: 0;
  text-align: center; margin: 0 auto clamp(34px, 4.4vw, 56px); position: relative; z-index: 3;
  max-width: 40ch; color: color-mix(in srgb, var(--bean) 78%, transparent); }
.wwm__titlelink { color: inherit; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px;
  transition: color 0.3s var(--ease), text-decoration-color 0.3s var(--ease); }
.wwm__titlelink:hover { color: var(--dusk); }
.wwm__list { list-style: none; padding: 0; margin: 0 auto; max-width: 720px;
  display: flex; flex-direction: column; align-items: center; gap: clamp(0px, 0.2vw, 4px);
  position: relative; z-index: 3; }
.wwm__cat { background: none; border: 0; cursor: pointer; padding: 4px 14px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 5.8vw, 4.8rem); line-height: 1.0; letter-spacing: -0.025em;
  color: var(--bean); opacity: 0.32; text-decoration: none; display: inline-block;
  transition: opacity 0.45s var(--ease); }
/* hover state is driven by JS (.is-hovered / .is-hovering) so it stays in sync during
   Lenis transform scrolls, where browser :hover state doesn't update reliably. */
.wwm:focus-within .wwm__cat, .wwm.is-hovering .wwm__cat { opacity: 0.16; }
.wwm__cat:focus-visible, .wwm__cat.is-hovered { opacity: 1 !important; outline: none; }

.wwm__stage { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.wwm__slot { position: absolute; margin: 0; overflow: hidden; border-radius: 10px;
  opacity: 0; transform: scale(0.9);
  transition: opacity 1.15s var(--ease), transform 1.55s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.12s);
  box-shadow: 0 26px 50px -32px rgba(25, 20, 18, 0.45); will-change: opacity, transform; }
.wwm__slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wwm[data-active="coffee"]     .wwm__slot[data-cat="coffee"],
.wwm[data-active="drinks"]     .wwm__slot[data-cat="drinks"],
.wwm[data-active="brunch"]     .wwm__slot[data-cat="brunch"],
.wwm[data-active="sandwiches"] .wwm__slot[data-cat="sandwiches"],
.wwm[data-active="pie"]        .wwm__slot[data-cat="pie"],
.wwm[data-active="sweets"]     .wwm__slot[data-cat="sweets"],
.wwm[data-active="wine"]       .wwm__slot[data-cat="wine"] {
  opacity: 1; transform: scale(1.06);
}

.wwm__cta { display: inline-flex !important; margin: clamp(46px, 6vw, 76px) auto 0;
  position: relative; z-index: 3; }

/* mobile / touch: no hover, so the photos cycle as the section scrolls past
   (JS drives data-active from scroll progress). Show the stage, speed the fade. */
@media (max-width: 860px), (hover: none) {
  /* #menu (ID) sets min-height:100vh; must override at ID specificity, not .whatwemake */
  #menu { min-height: 0; padding-bottom: clamp(28px, 4vh, 48px); }
  .whatwemake { min-height: 0; }
  .wwm__stage { display: block; }
  .wwm__slot { transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
    transition-delay: 0s; }
  .wwm__cat { opacity: 1; font-size: clamp(1.9rem, 8vw, 2.6rem); padding: 8px 0;
    transition: opacity 0.4s var(--ease); }
  /* while scrolling through the section, dim the list and light the active line */
  .wwm.is-hovering .wwm__cat { opacity: 0.26; }
  .wwm__cat.is-hovered { opacity: 1 !important; }
  .wwm__list { gap: 4px; }
}

/* ── visit (centered) ── */
.visit { display: flex; flex-direction: column; align-items: center; max-width: 620px; margin: 0 auto; }
.visit__row {
  display: grid; grid-template-columns: 1fr; gap: 7px; justify-items: center;
  padding: 18px 0; border-top: 1px solid var(--hair); text-align: center; width: 100%;
}
.visit__row:first-child { border-top: 0; padding-top: 0; }
.visit__k {
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dusk);
}
.visit__v { font-size: 1.02rem; line-height: 1.5; }
.textlink {
  margin: 28px auto 0; align-self: center;
  font-size: 0.95rem; font-weight: 500;
  border-bottom: 1.5px solid var(--dusk); padding-bottom: 3px;
}
.textlink:hover { color: var(--dusk); }

/* ── hello / footer ── */
.outro { margin-bottom: clamp(44px, 6vw, 80px); }
.hello__socials {
  display: flex; justify-content: center; gap: 14px;
  padding-bottom: clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--hair);
}
.social {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bean); color: var(--linen);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover { transform: translateY(-3px); background: var(--dusk); }
.hello__base {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 22px;
  margin-top: 26px; font-size: 0.8rem; color: var(--muted); text-align: center;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 860px) {
  .spy { display: none; }
  .wide-photo img { aspect-ratio: 4 / 3; }
  .wide-photo--map { aspect-ratio: 4 / 3; }
  .brandmark img { height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, [data-split], [data-split] .word { opacity: 1 !important; transform: none !important; }
  .intro.is-done { transform: none !important; }
  .intro__enter { animation: none !important; }
}

/* ════════ INNER PAGES ════════ */
.page-head {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 15px var(--gutter);
  background: color-mix(in srgb, var(--linen) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
}
.page-logo img { height: 26px; display: block; }
.page-nav { display: flex; flex-wrap: wrap; gap: clamp(13px, 1.5vw, 24px); justify-content: flex-end; }
.page-nav a {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
  color: color-mix(in srgb, var(--bean) 64%, transparent);
  transition: color 0.25s var(--ease);
}
.page-nav a:hover, .page-nav a.is-current { color: var(--dusk); }

.page-hero { text-align: center; padding: clamp(56px, 9vh, 112px) var(--gutter) clamp(16px, 2vh, 28px); position: relative; }
/* gallery page hero: bottom padding tightened because the first section sits close below */
body:has(.g-view) .page-hero { padding-bottom: clamp(4px, 0.8vh, 10px); }
.page-hero .kicker { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 0.98; letter-spacing: 0.01em;
}
.page-hero .lede { max-width: 56ch; margin: 16px auto 0; font-size: clamp(1rem, 1.3vw, 1.15rem); color: color-mix(in srgb, var(--bean) 80%, transparent); }

.g-nav { margin: clamp(14px, 2vw, 22px) auto 0 !important; }

/* gallery grid density toggle — gooey-blob morph between two buttons (a la 21st.dev) */
/* fixed top-right of the viewport so it follows through every section of the gallery */
.g-view { position: fixed; top: clamp(24px, 3vw, 38px); right: clamp(34px, 4vw, 62px);
  display: inline-flex; align-items: center; gap: 2px;
  padding: 3px; border-radius: 999px; z-index: 70;
  background: color-mix(in srgb, var(--linen) 78%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--bean) 14%, transparent);
  box-shadow: 0 6px 18px -10px rgba(25, 20, 18, 0.18); }
/* hide the toggle while the lightbox is open so the dark overlay reads clean */
body.lightbox-open .g-view { opacity: 0; pointer-events: none; transition: opacity 0.2s ease-out; }
.g-view-defs { position: fixed; width: 0; height: 0; pointer-events: none; }
.g-view__goo { position: absolute; inset: 3px; pointer-events: none; z-index: 0;
  filter: url(#g-view-goo); }
.g-view__blob { position: absolute; top: 0; height: 100%; border-radius: 999px;
  background: var(--dusk); will-change: transform;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1); }
/* JS sets left + width on each blob to match its button. Default: dense visible, large collapsed. */
.g-view__blob--dense { transform: scale(1); transform-origin: center center; }
.g-view__blob--large { transform: scale(0); transform-origin: center center; }
body.gallery-large .g-view__blob--dense { transform: scale(0); }
body.gallery-large .g-view__blob--large { transform: scale(1); }
.g-view__btn { position: relative; z-index: 1;
  background: none; border: 0; cursor: pointer; padding: 5px 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: color-mix(in srgb, var(--bean) 45%, transparent);
  border-radius: 999px; transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.g-view__btn:hover { color: var(--bean); }
.g-view__btn.is-active { color: var(--linen); }
@media (max-width: 900px) { .g-view { display: none; } }

/* large view: drop column count + give more breathing room */
body.gallery-large .g-grid { --g-cols: 3; --g-gap: clamp(10px, 1.2vw, 18px); }

/* view-switch transition: grid cells fade down, swap columns, fade back up */
.g-grid { transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1); }
body.is-view-switching .g-grid { opacity: 0; }
@media (max-width: 1100px) { body.gallery-large .g-grid { --g-cols: 3; } }
@media (max-width: 860px)  { body.gallery-large .g-grid { --g-cols: 2; } }
@media (max-width: 560px)  { body.gallery-large .g-grid { --g-cols: 2; } }

.page-section { max-width: 880px; margin: 0 auto; padding: clamp(50px, 8vh, 100px) var(--gutter); text-align: center; border-top: 1px solid var(--hair); }
.page-section h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 22px; }
.page-section p { max-width: 60ch; margin: 0 auto 16px; color: color-mix(in srgb, var(--bean) 84%, transparent); }
.page-section .lead-quote { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--bean); margin-bottom: 26px; }

.page-photo { max-width: 1100px; margin: 0 auto; padding: 0 var(--gutter); }
.page-photo img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; object-position: center 26%; border-radius: 4px; }
.page-photo--store { max-width: 520px; }
.page-photo--store img { aspect-ratio: 4 / 5; object-position: center; }

/* gallery grid */
.gallery-grid { max-width: 1280px; margin: 0 auto; padding: clamp(40px, 6vw, 80px) var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 28px); }
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: 14px; aspect-ratio: 4 / 5;
  background: color-mix(in srgb, var(--bean) 10%, transparent); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { gap: 10px; } .gallery-grid figure { border-radius: 10px; } }

/* gallery instagram cta */
.gallery-cta { display: flex; justify-content: center; padding: clamp(36px, 5vw, 60px) var(--gutter) clamp(40px, 6vw, 80px); }
.gallery-cta a { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bean); border-bottom: 1.5px solid var(--dusk); padding-bottom: 4px;
  transition: color 0.25s var(--ease); }
.gallery-cta a:hover { color: var(--dusk); }
.gallery-cta a span { margin-left: 8px; }

/* ════════ EDITORIAL GALLERY INDEX (gallery.html) ════════ */
.g-nav { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 3px 8px; margin: clamp(22px, 3vw, 36px) auto 0; max-width: 720px; }
.g-nav a { font-family: var(--sans); font-size: 0.92rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 65%, transparent);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.g-nav a:hover { color: var(--dusk); border-bottom-color: var(--dusk); }
.g-nav span { font-family: var(--sans); font-size: 0.85rem; line-height: 1;
  color: color-mix(in srgb, var(--bean) 25%, transparent); padding: 0 2px; }

.g-sec { max-width: 1480px; margin: 0 auto; padding: clamp(50px, 7vw, 90px) clamp(20px, 3vw, 50px) 0; }
/* first section sits closer to the page hero (toggle now lives fixed in the viewport) */
.g-sec:first-of-type { padding-top: clamp(12px, 1.6vw, 22px); }
.g-sec:first-of-type .g-sec__head { margin-bottom: clamp(18px, 2.6vw, 30px); }
.g-sec__head { display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: clamp(8px, 1vw, 14px); margin-bottom: clamp(28px, 4vw, 50px); }
.g-sec__kicker { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dusk); margin: clamp(18px, 2.4vw, 28px) 0 0; }
.g-sec__sub { font-family: var(--sans); font-size: 0.92rem; line-height: 1.45;
  color: color-mix(in srgb, var(--bean) 70%, transparent); max-width: 50ch; margin: 0; }

.g-grid { --g-gap: clamp(6px, 0.7vw, 12px); --g-cols: 6;
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--g-gap); }
.g-cell { position: relative; margin: 0; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 3px;
  box-shadow: 0 14px 30px -22px rgba(25, 20, 18, 0.4); }
.g-cell img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.92) brightness(0.99); }
.g-cell:hover img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.g-num { position: absolute; top: 8px; left: 8px; font-family: var(--mono);
  font-size: 0.56rem; letter-spacing: 0.12em; color: rgba(255, 255, 255, 0.88);
  background: rgba(25, 20, 18, 0.45); padding: 2px 6px; border-radius: 2px;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.g-cap { position: absolute; bottom: 8px; left: 8px; right: 8px; font-family: var(--mono);
  font-size: 0.58rem; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 4px rgba(25, 20, 18, 0.7); line-height: 1.3; }

.g-cell { flex: 0 1 calc((100% - (var(--g-cols) - 1) * var(--g-gap)) / var(--g-cols)); }
@media (max-width: 1100px) { .g-grid { --g-cols: 5; } }
@media (max-width: 860px)  { .g-grid { --g-cols: 4; } }
@media (max-width: 560px)  { .g-grid { --g-cols: 3; --g-gap: 6px; }
  .g-cap { font-size: 0.5rem; } }

/* ════════ FLOATING "VIEW" CIRCLE THAT FOLLOWS THE CURSOR ════════ */
.cursor-tag { position: fixed; top: 0; left: 0; z-index: 9000; pointer-events: none;
  width: 62px; height: 62px; border-radius: 50%;
  /* abstract pastel blend: honey, blush, light blue softly mixed; the radial overlay calms
     the conic so it reads as a single warm-cool object, not a colour wheel. */
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.35), transparent 55%),
    conic-gradient(from 140deg at 50% 50%,
      var(--honey) 0deg,
      var(--blush) 130deg,
      var(--lightblue) 240deg,
      var(--honey) 360deg);
  color: var(--bean);
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1), height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0; will-change: transform;
  box-shadow: 0 12px 26px -10px rgba(25, 20, 18, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.18); }
.cursor-tag.is-on { opacity: 0.88; transform: translate(-50%, -50%) scale(1); }
.cursor-tag.is-pressed { transform: translate(-50%, -50%) scale(0.86); }
/* compact pill variant for text targets (eg WWM menu links) — straight arrow + label */
.cursor-tag.is-compact { width: auto; height: 24px; border-radius: 999px;
  padding: 0 11px 0 9px; gap: 6px;
  font-size: 0.54rem; letter-spacing: 0.18em;
  box-shadow: 0 6px 14px -8px rgba(25, 20, 18, 0.4); }
.cursor-tag .cursor-tag__arrow { display: none; font-family: var(--mono); font-size: 0.78rem; line-height: 1;
  letter-spacing: 0; font-weight: 400; transform: translateY(-0.5px); }
.cursor-tag.is-compact .cursor-tag__arrow { display: inline-block; }
@media (hover: none), (max-width: 860px) { .cursor-tag { display: none; } .g-cell { cursor: pointer; } }
/* When the floating circle is shown, JS adds .cursor-hide to <body> and the native cursor is suppressed everywhere. */
body.cursor-hide, body.cursor-hide * { cursor: none !important; }

/* ════════ LIGHTBOX (click a gallery cell — editorial magazine spread) ════════ */
.lightbox { position: fixed; inset: 0; z-index: 9100;
  background: rgba(10, 8, 8, 0.985); display: none;
  padding: clamp(28px, 3.4vh, 48px) clamp(22px, 2.4vw, 44px); }
.lightbox.is-open { display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "stage"
    "caption";
  row-gap: clamp(18px, 2vw, 28px);
  animation: lightbox-in 0.32s var(--ease); }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }

/* close (top-right) */
.lightbox__close { position: absolute; top: clamp(20px, 2.4vw, 30px); right: clamp(20px, 2.4vw, 30px);
  width: 42px; height: 42px; border-radius: 50%; background: rgba(242, 234, 222, 0.08);
  border: 0; color: var(--linen); font-size: 1.2rem; line-height: 1; cursor: pointer;
  transition: background 0.25s var(--ease); z-index: 10; }
.lightbox__close:hover { background: rgba(242, 234, 222, 0.18); }


/* image stage (centre) — image sized to leave room for the caption block below */
.lightbox__stage { grid-area: stage; margin: 0; position: relative;
  display: flex; align-items: flex-end; justify-content: center; min-height: 0; }
.lightbox__img { max-width: 100%; max-height: min(72vh, 760px); width: auto; height: auto; object-fit: contain;
  border-radius: 10px; box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
  transition: opacity 0.25s var(--ease); }

/* caption block under the image — anchored, magazine-style */
.lightbox__caption { grid-area: caption; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; gap: 10px; padding: 4px 0 0; margin: 0;
  text-align: center; }
.lightbox__caption::before { content: ""; display: block; width: 36px; height: 1px;
  background: rgba(242, 234, 222, 0.4); margin-bottom: 4px; }
.lightbox__cap-kicker { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(242, 234, 222, 0.65); margin: 0; }
.lightbox__cap-text { font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.05rem, 1.35vw, 1.4rem); line-height: 1.3;
  color: var(--linen); margin: 0; max-width: 50ch; }
.lightbox__cap-text:empty::before { content: "—"; color: rgba(242, 234, 222, 0.45); }

/* prev / next arrows */
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(242, 234, 222, 0.06); border: 0; color: var(--linen);
  font-family: var(--serif); font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease); z-index: 5; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(242, 234, 222, 0.16); }
.lightbox__prev { left: clamp(18px, 2vw, 36px); }
.lightbox__next { right: clamp(18px, 2vw, 36px); }
.lightbox__prev:hover { transform: translate(-3px, -50%); }
.lightbox__next:hover { transform: translate(3px, -50%); }

/* editorial info panel (right) */
.lightbox__info { grid-area: info; display: flex; flex-direction: column;
  align-self: center; gap: clamp(14px, 2vh, 22px); padding-left: clamp(20px, 1.8vw, 32px);
  border-left: 1px solid rgba(242, 234, 222, 0.22); }
.lightbox__info-kicker { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(242, 234, 222, 0.65); margin: 0; }
.lightbox__sec-num { font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 3.5vw, 3.6rem); line-height: 0.9; letter-spacing: -0.02em;
  color: var(--linen); margin: 0; }
.lightbox__sec-name { font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 2.2vw, 2.1rem); letter-spacing: -0.02em; line-height: 1;
  color: var(--linen); margin: 0; }
.lightbox__sec-desc { font-family: var(--sans); font-size: 0.92rem; line-height: 1.55;
  color: rgba(242, 234, 222, 0.92); margin: 0; max-width: 30ch; }
.lightbox__meta { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 0;
  padding-top: 14px; border-top: 1px solid rgba(242, 234, 222, 0.22); }
.lightbox__meta-row { display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; }
.lightbox__meta-row > span:first-child { color: rgba(242, 234, 222, 0.55); }
.lightbox__meta-row > span:last-child { color: var(--linen); }

@media (max-width: 900px) {
  .lightbox.is-open { grid-template-columns: 1fr;
    grid-template-areas: "stage" "caption"; gap: 16px;
    padding: 28px 22px; }
  .lightbox__img { max-height: 62vh; border-radius: 8px; }
  .lightbox__prev, .lightbox__next { width: 38px; height: 38px; font-size: 1.1rem; }
  .lightbox__cap-text { font-size: 0.86rem; }
}

/* ════════ SLIDING UNDERLINE ON EDITORIAL TEXT LINKS ════════ */
/* Applied to: Read the menu · See the gallery · Google reviews link · Get directions · etc. */
.wwm__titlelink,
.gtease__cta,
.visit-rating__link,
.textlink,
.gallery-cta a,
.hsnaps__cta,
.quote-pause__cta {
  position: relative;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  text-decoration: none !important;
  border-bottom: 0 !important;
  padding-bottom: 2px;
}
.wwm__titlelink:hover,
.gtease__cta:hover,
.visit-rating__link:hover,
.textlink:hover,
.gallery-cta a:hover,
.hsnaps__cta:hover,
.quote-pause__cta:hover {
  animation: link-sweep 0.85s cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}
@keyframes link-sweep {
  0%   { background-size: 100% 1px; background-position: 100% 100%; }
  44%  { background-size: 0% 1px;   background-position: 100% 100%; }
  56%  { background-size: 0% 1px;   background-position: 0% 100%; }
  100% { background-size: 100% 1px; background-position: 0% 100%; }
}

/* gift cards two-column hero */
.gift-hero { max-width: 1100px; margin: 0 auto; padding: clamp(60px, 9vh, 120px) var(--gutter) clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: stretch; }
.gift-hero__left { position: relative; display: flex; flex-direction: column; align-items: center; }
.gift-hero__left .giftcard { margin: 0; width: 100%; max-width: 460px; }
/* caption pinned just below the card so it doesn't add to the column height —
   that way the card alone sets the row height and the button bottom-aligns to it */
.gift-caption { position: absolute; top: 100%; left: 0; right: 0; margin: 14px 0 0;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--bean) 56%, transparent); text-align: center; }
.gift-hero__right { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(14px, 2vw, 22px); }
.gift-hero__right .kicker { margin: 0; }
.gift-hero__right h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02; letter-spacing: -0.02em; margin: 0; }
.gift-hero__right .lede { font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.55; color: color-mix(in srgb, var(--bean) 78%, transparent); margin: 0; max-width: 36ch; }
.gift-hero__right .pillbtn { margin-top: auto; }
@media (max-width: 760px) {
  .gift-hero { grid-template-columns: 1fr; text-align: center; gap: 28px; padding-top: clamp(40px, 8vh, 80px); }
  .gift-hero__left { gap: 16px; }
  .gift-caption { position: static; margin-top: 0; }
  .gift-hero__right { align-items: center; }
  .gift-hero__right .lede { margin-left: auto; margin-right: auto; }
  .gift-hero__right .pillbtn { margin-top: 8px; }
}

/* ════════ MOBILE: drop the fixed-hero parallax + reshape pinned sections ════════ */
@media (max-width: 860px) {
  /* hero flows normally so the footer reaches the bottom */
  .hero { position: static; height: auto; min-height: 100vh;
    padding: clamp(110px, 18vh, 160px) var(--gutter) clamp(80px, 14vh, 140px); }
  .scroll-stage { margin-top: 0; box-shadow: none; }
  .hero__cue { display: none; }

  /* snapshots: three large stacked photos, then the gallery CTA */
  .hsnaps { padding: clamp(56px, 9vw, 90px) var(--gutter) clamp(20px, 4vw, 40px); }
  .hsnaps__label { position: static; transform: none; left: auto;
    text-align: center; margin: 0 auto clamp(22px, 4vw, 36px); display: block; }
  .hsnaps__cta { position: static; display: block; text-align: center;
    margin: clamp(28px, 5vw, 44px) auto 0; right: auto; bottom: auto; }
  .hsnaps__track { display: flex; flex-direction: column; gap: clamp(14px, 3vw, 24px);
    width: 100%; transform: none !important; }
  .hsnaps__card { width: 100%; height: auto; flex: none; aspect-ratio: 4 / 5;
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 28px 52px -34px rgba(25, 20, 18, 0.45); }
  .hsnaps__card:nth-child(n+4) { display: none; }
  .hsnaps__card img { width: 100%; height: 100%; object-fit: cover; }
}

/* small footnote / aside under body copy */
.page-section .page-note { font-size: 0.85rem; line-height: 1.55;
  color: color-mix(in srgb, var(--bean) 55%, transparent); max-width: 56ch; margin: 22px auto 0; }

/* gift card, framed like a real card */
.giftcard { display: block; width: min(420px, 82vw); margin: clamp(40px, 6vw, 70px) auto 0;
  border-radius: 16px; padding: 10px; background: color-mix(in srgb, var(--linen) 40%, #fff);
  border: 1px solid var(--hair); box-shadow: 0 30px 60px -42px rgba(25, 20, 18, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.giftcard img { display: block; width: 100%; border-radius: 9px; }
.giftcard:hover { transform: translateY(-4px); box-shadow: 0 40px 72px -40px rgba(25, 20, 18, 0.55); }
.giftcard:active { transform: translateY(-1px); }

/* menu page */
.menu-cat { max-width: 720px; margin: 0 auto; padding: clamp(34px, 5vw, 60px) var(--gutter); border-top: 1px solid var(--hair); }
.menu-cat__hero { position: relative; margin: 0 auto clamp(28px, 4vw, 48px); aspect-ratio: 16 / 9;
  border-radius: 6px; overflow: hidden; box-shadow: 0 22px 44px -28px rgba(25, 20, 18, 0.4); }
.menu-cat__hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) { .menu-cat__hero { aspect-ratio: 4 / 3; border-radius: 4px; } }

/* menu page mini-nav (anchor row beneath the page hero) */
.menu-toc { display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 3px 8px; margin: clamp(18px, 2.4vw, 30px) auto 0; max-width: 720px; }
.menu-toc a { font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: color-mix(in srgb, var(--bean) 52%, transparent);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.menu-toc a:hover { color: var(--dusk); border-bottom-color: var(--dusk); }
.menu-toc span { font-family: var(--mono); font-size: 0.5rem; line-height: 1;
  color: color-mix(in srgb, var(--bean) 22%, transparent); padding: 0 2px; }
html { scroll-behavior: smooth; }
.menu-cat h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; text-align: center; }
.menu-cat .cat-note { color: color-mix(in srgb, var(--bean) 64%, transparent); font-size: 0.95rem; margin: 0 auto 26px; max-width: 52ch; text-align: center; }
.menu-item { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; }
.menu-item .i { font-weight: 500; font-size: 1.02rem; }
.menu-item .d { flex: 1; border-bottom: 1px dotted color-mix(in srgb, var(--bean) 26%, transparent); transform: translateY(-4px); }
.menu-item .p { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--dusk); }
.menu-fine { text-align: center; font-size: 0.82rem; color: var(--muted); padding: clamp(30px,4vw,50px) var(--gutter) 0; }

/* details grid (visit/location) */
.facts { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 48px); text-align: center; }
.facts .k { font-family: var(--mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusk); margin-bottom: 8px; }
.facts .v { font-size: 1.02rem; line-height: 1.5; }
@media (max-width: 560px) { .facts { grid-template-columns: 1fr; } }

.page-map { max-width: 1100px; margin: clamp(40px,6vw,72px) auto 0; padding: 0 var(--gutter); }

/* visit hero — text left, shopfront image right (stacks on mobile) */
.visit-hero { max-width: 1280px; margin: 0 auto; padding: clamp(56px, 9vh, 112px) clamp(20px, 3vw, 50px) clamp(28px, 4vh, 48px);
  display: grid; grid-template-columns: minmax(0, 1fr);
  align-items: center; gap: clamp(28px, 4vw, 64px); text-align: center; }
.visit-hero__text { display: flex; flex-direction: column; align-items: center;
  gap: clamp(14px, 2vw, 22px); }
.visit-hero .lede { margin: 0 auto; max-width: 56ch; }
.visit-hero__img { margin: 0; border-radius: 6px; overflow: hidden;
  aspect-ratio: 4 / 3; }
.visit-hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .visit-hero { grid-template-columns: 1fr; text-align: center; }
  .visit-hero__text { align-items: center; }
  .visit-hero .lede { max-width: 56ch; }
}

/* photo grid at the bottom of the Visit page: four portrait shots, click to enlarge */
.visit-bento { max-width: 1100px; margin: clamp(56px, 8vw, 100px) auto;
  padding: 0 clamp(20px, 3vw, 50px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.1vw, 16px); }
.visit-bento figure { margin: 0; overflow: hidden; border-radius: 4px; cursor: pointer;
  aspect-ratio: 4 / 5; }
.visit-bento img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease); }
.visit-bento figure:hover img { transform: scale(1.04); }
.visit-bento figure:focus-visible { outline: 2px solid var(--dusk); outline-offset: 3px; }
@media (max-width: 720px) {
  .visit-bento { grid-template-columns: 1fr 1fr; gap: 8px; }
}
/* static map image (no third-party iframe, so ad/privacy blockers can't break it);
   the whole image links out to Google Maps */
.page-map .map-link { display: block; border-radius: 4px; overflow: hidden; }
.page-map img { width: 100%; height: clamp(300px, 46vh, 460px); object-fit: cover; border: 0; border-radius: 4px; display: block; filter: grayscale(0.35) sepia(0.12) contrast(0.96); transition: filter 0.45s var(--ease); }
.page-map .map-link:hover img { filter: grayscale(0.12) sepia(0.05); }
.map-wrap { position: relative; }
.map-link:focus-visible { outline: 2px solid var(--dusk); outline-offset: 2px; }

/* page cta button */
.pillbtn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--dusk); color: var(--linen); padding: 14px 28px; border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.pillbtn:hover { background: color-mix(in srgb, var(--dusk) 85%, #000); transform: translateY(-2px); }

/* inner footer */
.page-foot { text-align: center; padding: clamp(64px, 9vh, 120px) var(--gutter); border-top: 1px solid var(--hair); }
.page-foot h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: clamp(26px, 4vw, 42px); }
.page-foot .hello__socials { border-bottom: 0; padding-bottom: 0; margin-bottom: clamp(26px, 4vw, 40px); }
.page-foot__base { font-size: 0.8rem; color: var(--muted); }

/* simple inner-page reveal */
.r { opacity: 0; transform: translateY(16px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.r.in { opacity: 1; transform: none; }
.no-js .r { opacity: 1; transform: none; }

/* landing footer page nav */
.foot-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: clamp(28px, 4vw, 44px); }
.foot-nav a {
  font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 65%, transparent);
  transition: color 0.25s var(--ease);
}
.foot-nav a:hover { color: var(--dusk); }

/* ════════ PERSISTENT LEFT RAIL NAV (all pages) ════════ */
.rail-logo { position: fixed; top: clamp(20px, 3vw, 34px); left: clamp(34px, 4vw, 62px); z-index: 9200;
  display: block; width: max-content; }
.rail-logo img { height: 48px; display: block; transition: opacity 0.5s var(--ease); }
/* the white variant is layered on top and fades in only when the lightbox is open */
.rail-logo .rail-logo__white { position: absolute; inset: 0 auto 0 0; opacity: 0; pointer-events: none; }
body.lightbox-open .rail-logo .rail-logo__color { opacity: 0; }
body.lightbox-open .rail-logo .rail-logo__white { opacity: 1; }

/* vertical scroll-progress bar, left of the rail (desktop / tablet) */
.scrollbar { position: fixed; left: clamp(12px, 1.7vw, 24px); top: 32%; bottom: 32%; width: 4px;
  background: color-mix(in srgb, var(--bean) 13%, transparent); border-radius: 999px; z-index: 60; }
.scrollbar__fill { display: block; width: 100%; height: 0%; background: var(--dusk); border-radius: 999px; }
@media (max-width: 860px) { .scrollbar { display: none; } }


/* mobile burger + drawer */
.navburger {
  position: fixed; top: clamp(16px, 3vw, 26px); right: clamp(16px, 4vw, 30px); z-index: 80;
  display: none; flex-direction: column; gap: 5px; width: 42px; padding: 9px;
  background: none; border: 0; cursor: pointer;
}
.navburger span { height: 2px; width: 24px; background: var(--bean); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
body.nav-open .navburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .navburger span:nth-child(2) { opacity: 0; }
body.nav-open .navburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navdrawer {
  position: fixed; inset: 0; z-index: 70; background: var(--linen);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
body.nav-open .navdrawer { opacity: 1; visibility: visible; }
.navdrawer a {
  font-family: var(--serif); font-size: clamp(2rem, 8vw, 3rem); line-height: 1.2;
  color: var(--bean); opacity: 0.55; padding: 6px 0;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.navdrawer a:hover, .navdrawer a.is-current { opacity: 1; color: var(--dusk); }
body.nav-open { overflow: hidden; }

@media (max-width: 860px) {
  .navburger { display: flex; }
}

/* ════════ NAV RESPONSIVE (final overrides) ════════ */
@media (max-width: 1099px) {
  .spy { display: none !important; }
  .rail-logo { z-index: 80; }
  .rail-logo img { height: 38px; }
  .navburger { display: flex !important; }
}
@media (min-width: 601px) { .scrollbar { display: block; } }
@media (max-width: 600px) { .scrollbar { display: none !important; } }

/* ── landing Visit: details left, map on the side ── */
.visit-split {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(28px, 4vw, 56px);
  align-items: center; text-align: left;
}
.visit-info .visit__row { grid-template-columns: 1fr; justify-items: start; text-align: left; gap: 6px; }
.visit-info .visit__row:first-child { border-top: 0; padding-top: 0; }
.visit-info .textlink { align-self: start; margin: 24px 0 0; }
.visit-map { border-radius: 4px; overflow: hidden; background: #ece1d1; }
.visit-map .map-link { display: block; }
.visit-map img {
  width: 100%; aspect-ratio: 4 / 3; min-height: 250px; object-fit: cover; border: 0; display: block;
  filter: grayscale(0.35) sepia(0.12) contrast(0.96) brightness(1.02);
  transition: filter 0.45s var(--ease);
}
.visit-map .map-link:hover img { filter: grayscale(0.12) sepia(0.05) brightness(1.02); }

/* cookie-consent banner (gates Google Analytics) */
.consent { position: fixed; left: 50%; bottom: clamp(12px, 2vw, 22px); transform: translateX(-50%);
  z-index: 9500; width: min(560px, calc(100% - 28px)); display: flex; align-items: center;
  gap: 16px; background: var(--linen); color: var(--bean); border: 1px solid var(--hair);
  border-radius: 12px; padding: 14px 16px; box-shadow: 0 22px 50px -28px rgba(25, 20, 18, 0.5);
  font-family: var(--sans); animation: consent-in 0.5s var(--ease) both; }
@keyframes consent-in { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
.consent__text { margin: 0; flex: 1; font-size: 0.86rem; line-height: 1.5;
  color: color-mix(in srgb, var(--bean) 80%, transparent); }
.consent__link { color: var(--dusk); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: 8px; flex: none; }
.consent__btn { font-family: var(--sans); font-size: 0.82rem; font-weight: 500; line-height: 1;
  border-radius: 999px; padding: 9px 16px; cursor: pointer; border: 1px solid transparent;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease); }
.consent__btn--solid { background: var(--dusk); color: var(--linen); }
.consent__btn--solid:hover { background: color-mix(in srgb, var(--dusk) 88%, var(--bean)); }
.consent__btn--ghost { background: transparent; color: var(--bean); border-color: var(--hair); }
.consent__btn:active { transform: scale(0.97); }
@media (max-width: 520px) {
  .consent { flex-direction: column; align-items: stretch; gap: 12px; text-align: center; }
  .consent__actions { justify-content: center; }
}
@media (max-width: 760px) {
  .visit-split { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .visit-info .visit__row { justify-items: center; text-align: center; }
  .visit-info .textlink { align-self: center; margin: 22px auto 0; }
}

/* menu sub-headers + item descriptions */
.menu-sub { font-family: var(--mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dusk); margin: 30px 0 12px; text-align: center; }
.menu-cat .menu-sub:first-of-type { margin-top: 6px; }
.menu-desc { text-align: left; font-size: 0.85rem; line-height: 1.45; color: color-mix(in srgb, var(--bean) 60%, transparent); margin: -3px 0 14px; max-width: 60ch; }

/* ════════ SNAPSHOTS MARQUEE ════════ */
.snaps { padding: clamp(56px, 9vh, 110px) 0; border-top: 1px solid var(--hair); text-align: center; overflow: hidden; }
.snaps .sectlabel { margin-bottom: clamp(26px, 4vw, 44px); }
.snaps__viewport { overflow: hidden; width: 100%; }
.snaps__track { display: flex; gap: 14px; width: max-content; animation: marqueeX 60s linear infinite; }
.snaps__track img { height: clamp(170px, 24vh, 280px); width: auto; border-radius: 4px; object-fit: cover; display: block; }
.snaps:hover .snaps__track { animation-play-state: paused; }
.snaps .textlink { margin-top: clamp(26px, 4vw, 44px); display: inline-block; }
@keyframes marqueeX { to { transform: translateX(-50%); } }

/* ════════ FOOTER — spill graphic silhouette, minimal centered ════════ */
.ftr { position: relative; background: var(--linen); color: var(--bean); overflow: visible; isolation: isolate;
  padding: clamp(48px, 7vh, 90px) var(--gutter) clamp(28px, 4vh, 48px); }
/* single centred divider that fades out at both ends (echoes the section hairlines) */
.ftr__rule { display: block; width: min(640px, 78%); height: 1px; border: 0; margin: 0 auto clamp(32px, 4vw, 52px);
  background: linear-gradient(90deg, transparent 0,
    color-mix(in srgb, var(--bean) 26%, transparent) 22%,
    color-mix(in srgb, var(--bean) 26%, transparent) 78%, transparent 100%); }
.ftr__inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: clamp(24px, 3.4vw, 38px); }
.ftr__label { font-family: var(--sans); font-size: 0.92rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 55%, transparent); margin: 0 0 12px; }
.ftr__shout { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2.05rem);
  line-height: 1.3; color: var(--bean); max-width: 22ch; margin: 0; }
.ftr__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin: 0; }
.ftr__nav a { font-family: var(--sans); font-size: 0.95rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 65%, transparent); transition: color 0.25s var(--ease); }
.ftr__nav a:hover { color: var(--dusk); }
.ftr__signup { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.ftr__signup .ftr__label { margin: 0; transition: opacity 0.35s var(--ease); }
.ftr__signup-row { position: relative; display: flex; align-items: center; width: min(384px, 84vw);
  border: 1px solid var(--hair); border-radius: 999px; background: color-mix(in srgb, var(--linen) 45%, #fff);
  overflow: hidden; transition: border-color 0.25s var(--ease); }
.ftr__signup-row:focus-within { border-color: var(--dusk); }
/* on success: button content swaps to a drawn checkmark, label flips to "Thanks." */
.ftr__signup button { position: relative; }
.ftr__signup-btn-text { transition: opacity 0.22s var(--ease); }
.ftr__signup-btn-tick { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.22s var(--ease); pointer-events: none; }
.ftr__signup-btn-tick svg { width: 16px; height: 16px; }
.ftr__signup-btn-tick svg path { fill: none; stroke: var(--linen); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 22; stroke-dashoffset: 22;
  transition: stroke-dashoffset 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.18s; }
.ftr__signup.is-done .ftr__signup-btn-text { opacity: 0; }
.ftr__signup.is-done .ftr__signup-btn-tick { opacity: 1; }
.ftr__signup.is-done .ftr__signup-btn-tick svg path { stroke-dashoffset: 0; }
.ftr__signup input { flex: 1; min-width: 0; font: inherit; font-size: 0.9rem; color: var(--bean);
  background: transparent; border: 0; padding: 12px 6px 12px 20px; }
.ftr__signup input::placeholder { color: color-mix(in srgb, var(--bean) 40%, transparent); }
.ftr__signup input:focus { outline: none; }
/* on submit, the typed email rolls up and "Check your inbox" rolls in to replace it */
.ftr__signup input { transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.ftr__signup.is-done input { opacity: 0; transform: translateY(-7px); pointer-events: none; }
.ftr__signup-msg { position: absolute; left: 0; top: 0; bottom: 0; display: flex; align-items: center;
  padding: 0 6px 0 20px; font: inherit; font-size: 0.9rem; color: var(--bean); white-space: nowrap;
  opacity: 0; transform: translateY(7px); pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.ftr__signup.is-done .ftr__signup-msg { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
/* keep browser autofill from painting its own blue/yellow box inside the pill */
.ftr__signup input:-webkit-autofill,
.ftr__signup input:-webkit-autofill:hover,
.ftr__signup input:-webkit-autofill:focus,
.ftr__signup input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--bean);
  caret-color: var(--bean);
  -webkit-box-shadow: 0 0 0 1000px color-mix(in srgb, var(--linen) 45%, #fff) inset;
          box-shadow: 0 0 0 1000px color-mix(in srgb, var(--linen) 45%, #fff) inset;
  transition: background-color 600000s 0s, color 600000s 0s;
}
.ftr__signup button { flex: none; font: inherit; font-size: 0.85rem; cursor: pointer; color: var(--linen);
  background: var(--dusk); border: 0; border-radius: 999px; margin: 4px; padding: 9px 20px;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease); }
.ftr__signup button:hover { background: color-mix(in srgb, var(--dusk) 88%, var(--bean)); }
.ftr__signup button:active { transform: scale(0.96); }
.ftr .hello__socials { justify-content: center; border-bottom: 0; padding-bottom: 0; }
.ftr__base { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: clamp(8px, 1.5vw, 16px);
  font-family: var(--sans); font-size: 0.88rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 55%, transparent); }
.ftr__legal { font-size: 0.8rem; color: color-mix(in srgb, var(--bean) 45%, transparent); }
.ftr__legal a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: color 0.25s var(--ease), border-color 0.25s var(--ease); cursor: pointer; }
.ftr__legal a:hover { color: var(--dusk); border-bottom-color: var(--dusk); }

/* landing visit section sits as its own snap stop — center content in 100vh */
#visit { min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  border-top: 0; /* divider removed; the bigger landing rhythm is hero → WWM hairline → flow */
  padding-bottom: clamp(24px, 4vh, 56px); /* tighter bottom — was clamp(90px,15vh,200px) from .block */ }

/* quiet sign-off at the bottom of the Visit section */
.visit-signoff { margin: clamp(60px, 9vw, 110px) auto 0; text-align: center; }
.visit-signoff__line { font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.18; letter-spacing: -0.01em;
  color: var(--bean); margin: 0; max-width: 22ch;
  margin-left: auto; margin-right: auto; }
#visit .block__title { margin-bottom: clamp(16px, 2.4vw, 30px); }
.visit-rating { display: inline-flex; align-items: center; gap: 10px; margin: 0 auto clamp(36px, 5vw, 60px);
  font-family: var(--sans); font-size: 0.92rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 65%, transparent); }
.stars { position: relative; display: inline-block; line-height: 1; font-size: 0.95rem; letter-spacing: 2px; }
.stars__bg { color: color-mix(in srgb, var(--bean) 22%, transparent); }
.stars__fill { position: absolute; left: 0; top: 0; overflow: hidden; white-space: nowrap; width: 95%; color: #d9a441; }

/* visit rating becomes an underlined link out to Google */
.visit-rating__link { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--bean) 22%, transparent); padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease); }
.visit-rating__link:hover { color: var(--dusk); border-bottom-color: var(--dusk); }

/* "Open in Maps" pill that sits on top of the iframes (landing and visit page) */
.map-wrap { position: relative; }
.map-open { position: absolute; top: 12px; right: 12px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bean); background: var(--linen);
  border: 1px solid var(--hair); border-radius: 999px; padding: 8px 14px;
  box-shadow: 0 10px 22px -14px rgba(25, 20, 18, 0.4);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease); }
.map-open:hover { background: var(--dusk); color: var(--linen); transform: translateY(-1px); }
.map-open span { font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0; }

/* ════════ SNAPSHOTS — full-screen horizontal pan ════════ */
.hsnaps { position: relative; }

/* quiet pause — tight typographic moment */
.quote-pause { display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center;
  padding: clamp(0px, 2vh, 30px) var(--gutter) clamp(70px, 10vh, 120px); }
.quote-pause__lede { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dusk); margin: 0 0 clamp(28px, 4vw, 48px); }
.quote-pause__text { font-family: var(--serif); font-style: normal; font-weight: 400;
  font-size: clamp(1.8rem, 3.8vw, 3rem); line-height: 1.18; letter-spacing: -0.018em;
  color: var(--bean); max-width: 22ch; margin: 0; position: relative; }
.quote-pause__mark { color: color-mix(in srgb, var(--dusk) 60%, transparent);
  font-style: normal; }
.quote-pause__cite { font-family: var(--sans); font-size: 0.92rem; letter-spacing: 0;
  color: color-mix(in srgb, var(--bean) 55%, transparent);
  margin: clamp(28px, 3.4vw, 38px) 0 0; padding: 0; }
.quote-pause__cite::before { content: "— "; color: color-mix(in srgb, var(--bean) 40%, transparent); }

/* gallery teaser — 4-up editorial strip leading into the gallery page */
.gtease { padding: clamp(50px, 8vh, 100px) var(--gutter) clamp(70px, 10vh, 130px);
  max-width: 1280px; margin: 0 auto; text-align: center; }
.gtease__head { margin-bottom: clamp(34px, 4.4vw, 56px); }
.gtease__head .kicker { color: var(--dusk); margin-bottom: 14px; }
.gtease__title { font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.05; }
.gtease__grid { display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 32px); margin-bottom: clamp(40px, 5vw, 64px);
  text-align: left; }
.gtease__card { display: flex; flex-direction: column; gap: clamp(10px, 1.2vw, 16px);
  color: inherit; text-decoration: none; }
.gtease__card figure { margin: 0; aspect-ratio: 4 / 5; border-radius: 8px; overflow: hidden;
  box-shadow: 0 22px 44px -30px rgba(25, 20, 18, 0.4); }
.gtease__card img { width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease); }
.gtease__card:hover img { transform: scale(1.04); }
.gtease__num { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.18em;
  color: var(--dusk); margin: 4px 0 0; }
.gtease__cat { font-family: var(--serif); font-weight: 400; font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  line-height: 1.05; letter-spacing: -0.018em; margin: 0; }
.gtease__sub { font-family: var(--sans); font-size: 0.84rem; line-height: 1.45;
  color: color-mix(in srgb, var(--bean) 70%, transparent); margin: 0; max-width: 28ch; }
.gtease__card:hover .gtease__cat { color: var(--dusk); }
.gtease__cta { font-family: var(--sans); font-size: 1rem; letter-spacing: 0;
  color: var(--bean); border-bottom: 1.5px solid var(--dusk);
  padding-bottom: 4px; transition: color 0.25s var(--ease); display: inline-block; }
.gtease__cta:hover { color: var(--dusk); }
@media (max-width: 760px) {
  .gtease__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .gtease__cat { font-size: 1.2rem; }
}
.hsnaps__label {
  position: absolute; top: clamp(26px, 5vh, 54px); left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dusk); white-space: nowrap;
}
.hsnaps__cta {
  position: absolute; bottom: clamp(26px, 5vh, 54px); right: var(--gutter); z-index: 3;
  font-family: var(--mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--bean);
  border-bottom: 1.5px solid var(--dusk); padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.hsnaps__cta:hover { color: var(--dusk); }

/* desktop: a single banner photograph — the snapshot, not snapshots */
@media (min-width: 861px) {
  .hsnaps { min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
    padding: clamp(70px, 10vh, 130px) var(--gutter); text-align: center; }
  .hsnaps__label { position: static; left: auto; transform: none;
    margin: 0 auto clamp(32px, 4vw, 52px); }
  .hsnaps__track { display: block; max-width: 1180px; width: 100%; margin: 0 auto;
    transform: none !important; animation: none; }
  .hsnaps__card { width: 100%; height: auto; aspect-ratio: 16 / 9; flex: none;
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 40px 80px -50px rgba(25, 20, 18, 0.45); }
  .hsnaps__card:nth-child(n+2) { display: none; }
  .hsnaps__card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hsnaps__cta { position: static; display: inline-block; right: auto; bottom: auto;
    margin: clamp(32px, 4vw, 52px) auto 0; }
}
