/* ============================================================
   RELAXED ESPRESSO — Mermaid Beach
   Industrial editorial system
   Poured concrete / stainless / ink / kraft
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --bg:      #E9E7E2;   /* poured concrete white */
  --bg-2:    #DEDBD3;   /* rendered grey */
  --paper:   #F4F2ED;   /* tape / greaseproof */
  --ink:     #141412;   /* black steel */
  --ink-2:   #2B2B28;
  --grey:    #8F8B82;   /* mid concrete */
  --steel:   #9EA1A3;   /* brushed stainless */
  --kraft:   #B08A5C;   /* packaging tan — the one warm note */
  --line:    rgba(20, 20, 18, .16);
  --line-lt: rgba(233, 231, 226, .18);

  --font-d: "Archivo", "Helvetica Neue", sans-serif;
  --font-m: "IBM Plex Mono", ui-monospace, monospace;

  --pad: clamp(20px, 5vw, 72px);
  --nav-h: 64px;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-inout: cubic-bezier(.7, 0, .2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-d);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

a:focus-visible, button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 300;
  background: var(--ink); color: var(--bg);
  padding: 12px 20px;
  font-family: var(--font-m);
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* ---------- type utilities ---------- */
.mono {
  font-family: var(--font-m);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--font-m);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
  flex: none;
}
.display {
  font-family: var(--font-d);
  font-weight: 800;
  font-stretch: 118%;
  text-transform: uppercase;
  letter-spacing: -.025em;
  line-height: .92;
  text-wrap: balance;
}
.h-xl { font-size: clamp(2.6rem, 7.2vw, 7rem); }
.h-lg { font-size: clamp(2rem, 4.8vw, 4.4rem); }
.h-md { font-size: clamp(1.4rem, 2.6vw, 2.2rem); letter-spacing: -.015em; }
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  max-width: 34em;
  color: var(--ink-2);
}
.badge {
  display: inline-block;
  border: 2px solid currentColor;
  border-radius: 50%;
  padding: .42em 1.25em .5em;
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 800;
  font-stretch: 105%;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.container { padding-inline: var(--pad); max-width: 1600px; margin-inline: auto; }

/* ---------- theme: ink sections ---------- */
.s-ink {
  background: var(--ink);
  color: var(--bg);
}
.s-ink .eyebrow { color: var(--steel); }
.s-ink .lede { color: rgba(233, 231, 226, .78); }
.s-ink ::selection { background: var(--bg); color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(16px, 3vw, 40px);
  mix-blend-mode: difference;
  color: #fff;
  transition: transform .5s var(--ease-out);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo .logo-roundel { height: 34px; width: auto; flex: none; }
.nav-logo .logo-wordmark { height: 15px; width: auto; }
.nav-links { display: flex; gap: clamp(18px, 3vw, 42px); }
.nav-links a {
  font-family: var(--font-m);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-status { display: flex; align-items: center; gap: 8px; }
.nav-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; } }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.nav-burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: currentColor;
  transition: transform .4s var(--ease-out), top .4s var(--ease-out), opacity .3s;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 24px; }

/* mobile overlay menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding-inline: var(--pad);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .6s var(--ease-inout), visibility 0s .6s;
}
.menu-overlay.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  transition: clip-path .6s var(--ease-inout), visibility 0s;
}
.menu-overlay a.big {
  font-size: clamp(2.6rem, 11vw, 5rem);
  font-weight: 800; font-stretch: 118%;
  text-transform: uppercase; letter-spacing: -.02em;
  line-height: 1.12;
  display: block;
  transform: translateY(30px); opacity: 0;
  transition: transform .6s var(--ease-out), opacity .6s;
}
.menu-overlay.is-open a.big { transform: none; opacity: 1; }
.menu-overlay.is-open a.big:nth-child(2) { transition-delay: .06s; }
.menu-overlay.is-open a.big:nth-child(3) { transition-delay: .12s; }
.menu-overlay.is-open a.big:nth-child(4) { transition-delay: .18s; }
.menu-overlay .overlay-meta {
  margin-top: 8vh;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--steel);
}
body.menu-open { overflow: hidden; }
body.menu-open .nav { mix-blend-mode: normal; }
body.menu-open .nav-burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

/* ============================================================
   LOADER (home only, once per session)
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  transition: clip-path .7s var(--ease-inout);
}
.loader img {
  width: clamp(150px, 22vw, 260px);
  height: auto;
  animation: stamp .55s var(--ease-out) both;
}
@keyframes stamp {
  from { transform: scale(1.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.loader.is-done { clip-path: inset(0 0 100% 0); pointer-events: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  padding-top: calc(var(--nav-h) + 4vh);
}
.hero-word {
  padding-inline: 2.5vw;
  user-select: none;
}
.hero-word img {
  display: block;
  width: 100%; height: auto;
  transform: translateY(115%);
  animation: rise .9s var(--ease-out) .1s forwards;
}
@keyframes rise { to { transform: translateY(0); } }
.hero-word-clip { display: block; overflow: hidden; }
.hero-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding: 18px 2.5vw 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  flex-wrap: wrap;
}
.hero-media {
  flex: 1;
  min-height: 46svh;
  overflow: clip;
  position: relative;
  clip-path: inset(0 0 100% 0);
  animation: unveil 1.1s var(--ease-inout) .45s forwards;
}
@keyframes unveil { to { clip-path: inset(0 0 0 0); } }
.hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}

/* ============================================================
   TAPE MARQUEE — the packaging tape, on screen
   ============================================================ */
.tape {
  --tape-bg: var(--paper);
  --tape-ink: var(--ink);
  position: relative;
  z-index: 2;
  background: var(--tape-bg);
  color: var(--tape-ink);
  border-block: 1px solid var(--line);
  overflow: clip;
  padding-block: 12px;
}
.tape.tape-ink { --tape-bg: var(--ink); --tape-ink: var(--bg); border-color: transparent; }
.tape-track {
  display: flex; gap: 0; width: max-content;
  transform: translateX(-25%);
  /* movement is scroll-linked in main.js — no infinite animation */
}
.tape-track p {
  font-weight: 700; font-style: italic; font-stretch: 112%;
  font-size: .8rem; letter-spacing: .3em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: .3em;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(72px, 12vh, 150px); }
.section-head { display: grid; gap: 22px; margin-bottom: clamp(36px, 6vh, 72px); }

/* -- intro statement -- */
.intro { padding-block: clamp(80px, 15vh, 180px); }
.intro .statement {
  font-size: clamp(1.7rem, 3.6vw, 3.4rem);
  font-weight: 600; font-stretch: 108%;
  line-height: 1.18;
  letter-spacing: -.02em;
  max-width: 22em;
  text-wrap: balance;
}
.intro .statement em {
  font-style: italic;
  font-weight: 700;
  color: var(--kraft);
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
}

/* -- auto-rotating film strip -- */
.film {
  padding-block: clamp(72px, 12vh, 150px);
  overflow: clip;
}
.film-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; flex-wrap: wrap;
  padding-inline: var(--pad);
  margin-bottom: clamp(28px, 5vh, 52px);
}
.film-track {
  display: flex;
  width: max-content;
  animation: film-slide 60s linear infinite;
}
.film-set {
  display: flex;
  flex: none;
  padding-right: clamp(20px, 3vw, 48px);
  gap: clamp(20px, 3vw, 48px);
}
.film-card { flex: none; }
.film-card figure { overflow: clip; background: var(--bg-2); }
.film-card img {
  height: clamp(280px, 46vh, 440px);
  width: auto;
  object-fit: cover;
  display: block;
}
.film-card figcaption {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 12px;
  color: var(--grey);
}
.film-card figcaption b {
  font-weight: 600; font-stretch: 110%;
  color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
  font-size: .82rem;
}
@keyframes film-slide { to { transform: translateX(-50%); } }

/* -- split feature (coffee / pastries) -- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.split.rev > .split-media { order: 2; }
.split-media { overflow: clip; position: relative; }
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.split-media .badge-float {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  background: var(--bg);
  color: var(--ink);
  font-size: .72rem;
  border-width: 1.5px;
  transform: rotate(-6deg);
}
.split-body { display: grid; gap: 24px; justify-items: start; }
.split-body .facts {
  display: grid; gap: 0;
  width: 100%;
  border-top: 1px solid var(--line);
}
.split-body .facts li {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.split-body .facts li span:last-child { color: var(--grey); text-align: right; }
.s-ink .split-body .facts { border-color: var(--line-lt); }
.s-ink .split-body .facts li { border-color: var(--line-lt); }
.s-ink .split-body .facts li span:last-child { color: var(--steel); }

/* -- buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-m);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 26px;
  border: 1px solid currentColor;
  position: relative;
  overflow: clip;
  transition: color .35s var(--ease-out);
  cursor: pointer;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform .35s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: scaleY(1); }
.btn .arr { transition: transform .35s var(--ease-out); }
.btn:hover .arr { transform: translateX(5px); }
.s-ink .btn::before { background: var(--bg); }
.s-ink .btn:hover { color: var(--ink); }
.btn.solid { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.solid::before { background: var(--kraft); }
.btn.solid:hover { color: var(--ink); border-color: var(--kraft); }

/* -- menu teaser rows / menu page rows -- */
.menu-rows { border-top: 1px solid var(--line); }
.s-ink .menu-rows { border-color: var(--line-lt); }
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 32px;
  align-items: baseline;
  padding: clamp(16px, 2.4vh, 26px) 10px;
  border-bottom: 1px solid var(--line);
  transition: background .3s, color .3s, padding .3s var(--ease-out);
  position: relative;
}
.s-ink .menu-row { border-color: var(--line-lt); }
.menu-row:hover { background: var(--ink); color: var(--bg); padding-inline: 22px; }
.s-ink .menu-row:hover { background: var(--bg); color: var(--ink); }
.menu-row .name {
  font-weight: 700; font-stretch: 112%;
  text-transform: uppercase; letter-spacing: .02em;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  display: flex; align-items: baseline; gap: 12px;
}
.menu-row .name .sig {
  font-family: var(--font-m);
  font-size: .6rem; letter-spacing: .18em;
  color: var(--kraft);
  border: 1px solid var(--kraft);
  border-radius: 50%;
  padding: 3px 10px 4px;
  transform: translateY(-3px);
  white-space: nowrap;
}
.menu-row .desc {
  grid-column: 1;
  color: var(--grey);
  font-size: .92rem;
  max-width: 46em;
}
.menu-row:hover .desc { color: inherit; opacity: .75; }
.menu-row .price {
  grid-column: 2; grid-row: 1;
  font-family: var(--font-m);
  font-size: .95rem; font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* -- quote band -- */
.quote {
  padding-block: clamp(90px, 16vh, 200px);
  text-align: center;
}
.quote blockquote {
  font-size: clamp(1.6rem, 3.4vw, 3.2rem);
  font-weight: 600; font-stretch: 108%;
  letter-spacing: -.015em;
  line-height: 1.2;
  max-width: 24em;
  margin-inline: auto;
  text-wrap: balance;
}
.quote blockquote em { font-style: italic; color: var(--kraft); }
.quote cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
}

/* -- visit band (pre-footer CTA) -- */
.visit {
  position: relative;
  overflow: clip;
}
.visit .visit-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(35%) contrast(1.02);
  opacity: .42;
}
.visit .container {
  position: relative;
  padding-block: clamp(90px, 18vh, 220px);
  display: grid; gap: 30px; justify-items: start;
}
.visit .h-xl { max-width: 8em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--bg); overflow: clip; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  padding-block: clamp(56px, 8vh, 90px);
}
.footer-grid h3 {
  font-family: var(--font-m);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}
.footer-grid li { padding-block: 3px; font-size: .95rem; }
.footer-grid a { border-bottom: 1px solid transparent; transition: border-color .3s; }
.footer-grid a:hover { border-color: currentColor; }
.footer-word {
  padding-inline: var(--pad);
  user-select: none;
}
.footer-word img {
  display: block;
  width: min(100%, 1400px);
  margin-inline: auto;
  opacity: .18;
}
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid var(--line-lt);
  color: var(--steel);
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(48px, 10vh, 120px));
  padding-bottom: clamp(40px, 7vh, 90px);
  display: grid; gap: 26px;
}
.page-hero .h-hero {
  font-size: clamp(3rem, 11vw, 11rem);
  line-height: .9;
}
.page-hero .h-hero .word-clip { display: block; overflow: hidden; }
.page-hero .h-hero .word-clip span {
  display: inline-block;
  transform: translateY(115%);
  animation: rise .8s var(--ease-out) forwards;
}
.page-hero-meta {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--grey);
}

/* -- menu page -- */
.menu-section { padding-block: clamp(40px, 7vh, 90px); }
.menu-section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vh, 44px);
}
.menu-note {
  font-family: var(--font-m);
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey);
}
.menu-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 6vw, 110px);
  align-items: start;
}
.menu-media-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
}
.menu-media-band figure { overflow: clip; }
.menu-media-band img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.menu-media-band figure:hover img { transform: scale(1.045); }

/* -- story page -- */
.story-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.story-lead .lede + .lede { margin-top: 1.2em; }
.prose { max-width: 38em; display: grid; gap: 1.15em; color: var(--ink-2); font-size: 1.05rem; }
.prose strong { font-weight: 700; color: var(--ink); }
.s-ink .prose { color: rgba(233, 231, 226, .82); }
.s-ink .prose strong { color: var(--bg); }

.cv { border-top: 1px solid var(--line); margin-top: 10px; }
.cv li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.cv li b { font-weight: 700; font-stretch: 110%; text-transform: uppercase; font-size: .88rem; letter-spacing: .03em; }
.cv li span { color: var(--grey); font-family: var(--font-m); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

.story-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 32px);
  align-items: start;
}
.story-gallery figure { overflow: clip; }
.story-gallery img { width: 100%; object-fit: cover; }
.story-gallery .g1 { grid-column: 1 / 6; }
.story-gallery .g1 img { aspect-ratio: 4 / 5; }
.story-gallery .g2 { grid-column: 6 / 13; margin-top: clamp(40px, 8vh, 110px); }
.story-gallery .g2 img { aspect-ratio: 16 / 10; }
.story-gallery figcaption {
  padding-top: 10px;
  color: var(--grey);
}

/* -- find us page -- */
.find-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.find-block { border-top: 1px solid var(--line); }
.find-block dl { display: grid; }
.find-block .pair {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) 1.6fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.find-block dt {
  font-family: var(--font-m);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey);
  padding-top: 5px;
}
.find-block dd { font-size: 1.05rem; }
.find-block dd .sub { color: var(--grey); font-size: .9rem; margin-top: 2px; }
.hours-line { display: flex; justify-content: space-between; gap: 16px; font-variant-numeric: tabular-nums; }
.map-wrap {
  position: relative;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.map-wrap iframe {
  display: block;
  width: 100%; height: clamp(380px, 56vh, 620px);
  border: 0;
  filter: grayscale(100%) contrast(1.04);
}
.map-label {
  position: absolute; left: 14px; bottom: 34px;
  background: var(--ink); color: var(--bg);
  padding: 8px 14px;
}
.dawn-band {
  position: relative; overflow: clip;
  min-height: 62svh;
  display: flex; align-items: flex-end;
}
.dawn-band img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.dawn-band .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,18,.72), rgba(20,20,18,.05) 55%);
}
.dawn-band .container {
  position: relative;
  color: var(--bg);
  padding-block: clamp(40px, 7vh, 80px);
  display: grid; gap: 14px;
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; }
.rv-d2 { transition-delay: .16s; }
.rv-d3 { transition-delay: .24s; }


/* ---------- keyword-bearing subheading inside H1 ---------- */
.h1-sub {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(1rem, 1.55vw, 1.3rem);
  font-weight: 500;
  font-stretch: 100%;
  text-transform: none;
  letter-spacing: -.005em;
  line-height: 1.4;
  color: var(--ink-2);
  margin-top: clamp(16px, 2.2vh, 26px);
  max-width: 34em;
  text-wrap: pretty;
}
.s-ink .h1-sub { color: rgba(233, 231, 226, .8); }
.hero .h1-sub { padding-inline: 2.5vw; max-width: 40em; }

/* ---------- FAQ / accordion list ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(16px, 2.2vh, 22px) 0;
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  font-weight: 700; font-stretch: 112%;
  text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-m);
  font-size: 1.1rem; font-weight: 400;
  color: var(--grey); flex: none;
  transition: transform .35s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--kraft); }
.faq .answer {
  padding-bottom: clamp(16px, 2.2vh, 24px);
  color: var(--ink-2);
  max-width: 62ch;
  font-size: .98rem;
}
.faq .answer a { border-bottom: 1px solid currentColor; }
.s-ink .faq { border-color: var(--line-lt); }
.s-ink .faq details { border-color: var(--line-lt); }
.s-ink .faq .answer { color: rgba(233, 231, 226, .8); }

/* ---------- suburb / served-area strip ---------- */
.serves {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 20px;
}
.serves span {
  font-family: var(--font-m);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 7px 13px 8px;
  color: var(--grey);
}
.s-ink .serves span { border-color: var(--line-lt); color: var(--steel); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-status { display: none; }
  .nav-burger { display: block; }
  .intro-grid, .split, .menu-cols, .story-lead, .find-grid { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .film-card img { height: clamp(220px, 34vh, 320px); }
  .menu-media-band { grid-template-columns: 1fr 1fr; }
  .menu-media-band figure:nth-child(3) { display: none; }
  .story-gallery .g1 { grid-column: 1 / 13; }
  .story-gallery .g2 { grid-column: 1 / 13; margin-top: 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-meta { flex-direction: column; gap: 6px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-word img, .page-hero .h-hero .word-clip span { transform: none; animation: none; }
  .hero-media { clip-path: none; animation: none; }
  .rv { opacity: 1; transform: none; }
  .tape-track { animation: none; }
  .loader { display: none; }
  .film { overflow-x: auto; }
  .film-track { animation: none; }
}
