/* Smiths Beach General Store — Stylesheet
   Tokens, type system and layout primitives are defined here.
   Animation hooks live in this file; orchestration lives in /js/main.js. */

:root {
  /* Warm coastal palette — pulled directly from the kiosk signage and
     the timber/sand/golden-hour photography on @smithsbeachcafe.
     Variable names retained for backwards-compatibility with templates
     written against the original cool-coastal palette. */
  --bass-strait: #2A1B0E;   /* "espresso" — deepest warm brown */
  --rockpool:    #6B4A33;   /* "timber"   — mid warm brown */
  --sand:        #E5D7BC;   /* "warm sand"— section bg */
  --sand-deep:   #D5C2A0;   /* "wet sand" — deeper sand */
  --surf-orange: #C0764D;   /* "terracotta" — primary accent */
  --clay:        #9A5A36;   /* hover for terracotta */
  --driftwood:   #3A2A1F;   /* warm dark brown — body text */
  --foam:        #F2E9D5;   /* "cream" — main background */
  --foam-dim:    #EBE0C8;   /* deeper cream */
  --mist:        #A8B2A8;   /* soft sage — secondary accent */

  --type-display: "Fraunces", "Times New Roman", serif;
  --type-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1280px;
  --gutter: clamp(1.5rem, 4vw, 2.5rem);

  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--foam);
  color: var(--driftwood);
  font-family: var(--type-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--type-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  /* Fraunces SOFT=100 + WONK=1 = bouncy hand-feel like Recoleta.
     The real wordmark on the kiosk uses a similar warm soft-serif. */
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.75rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.625rem); font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1; }

p { margin: 0 0 1rem; max-width: 60ch; }

.eyebrow {
  font-family: var(--type-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--rockpool);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ═══════════════════════════════════════════════════════════════
   SIGNATURE LAYER — award-winning treatments live here.
   - .loader          → branded page-load reveal
   - .cursor          → custom terracotta cursor + hover scale
   - .horizon         → scroll-driven horizon line (the signature motif)
   - .day-horizontal  → scroll-jacked horizontal "day at the kiosk"
   ═══════════════════════════════════════════════════════════════ */

/* Custom cursor — terracotta dot with hover-scale. Pointer:fine only. */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surf-orange);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-100px, -100px, 0);
  transition: width 0.3s var(--ease-out-soft),
              height 0.3s var(--ease-out-soft),
              background 0.3s var(--ease-out-soft),
              opacity 0.3s var(--ease-out-soft);
  mix-blend-mode: multiply;
  will-change: transform;
}
.cursor.is-hover {
  width: 56px; height: 56px;
  background: rgba(216, 85, 43, 0.25);
}
.cursor.is-down { width: 22px; height: 22px; }
@media (pointer: fine) {
  html.has-cursor { cursor: none; }
  html.has-cursor a, html.has-cursor button,
  html.has-cursor [role="button"], html.has-cursor input,
  html.has-cursor select, html.has-cursor textarea,
  html.has-cursor label { cursor: none; }
}
@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor { display: none; }
}

/* Horizon line — fixed 1px sand-coloured line that drifts up the
   viewport as you scroll. Single signature motif tying every page together. */
.horizon {
  position: fixed;
  left: 0; right: 0;
  top: 60vh;
  height: 1px;
  background: var(--sand);
  opacity: 0.32;
  z-index: 50;
  pointer-events: none;
  mix-blend-mode: difference;
  transition: opacity 0.6s var(--ease-out-soft);
  will-change: top;
}
.horizon::after {
  /* Soft glow either side of the line — anchors it as a horizon */
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -32px;
  height: 64px;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(229, 215, 188, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce), (max-width: 760px) {
  .horizon { display: none; }
}

/* ─────────────── Tide line scroll indicator ─────────────── */
.tideline {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0%;
  height: 2px;
  background: var(--surf-orange);
  z-index: 1000;
  pointer-events: none;
}

/* ─────────────── Status bar (with scrolling marquee) ─────────────── */
.statusbar {
  background: var(--bass-strait);
  color: var(--foam);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  overflow: hidden;
}
.statusbar__inner {
  display: block;
  padding: 0.6rem 0;
  min-width: 0;
}
.statusbar__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.statusbar__call {
  color: var(--foam);
}
.statusbar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6CD27A;
  box-shadow: 0 0 0 0 rgba(108, 210, 122, 0.6);
  animation: pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
.statusbar.is-closed .statusbar__dot {
  background: var(--surf-orange);
  animation: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(108, 210, 122, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(108, 210, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 210, 122, 0); }
}
.statusbar__marquee {
  overflow: hidden;
  position: relative;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.statusbar__marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee-scroll 75s linear infinite;
  will-change: transform;
  font-family: monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}
.statusbar__marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  flex: 0 0 auto;
}
.statusbar__marquee-track a { color: var(--foam); border-bottom: 1px solid rgba(229,215,188,0.4); }
.statusbar__marquee-track > span::after {
  content: "·";
  color: var(--surf-orange);
  font-weight: 600;
}
@keyframes marquee-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.statusbar:hover .statusbar__marquee-track,
.statusbar__marquee:focus-within .statusbar__marquee-track {
  animation-play-state: paused;
}
.statusbar a { border-bottom: 1px solid rgba(251, 250, 246, 0.3); padding-bottom: 1px; }
.statusbar__call { white-space: nowrap; }

@media (max-width: 540px) {
  .statusbar { font-size: 0.78rem; }
  .statusbar__marquee-track { animation-duration: 55s; gap: 1.75rem; }
  .statusbar__marquee-track > span { gap: 1.75rem; }
}

/* ─────────────── Header ─────────────── */
.site-header {
  position: sticky; top: 0;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(31, 31, 31, 0.06);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  font-family: var(--type-display);
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
  gap: 1px;
  text-decoration: none;
}
.brand strong {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--bass-strait);
  text-transform: lowercase;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
}
.brand em {
  font-style: normal;
  font-family: var(--type-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--rockpool);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}
/* On dark backgrounds (footer, page-hero) the brand inherits foam color */
.site-footer .brand strong, .page-hero .brand strong { color: var(--foam); }
.site-footer .brand em,     .page-hero .brand em     { color: var(--sand); }

.nav { display: flex; gap: 2rem; align-items: center; }
.nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease-out-soft);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--surf-orange);
  transition: width 0.4s var(--ease-out-soft);
}
.nav a:hover { color: var(--surf-orange); }
.nav a:hover::after { width: 100%; }

.nav__cta {
  background: var(--bass-strait);
  color: var(--foam) !important;
  padding: 0.6rem 1.1rem !important;
  border-radius: 999px;
  transition: background 0.3s var(--ease-out-soft), transform 0.3s var(--ease-out-soft);
}
.nav__cta:hover { background: var(--surf-orange); transform: translateY(-1px); }
.nav__cta::after { display: none; }

.menu-toggle {
  display: none;
  background: transparent; border: 0; padding: 0.5rem;
  color: var(--bass-strait);
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 0 var(--gutter) 1.25rem;
    background: var(--foam); border-bottom: 1px solid rgba(31,31,31,0.08); }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.85rem 0; border-top: 1px solid rgba(31,31,31,0.06); }
  .nav a:first-child { border-top: 0; }
  .nav__cta { margin-top: 0.5rem; text-align: center; padding: 0.85rem 1.2rem !important; }
  .menu-toggle { display: inline-flex; align-items: center; }
}

/* ─────────────── Hero ─────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--bass-strait);
  color: var(--foam);
  isolation: isolate;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media::after {
  /* Slightly stronger wash to keep type legible over the looping video. */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 27, 14, 0.20) 0%,
    rgba(42, 27, 14, 0.45) 55%,
    rgba(42, 27, 14, 0.70) 100%
  );
  z-index: 1;
}

/* Self-hosted HTML5 hero video — covers the hero, respects object-fit.
   No YouTube bot challenges, no third-party CDN dependency, no extra JS. */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}
.hero__placeholder {
  /* NANO BANANA ASSET HERE — replace with golden-hour kiosk photography
     (timber slats with beach beyond, west-facing afternoon light). */
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 30%, #F4C99B 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 75% 25%, #E8B485 0%, transparent 60%),
    linear-gradient(180deg, #F0DBB5 0%, #D9A578 35%, #A86C4B 70%, #6B4129 100%);
}
.hero__placeholder::before {
  /* Faux horizon line — sun on water */
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 195, 0.7), transparent);
}
.hero__placeholder::after {
  /* Faux timber-slat suggestion on the right */
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 30%;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(58, 35, 19, 0.55) 0px,
      rgba(58, 35, 19, 0.55) 4px,
      rgba(120, 80, 50, 0.3) 4px,
      rgba(120, 80, 50, 0.3) 18px
    );
  opacity: 0.7;
}
.hero__container {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 92vh;
  padding-top: 8rem;
  padding-bottom: 16rem; /* clearance for absolutely-positioned hero-surf-strip with gauges */
}
.hero__eyebrow {
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.hero h1 {
  /* Wide enough that "Mornings on the south coast." sits on two confident lines.
     Was 16ch — that forced "Mornings on the" → narrow column on wide screens. */
  max-width: 24ch;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 52ch;
  color: rgba(251, 250, 246, 0.85);
  margin-bottom: 2.5rem;
}

/* Hero copy gets a touch more breathing room on wide screens */
@media (min-width: 960px) {
  .hero__container { padding-bottom: 18rem; padding-top: 9rem; }
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background 0.35s var(--ease-out-soft),
              color 0.35s var(--ease-out-soft),
              transform 0.35s var(--ease-out-soft),
              border-color 0.35s var(--ease-out-soft);
  will-change: transform;
}
.btn--primary {
  background: var(--surf-orange);
  color: var(--foam);
}
.btn--primary:hover {
  background: var(--foam);
  color: var(--bass-strait);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--foam);
  border-color: rgba(251, 250, 246, 0.4);
}
.btn--ghost:hover {
  background: var(--foam);
  color: var(--bass-strait);
  border-color: var(--foam);
}
.btn--dark {
  background: var(--bass-strait);
  color: var(--foam);
}
.btn--dark:hover {
  background: var(--surf-orange);
  transform: translateY(-2px);
}
.btn__arrow { transition: transform 0.35s var(--ease-out-soft); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ─────────────── Sections ─────────────── */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.section--sand { background: var(--sand); }
.section--foam { background: var(--foam); }
.section--dark { background: var(--bass-strait); color: var(--foam); }

.section__head { max-width: 720px; margin-bottom: 3.5rem; }
.section__head .eyebrow { display: inline-block; margin-bottom: 1rem; }
.section--dark .eyebrow { color: var(--sand); }

/* ─────────────── Day-horizontal — scroll-jacked cinematic strip ─────────────── */
/* GSAP pins the section, .day-horizontal__track translates left.
   On touch / narrow viewports / reduced-motion this falls back to a
   vertical stack so iOS doesn't have to deal with pinning. */
.day-horizontal {
  position: relative;
  height: 78vh;
  overflow: hidden;
  background: var(--sand);
  color: var(--driftwood);
}
.day-horizontal__track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.day-panel {
  /* Narrower than the viewport so the next panel peeks in. Content sits
     centred vertically — height matches the section, padding is restrained
     so the moments feel like cards rather than empty rooms. */
  flex: 0 0 clamp(340px, 46vw, 540px);
  height: 78vh;
  padding: clamp(3rem, 8vh, 5rem) clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.day-panel--title {
  flex: 0 0 clamp(340px, 56vw, 640px);
}
.day-panel + .day-panel { border-left: 1px solid rgba(58, 42, 31, 0.12); }
.day-panel__time {
  font-family: var(--type-display);
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--surf-orange);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}
.day-panel__h {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  max-width: 16ch;
}
.day-panel p {
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  max-width: 38ch;
  line-height: 1.6;
  color: var(--rockpool);
}
.day-panel--title {
  background: var(--bass-strait);
  color: var(--foam);
  border-right: 1px solid rgba(229, 215, 188, 0.12);
}
.day-panel--title .eyebrow { color: var(--sand); margin-bottom: 1.25rem; }
.day-panel--title .day-panel__h { color: var(--foam); font-size: clamp(2rem, 4.5vw, 3.5rem); }
.day-panel__lead {
  font-family: monospace;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  max-width: none;
}

@media (max-width: 800px), (prefers-reduced-motion: reduce) {
  /* Vertical fallback — pinning is jerky on iOS and unfair on small screens */
  .day-horizontal { height: auto; overflow: visible; }
  .day-horizontal__track { display: block; height: auto; transform: none !important; }
  .day-panel {
    flex: none; width: 100%; height: auto;
    min-height: 70vh;
    padding: 4rem 1.5rem;
    border-left: 0;
    border-top: 1px solid rgba(58, 42, 31, 0.12);
  }
  .day-panel + .day-panel { border-left: 0; }
  .day-panel--title { border-right: 0; }
}

/* ─────────────── The Day (3-up) ─────────────── */
.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.day-card {
  position: relative;
  padding: 2.5rem 2rem;
  background: var(--foam);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-soft);
}
.day-card:hover { transform: translateY(-4px); }
.day-card__time {
  font-family: var(--type-display);
  font-size: 4.5rem;
  font-weight: 600;
  font-variation-settings: "opsz" 144;
  color: var(--surf-orange);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.day-card h3 { margin-bottom: 0.75rem; }
.day-card p { font-size: 0.95rem; color: var(--driftwood); margin: 0; }

@media (max-width: 800px) {
  .day-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .day-card { padding: 2rem 1.5rem; }
  .day-card__time { font-size: 3.5rem; }
}

/* ─────────────── Menu teaser — FM-style signatures + 2-col list ─────────────── */
.menu-section { padding: clamp(4rem, 9vw, 8rem) 0; background: #FBF7EC; }
.menu-section .menu-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.menu-section .menu-head p { max-width: 42ch; color: var(--rockpool); line-height: 1.6; margin-top: 1.25rem; }

/* Signature cards — 3 hero items, aspect 4:5 */
.signatures {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sig-card {
  position: relative;
  border: 1px solid rgba(58, 42, 31, 0.18);
  padding: 1.75rem;
  background: var(--foam);
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: background 0.4s var(--ease-out-soft), color 0.4s var(--ease-out-soft);
  text-decoration: none;
  color: inherit;
}
.sig-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(192, 118, 77, 0.22), transparent 55%),
    radial-gradient(circle at 85% 85%, rgba(168, 178, 168, 0.28), transparent 55%);
  opacity: 0.5;
  transition: opacity 0.4s;
  pointer-events: none;
}
.sig-card:hover { background: var(--bass-strait); color: var(--foam); }
.sig-card:hover::before { opacity: 0.85; }
.sig-card:hover .sig-card__desc,
.sig-card:hover .sig-card__price,
.sig-card:hover .eyebrow { color: rgba(251, 250, 246, 0.85); }
.sig-card .eyebrow { margin-bottom: 0.5rem; }
.sig-card h3 {
  font-family: var(--type-display);
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  margin: 0;
}
.sig-card h3 em { font-style: italic; color: var(--surf-orange); }
.sig-card__desc { margin-top: 0.85rem; color: var(--rockpool); max-width: 30ch; position: relative; z-index: 1; font-size: 0.95rem; line-height: 1.5; }
.sig-card__foot { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; gap: 1rem; }
.sig-card__price {
  font-family: var(--type-display);
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
  color: var(--bass-strait);
  transition: color 0.4s var(--ease-out-soft);
}
.sig-card:hover .sig-card__price { color: var(--foam); }

/* Menu columns — 2 cols with center divider */
.menu-cols {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.menu-cols .menu-divider { background: rgba(58, 42, 31, 0.15); }
.menu-col h3 {
  font-family: var(--type-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  border-bottom: 1px solid rgba(58, 42, 31, 0.18);
  padding-bottom: 1rem;
  margin: 0 0 0.5rem;
  display: flex; justify-content: space-between; align-items: baseline;
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
  color: var(--bass-strait);
}
.menu-col h3 .menu-col__icon {
  width: 28px;
  height: 28px;
  margin-right: 0.65rem;
  flex-shrink: 0;
  align-self: center;
  stroke: var(--surf-orange);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.menu-col h3 > span:first-child {
  display: inline-flex;
  align-items: center;
}
.menu-col h3 small {
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rockpool);
  font-weight: 400;
}
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem;
  padding: 1.05rem 0;
  border-bottom: 1px dotted rgba(58, 42, 31, 0.2);
  align-items: baseline;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .name { font-family: var(--type-display); font-size: 1.3rem; letter-spacing: -0.015em; line-height: 1.1; font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1; color: var(--bass-strait); }
.menu-item .name em { font-style: italic; color: var(--surf-orange); }
.menu-item .desc { font-size: 0.85rem; color: var(--rockpool); margin-top: 0.3rem; max-width: 42ch; line-height: 1.45; }
.menu-item .cost { font-family: monospace; font-size: 0.85rem; letter-spacing: 0.02em; white-space: nowrap; padding-top: 0.25rem; color: var(--bass-strait); }
.menu-note { font-family: monospace; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rockpool); margin-top: 1.5rem; }

@media (max-width: 800px) {
  .signatures { grid-template-columns: 1fr; gap: 1rem; }
  .sig-card { aspect-ratio: auto; min-height: 280px; }
  .menu-cols { grid-template-columns: 1fr; gap: 1rem; }
  .menu-cols .menu-divider { display: none; }
}

/* ─────────────── Instagram editorial spread ─────────────── */
.ig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}
.ig__intro h2 { margin-bottom: 1.25rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ig__intro p { color: var(--rockpool); max-width: 38ch; font-size: 1rem; }
.ig__handle {
  display: inline-block;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--rockpool);
  margin-top: 1.5rem;
  border-bottom: 1px solid var(--surf-orange);
  padding-bottom: 2px;
}
.ig__handle:hover { color: var(--surf-orange); }
.ig__meta {
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rockpool);
}
@media (max-width: 760px) { .ig { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; } }

/* Asymmetric tile grid — 1 large feature + 4 smaller tiles staggered. */
.ig-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bass-strait);
  display: block;
  text-decoration: none;
  color: var(--foam);
  isolation: isolate;
}
.ig-tile:first-child {
  /* Featured tile — spans both rows, taller (5:7 portrait). */
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}
.ig-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-soft), filter 0.4s var(--ease-out-soft);
  will-change: transform;
}
.ig-tile:hover img { transform: scale(1.06); filter: brightness(0.7); }
.ig-tile__cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent 50%, rgba(42, 27, 14, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-soft);
  z-index: 1;
}
.ig-tile:hover .ig-tile__cover { opacity: 1; }
.ig-tile__caption {
  font-family: var(--type-body);
  font-size: 0.82rem;
  line-height: 1.4;
  margin: 0 0 0.4rem;
  color: var(--foam);
}
.ig-tile__meta {
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: rgba(251, 250, 246, 0.65);
  display: flex; justify-content: space-between; align-items: center;
}
.ig-tile__hearts::before {
  content: "♥ ";
  color: var(--surf-orange);
}
.ig-tile__skeleton {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--sand) 30%, var(--sand-deep) 50%, var(--sand) 70%);
  background-size: 200% 100%;
  animation: ig-shimmer 1.6s ease-in-out infinite;
}
@keyframes ig-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (max-width: 760px) {
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .ig-tile:first-child { grid-row: span 2; aspect-ratio: 4 / 5; grid-column: span 2; }
}

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  font-family: var(--type-body);
  font-size: 1rem;
  color: var(--bass-strait);
  border-bottom: 1px solid var(--bass-strait);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.3s var(--ease-out-soft), border-color 0.3s var(--ease-out-soft);
}
.ig-cta:hover { color: var(--surf-orange); border-color: var(--surf-orange); }
.ig-cta svg { width: 18px; height: 18px; }

/* ─────────────── Quote / press ─────────────── */
.quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote p {
  font-family: var(--type-display);
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  font-style: italic;
  color: var(--bass-strait);
  margin: 0 auto 1.5rem;
  font-variation-settings: "opsz" 72, "SOFT" 40;
}
.section--dark .quote p { color: var(--foam); }
.quote__source { font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--rockpool); }
.section--dark .quote__source { color: var(--sand); }

/* ═══════════════════════════════════════════════════════════════
   Homepage section parity with Finally Mine — see /index.html
   - .coffee-program  → La Marzocco / coffee story
   - .crew            → team profiles
   - .hours24         → horizontal 24-hour strip
   - .order-cta       → online ordering pitch
   - .events          → upcoming events grid
   - .event-hire      → private hire / functions
   - .reviews         → multi-quote social proof
   - .reels           → enhanced Instagram block
   - .blog-teaser     → latest journal posts on homepage
   - .reserve-cta     → bookings prompt
   - .faq             → common questions
   - .action-bar      → sticky bottom CTA on mobile
   ═══════════════════════════════════════════════════════════════ */

/* Live surf data strip — sits at the bottom of the hero */
.hero-surf-strip {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0%, rgba(42, 27, 14, 0.4) 22%, rgba(42, 27, 14, 0.78) 100%);
  padding: 1.5rem 0 1.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.9s var(--ease-out-soft), transform 0.9s var(--ease-out-soft);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-surf-strip.is-loaded { opacity: 1; transform: translateY(0); }
.hero-surf-strip__inner {
  display: grid;
  gap: 0.9rem;
}
.hero-surf-strip__status-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0.6rem;
}
@media (max-width: 760px) {
  .hero-surf-strip__status-row { justify-content: center; }
}
.hero-surf-strip__open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foam);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(108, 210, 122, 0.14);
  border: 1px solid rgba(108, 210, 122, 0.35);
}
.hero-surf-strip__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6CD27A;
  box-shadow: 0 0 0 0 rgba(108, 210, 122, 0.55);
  animation: pulse 2.4s ease-out infinite;
  flex-shrink: 0;
}
.hero-surf-strip.is-closed .hero-surf-strip__dot {
  background: var(--surf-orange);
  animation: none;
}
.hero-surf-strip.is-closed .hero-surf-strip__open {
  background: rgba(216, 118, 77, 0.14);
  border-color: rgba(216, 118, 77, 0.35);
}
.hero-surf-strip__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(229, 215, 188, 0.16);
}
.hero-surf-strip__label {
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
}
.hero-surf-strip__label::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--surf-orange);
  box-shadow: 0 0 0 0 rgba(216, 118, 77, 0.55);
  animation: pulse-orange 2.4s ease-out infinite;
}
.hero-surf-strip__verdict {
  font-family: var(--type-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1.2;
  color: var(--surf-orange);
  text-align: center;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.005em;
  min-height: 1.2em;
}
.hero-surf-strip__link {
  font-family: monospace;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border-bottom: 1px solid rgba(229, 215, 188, 0.4);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.hero-surf-strip__link:hover { color: var(--surf-orange); border-color: var(--surf-orange); }

.hero-surf-strip__stats {
  display: grid;
  grid-template-columns: 1.4fr auto auto auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  justify-content: space-between;
}
.hero-surf-strip__stat {
  display: flex; flex-direction: column;
  gap: 0.2rem;
  color: rgba(251, 250, 246, 0.85);
  min-width: 0;
}
.hero-surf-strip__stat strong {
  font-family: var(--type-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1;
  color: var(--foam);
  font-weight: 600;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
  display: inline-block;
}
.hero-surf-strip__stat--hero strong {
  font-size: clamp(2.4rem, 4vw, 3rem);
  color: var(--foam);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-surf-strip__stat span:not(.hero-surf-strip__chip) {
  font-family: monospace;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 215, 188, 0.65);
}

/* Compass / wind clock gauges */
.hero-surf-strip__gauge {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}
.hero-surf-strip__gauge svg {
  width: clamp(56px, 7vw, 78px);
  height: clamp(56px, 7vw, 78px);
  display: block;
}
.hero-surf-strip__gauge-meta {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  text-align: center;
}
.hero-surf-strip__gauge-meta strong {
  font-family: var(--type-display);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1;
  color: var(--foam);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
}
.hero-surf-strip__gauge-meta span {
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(229, 215, 188, 0.55);
}

/* Quality chip */
.hero-surf-strip__chip {
  display: inline-flex; align-items: center;
  gap: 0.4rem;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(229, 215, 188, 0.12);
  color: var(--sand);
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 0.25rem;
}
.hero-surf-strip__chip--good { background: rgba(108, 210, 122, 0.18); color: #6CD27A; }
.hero-surf-strip__chip--warn { background: rgba(224, 162, 62, 0.18); color: #E0A23E; }
.hero-surf-strip__chip--bad  { background: rgba(216, 91, 78, 0.2);  color: #D85B4E; }

@media (max-width: 900px) {
  .hero-surf-strip__stats { grid-template-columns: 1.2fr auto auto auto; gap: 1.25rem; }
}
@media (max-width: 760px) {
  .hero-surf-strip__header {
    grid-template-columns: auto auto;
    grid-template-areas:
      "label link"
      "verdict verdict";
    gap: 0.6rem;
  }
  .hero-surf-strip__label  { grid-area: label; }
  .hero-surf-strip__link   { grid-area: link; justify-self: end; }
  .hero-surf-strip__verdict{ grid-area: verdict; text-align: left; }
  /* Wave height + 3 gauges all in one row, tight spacing */
  .hero-surf-strip__stats {
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 0.7rem;
    align-items: center;
    justify-items: center;
  }
  .hero-surf-strip__stat--hero {
    justify-self: start;
    align-items: flex-start;
  }
  .hero-surf-strip__stat--hero strong { font-size: 1.9rem; }
  .hero-surf-strip__gauge svg { width: 50px; height: 50px; }
  .hero-surf-strip__gauge-meta strong { font-size: 0.78rem; }
  .hero-surf-strip__gauge-meta span { font-size: 0.54rem; letter-spacing: 0.12em; }
}
@media (max-width: 420px) {
  .hero-surf-strip__stats { gap: 0.4rem; }
  .hero-surf-strip__stat--hero strong { font-size: 1.7rem; }
  .hero-surf-strip__gauge svg { width: 44px; height: 44px; }
  .hero-surf-strip__gauge-meta strong { font-size: 0.72rem; }
  .hero-surf-strip__gauge-meta span { font-size: 0.5rem; }
}

/* Our Story — adapted from FM's pattern */
.story { padding: clamp(4rem, 9vw, 8rem) 0; background: var(--foam); position: relative; }
.story-illustration {
  display: block;
  width: 100%;
  height: auto;
  margin: 2rem 0 0;
  border: 1px solid rgba(58, 42, 31, 0.18);
  background: var(--sand);
}
.story-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.story-lede {
  font-family: var(--type-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  margin-top: 1.25rem;
  color: var(--bass-strait);
}
.story-lede em { color: var(--surf-orange); font-style: italic; }
.story-body {
  display: grid;
  gap: 1.25rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--rockpool);
  max-width: 62ch;
}
.story-body p { margin: 0; max-width: none; }
.story-body strong { color: var(--bass-strait); font-weight: 500; }
.story-pull {
  margin-top: 1.75rem;
  padding: 1.25rem 0 0.25rem;
  border-top: 1px solid rgba(58, 42, 31, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.story-pull .stat .n {
  font-family: var(--type-display);
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  color: var(--surf-orange);
  font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1;
  font-weight: 600;
}
.story-pull .stat .l {
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rockpool);
  display: block;
  margin-top: 0.5rem;
}
@media (max-width: 760px) {
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-pull { grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; }
  .story-pull .stat .n { font-size: 1.6rem; }
}

/* Coffee program (La Marzocco) */
.coffee-program { padding: clamp(4rem, 9vw, 6.5rem) 0; background: var(--bass-strait); color: var(--foam); }
.coffee-program .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.coffee-program__media { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--rockpool) 0%, var(--clay) 100%); border-radius: 6px; position: relative; overflow: hidden; }
.coffee-program__media .label { position: absolute; bottom: 1rem; left: 1rem; font-family: monospace; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); }
.coffee-program__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(255, 230, 195, 0.15) 0%, transparent 60%); }
.coffee-program h2 { margin-bottom: 1.25rem; color: var(--foam); }
.coffee-program p { color: rgba(251, 250, 246, 0.78); max-width: 46ch; line-height: 1.65; }
.coffee-program__specs { margin-top: 2rem; display: grid; gap: 0.6rem; }
.coffee-program__specs .row { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px dashed rgba(229, 215, 188, 0.18); font-size: 0.92rem; }
.coffee-program__specs .k { font-family: monospace; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); }
.coffee-program__specs .v { color: var(--foam); }
@media (max-width: 760px) { .coffee-program .container { grid-template-columns: 1fr; } .coffee-program__media { aspect-ratio: 16/10; } }

/* Crew */
.crew__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.crew__head h2 { max-width: 18ch; }
.crew-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.crew-card { background: transparent; }
.crew-card__num { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rockpool); margin-bottom: 0.75rem; }
.crew-card__portrait { aspect-ratio: 4/5; background: linear-gradient(160deg, var(--sand-deep) 0%, var(--sand) 100%); border-radius: 4px; margin-bottom: 1rem; overflow: hidden; position: relative; }
.crew-card__portrait::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(192, 118, 77, 0.18) 0%, transparent 65%); }
.crew-card h3 { font-size: 1.25rem; margin-bottom: 0.2rem; }
.crew-card__role { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rockpool); margin-bottom: 0.6rem; }
.crew-card p { font-size: 0.92rem; color: var(--rockpool); margin: 0; max-width: 28ch; }
@media (max-width: 980px) { .crew-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (max-width: 480px) { .crew-grid { grid-template-columns: 1fr; } }

/* Hours24 — 24-hour horizontal strip */
.hours24 .container { margin-bottom: 2rem; }
.hours24__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.hours-track { display: flex; gap: 1rem; padding: 0 var(--gutter) 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--rockpool) transparent; }
.hours-track::-webkit-scrollbar { height: 4px; }
.hours-track::-webkit-scrollbar-thumb { background: var(--rockpool); }
.hours-card { flex: 0 0 280px; scroll-snap-align: start; }
.hours-card__media { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--sand) 0%, var(--sand-deep) 100%); border-radius: 4px; margin-bottom: 0.85rem; position: relative; overflow: hidden; }
.hours-card__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, rgba(192, 118, 77, 0.25) 0%, transparent 60%); }
.hours-card__time { font-family: var(--type-display); font-weight: 600; font-size: 1.5rem; color: var(--surf-orange); font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1; line-height: 1; margin-bottom: 0.45rem; }
.hours-card__cap { font-family: var(--type-body); font-size: 0.95rem; color: var(--driftwood); max-width: 28ch; }
.hours-card__cap em { font-style: italic; font-family: var(--type-display); }

/* Order CTA */
.order-cta { background: var(--foam); }
.order-cta .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.order-cta h2 { margin-bottom: 1rem; }
.order-cta p { color: var(--rockpool); max-width: 46ch; }
.order-steps { margin-top: 2rem; display: grid; gap: 1.25rem; }
.order-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: start; }
.order-step__n { font-family: var(--type-display); font-weight: 600; font-size: 2rem; line-height: 0.9; color: var(--surf-orange); font-variation-settings: "opsz" 96, "SOFT" 100, "WONK" 1; }
.order-step h4 { font-family: var(--type-body); font-size: 1rem; font-weight: 600; margin: 0 0 0.25rem; color: var(--bass-strait); }
.order-step p { font-size: 0.92rem; margin: 0; max-width: 38ch; }
/* Phone-frame mock — espresso body holding a cream "screen" with the real app inside */
.order-mock {
  aspect-ratio: 9 / 19;
  max-width: 300px;
  margin: 0 auto;
  background: var(--bass-strait);
  border-radius: 42px;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(229, 215, 188, 0.12),
    0 40px 80px -25px rgba(42, 27, 14, 0.55),
    inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.order-mock::before {
  /* Side button */
  content: "";
  position: absolute;
  top: 110px; right: -2px;
  width: 3px; height: 64px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0 2px 2px 0;
}
.order-mock__screen {
  background: var(--foam);
  border-radius: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.order-mock__island {
  /* Dynamic island */
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #0a0a0a;
  border-radius: 100px;
  z-index: 3;
}
.order-mock__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px 6px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bass-strait);
  position: relative;
  z-index: 2;
}
.order-mock__status .status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.order-mock__status svg {
  width: 14px; height: 14px;
  fill: var(--bass-strait);
}
.order-mock__status .battery {
  width: 22px; height: 11px;
  border: 1px solid var(--bass-strait);
  border-radius: 3px;
  position: relative;
  padding: 1px;
}
.order-mock__status .battery::after {
  content: "";
  position: absolute; right: -3px; top: 50%;
  width: 2px; height: 4px;
  background: var(--bass-strait);
  border-radius: 0 1px 1px 0;
  transform: translateY(-50%);
}
.order-mock__status .battery span {
  display: block;
  width: 100%; height: 100%;
  background: var(--bass-strait);
  border-radius: 1px;
}
.order-mock__app {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
  overflow: hidden;
}
.order-mock__brand {
  font-family: var(--type-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 600;
  color: var(--bass-strait);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
  margin-bottom: 2px;
  line-height: 1;
}
.order-mock__brand-sub {
  font-family: var(--type-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rockpool);
  margin-bottom: 12px;
  font-weight: 500;
}
.order-mock__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  background: var(--surf-orange);
  color: var(--foam);
  border-radius: 999px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.order-mock__pill::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--foam);
  animation: pulse-orange 2.4s ease-out infinite;
}
.order-mock__list {
  display: grid;
  gap: 6px;
  flex: 1;
}
.order-mock__li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 11px;
  background: #fff;
  border: 1px solid rgba(58, 42, 31, 0.08);
  border-radius: 10px;
  color: var(--driftwood);
}
.order-mock__li__info { display: flex; flex-direction: column; gap: 2px; }
.order-mock__li__name {
  font-family: var(--type-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bass-strait);
  line-height: 1.1;
}
.order-mock__li__variant {
  font-family: monospace;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  color: var(--rockpool);
}
.order-mock__add {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--surf-orange);
  color: #fff;
  border: 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1;
  cursor: default;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.order-mock__cart {
  margin-top: 10px;
  padding: 11px 12px;
  background: var(--bass-strait);
  color: var(--foam);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-mock__cart .t {
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 0.62rem;
  color: var(--sand);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.order-mock__cart .n {
  font-family: var(--type-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--foam);
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
}
/* Home indicator bar */
.order-mock__home {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--bass-strait);
  opacity: 0.3;
  border-radius: 4px;
}
@media (max-width: 760px) { .order-cta .container { grid-template-columns: 1fr; } }

/* Events */
.events { background: var(--sand); }
.events__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.events-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.event-card { display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-top: 1px solid rgba(58, 42, 31, 0.18); align-items: start; }
.event-card__img { aspect-ratio: 4/5; background: linear-gradient(140deg, var(--sand-deep) 0%, var(--clay) 100%); border-radius: 4px; position: relative; overflow: hidden; }
.event-card__when { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rockpool); margin-bottom: 0.5rem; }
.event-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.event-card p { font-size: 0.92rem; margin: 0 0 0.85rem; color: var(--driftwood); max-width: 34ch; }
.event-card__foot { display: flex; gap: 1rem; font-family: monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rockpool); }
.event-card__foot .cost { color: var(--surf-orange); }
@media (max-width: 760px) { .events-list { grid-template-columns: 1fr; } .event-card { grid-template-columns: 100px 1fr; gap: 1rem; } }

/* Event hire / functions */
.event-hire { background: var(--foam-dim); }
.event-hire .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.event-hire__media { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--bass-strait) 0%, var(--rockpool) 100%); border-radius: 6px; position: relative; overflow: hidden; }
.event-hire__tag { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; font-family: monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); display: flex; align-items: center; gap: 0.5rem; }
.event-hire__tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--surf-orange); }
.event-hire h2 { margin-bottom: 1rem; }
.event-hire__lede { color: var(--rockpool); max-width: 46ch; margin-bottom: 2rem; }
.pkg-list { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.pkg { padding: 1.25rem 0; border-top: 1px solid rgba(58, 42, 31, 0.18); }
.pkg-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
.pkg-head h4 { font-family: var(--type-display); font-weight: 600; font-size: 1.25rem; font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1; margin: 0; color: var(--bass-strait); }
.pkg-head em { font-style: italic; color: var(--surf-orange); }
.pkg__price { font-family: monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rockpool); }
.pkg ul { margin: 0; padding-left: 1.1rem; font-size: 0.92rem; line-height: 1.6; color: var(--driftwood); }
.pkg li { margin-bottom: 0.3rem; }
.event-hire__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.event-hire__meta { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rockpool); display: flex; gap: 0.75rem; flex-wrap: wrap; }
.event-hire__meta .sep { opacity: 0.4; }
@media (max-width: 760px) { .event-hire .container { grid-template-columns: 1fr; } }

/* Reviews */
.reviews { background: var(--foam); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.reviews__big { font-family: var(--type-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; font-style: italic; color: var(--bass-strait); font-variation-settings: "opsz" 72, "SOFT" 100; margin: 1.25rem 0 1.5rem; }
.reviews__big em { color: var(--surf-orange); font-style: italic; }
.reviews__attrib { font-family: monospace; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rockpool); }
.reviews__small { display: grid; gap: 1.75rem; }
.reviews__quote { padding: 1.25rem 0; border-top: 1px solid rgba(58, 42, 31, 0.15); }
.reviews__quote:first-child { border-top: 0; padding-top: 0; }
.reviews__quote .stars { color: var(--surf-orange); font-size: 0.85rem; letter-spacing: 0.18em; margin-bottom: 0.5rem; }
.reviews__quote p { font-family: var(--type-display); font-style: italic; font-size: 1.05rem; line-height: 1.55; margin: 0 0 0.6rem; color: var(--driftwood); font-variation-settings: "opsz" 36, "SOFT" 100; }
.reviews__quote .attr { font-family: monospace; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rockpool); }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Reserve CTA — Finally Mine-faithful booking form (full form, radio grids) */
.reserve-cta { background: var(--foam); color: var(--bass-strait); padding: clamp(4rem, 9vw, 8rem) 0; }
.reserve-cta .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.reserve-cta h2 { color: var(--bass-strait); margin-bottom: 0; }
.reserve-cta h2 em { color: var(--surf-orange); font-style: italic; }
.reserve-cta p { color: var(--rockpool); max-width: 40ch; line-height: 1.6; margin-top: 1.5rem; }

.reserve-meta {
  margin-top: 2.5rem;
  display: grid;
  gap: 0.85rem;
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rockpool);
}

.reserve-form {
  background: var(--foam);
  border: 1px solid rgba(58, 42, 31, 0.18);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.reserve-form h3 {
  font-family: var(--type-display);
  font-weight: 400;
  font-size: 1.75rem;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
  color: var(--bass-strait);
}
.reserve-form .sub {
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rockpool);
  margin-bottom: 1.75rem;
}

.reserve-cta .form-row { display: grid; gap: 6px; margin-bottom: 1.25rem; }
.reserve-cta .form-row > label {
  font-family: monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rockpool);
  font-weight: 500;
}
.reserve-cta .form-row input[type="text"],
.reserve-cta .form-row input[type="email"],
.reserve-cta .form-row input[type="tel"],
.reserve-cta .form-row input[type="date"] {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(58, 42, 31, 0.25);
  border-radius: 0;
  color: var(--bass-strait);
  padding: 0.6rem 0;
  font-family: var(--type-body);
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease-out-soft);
  width: 100%;
}
.reserve-cta .form-row input::placeholder { color: rgba(58, 42, 31, 0.35); }
.reserve-cta .form-row input:focus { outline: 0; border-bottom-color: var(--surf-orange); }
.reserve-cta .form-row input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.55;
}

/* Time radio grid — 4 cols × 2 rows */
.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.time-grid label {
  border: 1px solid rgba(58, 42, 31, 0.25);
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--rockpool);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  position: relative;
  display: block;
}
.time-grid input { position: absolute; opacity: 0; pointer-events: none; }
.time-grid label:has(input:checked) {
  background: var(--surf-orange);
  color: var(--foam);
  border-color: var(--surf-orange);
}
.time-grid label:hover:not(:has(input:checked)) {
  border-color: var(--bass-strait);
  color: var(--bass-strait);
}

/* Guests radio row — 8 cols */
.guests { display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; }
.guests label {
  border: 1px solid rgba(58, 42, 31, 0.25);
  padding: 0.65rem 0;
  text-align: center;
  font-family: monospace;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--rockpool);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  position: relative;
  display: block;
}
.guests input { position: absolute; opacity: 0; pointer-events: none; }
.guests label:has(input:checked) {
  background: var(--surf-orange);
  color: var(--foam);
  border-color: var(--surf-orange);
}
.guests label:hover:not(:has(input:checked)) {
  border-color: var(--bass-strait);
  color: var(--bass-strait);
}

.reserve-form__submit { margin-top: 1.5rem; }
.reserve-form__submit .btn {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.25rem;
  background: var(--bass-strait);
  color: var(--foam);
  border: 1px solid var(--bass-strait);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--type-body);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s var(--ease-out-soft), color 0.25s var(--ease-out-soft), border-color 0.25s var(--ease-out-soft);
}
.reserve-form__submit .btn:hover {
  background: var(--surf-orange);
  color: var(--foam);
  border-color: var(--surf-orange);
}

@media (max-width: 760px) {
  .reserve-cta .container { grid-template-columns: 1fr; gap: 2rem; }
  .guests { grid-template-columns: repeat(4, 1fr); }
}

/* FAQ */
.faq__list { display: grid; gap: 0; max-width: 820px; margin: 2rem auto 0; }
.faq__item { border-top: 1px solid rgba(58, 42, 31, 0.18); }
.faq__item summary { padding: 1.25rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--type-display); font-weight: 600; font-size: 1.05rem; color: var(--bass-strait); font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0764D' stroke-width='1.6' stroke-linecap='round'><path d='M4 14 Q 8 8, 12 14 T 20 14' /></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.4s var(--ease-out-soft);
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__item div { padding: 0 0 1.5rem; font-size: 0.98rem; line-height: 1.6; color: var(--rockpool); max-width: 60ch; }

/* Blog teaser */
.blog-teaser__head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card__img { aspect-ratio: 4/3; background: linear-gradient(140deg, var(--sand-deep) 0%, var(--clay) 100%); border-radius: 4px; margin-bottom: 1rem; overflow: hidden; transition: transform 0.6s var(--ease-out-soft); }
.blog-card:hover .blog-card__img { transform: translateY(-2px); }
.blog-card__kicker { font-family: monospace; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rockpool); margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.92rem; color: var(--rockpool); margin: 0 0 0.5rem; max-width: 32ch; }
.blog-card__read { font-family: monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--surf-orange); }
@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* Sticky mobile action bar — phone-only, hides on scroll-up */
.action-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--bass-strait); color: var(--foam);
  padding: 0.75rem var(--gutter);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-top: 1px solid rgba(229, 215, 188, 0.15);
  transform: translateY(0);
  transition: transform 0.35s var(--ease-out-soft);
}
.action-bar.is-hidden { transform: translateY(100%); }
.action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 0.2rem;
  padding: 0.5rem; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-family: monospace; color: var(--foam);
  text-decoration: none;
}
.action-bar a svg { width: 18px; height: 18px; opacity: 0.85; }
.action-bar a strong { font-family: var(--type-display); font-style: italic; font-size: 0.95rem; letter-spacing: -0.01em; text-transform: none; color: var(--sand); font-weight: 600; font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1; }
@media (max-width: 760px) { .action-bar { display: grid; } body { padding-bottom: 80px; } }

/* ─────────────── Gift cards — illustrated postcards (matches map style) ─────────────── */
.gift { padding: clamp(4rem, 9vw, 8rem) 0; background: #FBF7EC; }
.gift-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}
.gift-head h2 em { color: var(--surf-orange); font-style: italic; }
.gift-head__actions { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.gift-head__actions .btn {
  background: transparent;
  color: var(--bass-strait);
  border: 1px solid var(--bass-strait);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-family: var(--type-body);
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease-out-soft), color 0.25s var(--ease-out-soft);
}
.gift-head__actions .btn:hover { background: var(--surf-orange); color: var(--foam); border-color: var(--surf-orange); }

.gift-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gift-card {
  position: relative;
  aspect-ratio: 1.4 / 1;
  padding: 1.75rem;
  color: var(--bass-strait);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid rgba(58, 42, 31, 0.18);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: transform 0.35s var(--ease-out-soft), box-shadow 0.35s var(--ease-out-soft), border-color 0.35s var(--ease-out-soft);
}
.gift-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -20px rgba(42, 27, 14, 0.32);
  border-color: rgba(192, 118, 77, 0.6);
}
/* Tiny postal-grain texture to feel hand-printed */
.gift-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(154, 90, 54, 0.06) 0, transparent 35%),
    radial-gradient(circle at 86% 78%, rgba(154, 90, 54, 0.05) 0, transparent 40%);
  pointer-events: none;
}
.gift-card__scene {
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  pointer-events: none;
  opacity: 0.95;
}
.gift-card__scene svg { width: 100%; height: 100%; display: block; }
/* Faint vertical postal divider — splits the "stamp" art from the info */
.gift-card::after {
  content: '';
  position: absolute;
  top: 1.25rem; bottom: 1.25rem;
  left: 45%;
  border-left: 1px dashed rgba(58, 42, 31, 0.18);
}
.gift-card .fm {
  position: relative;
  font-family: monospace;
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rockpool);
  opacity: 0.85;
}
.gift-card__body {
  position: relative;
  z-index: 1;
  max-width: 45%;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
}
.gift-card .sub {
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rockpool);
  display: block;
  margin-bottom: 0.35rem;
}
.gift-card .amt {
  font-family: var(--type-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--bass-strait);
}
.gift-card .amt em { font-style: italic; color: var(--surf-orange); }
.gift-card h4 {
  font-family: var(--type-display);
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 0.3rem;
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
  color: var(--bass-strait);
}
.gift-card p {
  font-size: 0.78rem;
  color: var(--rockpool);
  max-width: 26ch;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 980px) { .gift-row { grid-template-columns: 1fr; gap: 1rem; } }
@media (max-width: 600px) {
  .gift-head { grid-template-columns: 1fr; }
  .gift-card { aspect-ratio: 1.6 / 1; padding: 1.5rem; }
  .gift-card__body { max-width: 50%; }
}

/* ─────────────── Visit / location ─────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.visit-card .eyebrow { display: block; margin-bottom: 1rem; }
.visit-card h2 { margin-bottom: 1.5rem; }

/* Editorial info-stack — matches contact page pattern.
   Used by the homepage Visit section. */
.info-stack { display: grid; gap: 0; margin: 0 0 2rem; }
.info-stack__item {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(58, 42, 31, 0.18);
}
.info-stack__item:first-child { border-top: 0; padding-top: 0.25rem; }
.info-stack__item:last-child { padding-bottom: 0.5rem; }
.info-stack__label {
  display: block;
  font-family: monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rockpool);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.info-stack__value {
  font-family: var(--type-display);
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--bass-strait);
  font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.005em;
}
.info-stack__value em { font-style: italic; color: var(--surf-orange); }
.info-stack__value a {
  color: var(--bass-strait);
  border-bottom: 1px solid var(--surf-orange);
  padding-bottom: 1px;
  text-decoration: none;
  transition: color 0.25s;
}
.info-stack__value a:hover { color: var(--surf-orange); }
.info-stack__note {
  font-family: var(--type-body);
  font-size: 0.88rem;
  color: var(--rockpool);
  margin: 0.3rem 0 0;
  max-width: 38ch;
  line-height: 1.45;
}
.info-stack__status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--surf-orange);
  margin-top: 0.35rem;
}
.info-stack__status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #6CD27A;
  box-shadow: 0 0 0 0 rgba(108, 210, 122, 0.55);
  animation: pulse 2.4s ease-out infinite;
}

.visit-list {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; gap: 1rem;
}
.visit-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--rockpool); margin-bottom: 0.25rem; font-weight: 500; }
.visit-map {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--sand);
  transition: transform 0.5s var(--ease-out-soft), box-shadow 0.5s var(--ease-out-soft);
}
.visit-map:hover { transform: translateY(-2px); box-shadow: 0 22px 50px -20px rgba(42, 27, 14, 0.3); }
.visit-map iframe,
.visit-map img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

@media (max-width: 800px) {
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit-map { aspect-ratio: 4 / 3; }
}

/* ─────────────── Footer ─────────────── */
.site-footer {
  background: var(--bass-strait);
  color: var(--foam);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-grid h4 {
  font-family: var(--type-body);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; font-size: 0.94rem; }
.footer-brand .brand { color: var(--foam); font-size: 1.5rem; }
.footer-brand p { color: rgba(251, 250, 246, 0.7); font-size: 0.95rem; margin-top: 1rem; }

.signup { display: flex; gap: 0.5rem; max-width: 100%; }
.signup input {
  flex: 1; min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 250, 246, 0.3);
  background: transparent;
  color: var(--foam);
  font: inherit;
  font-size: 0.92rem;
}
.signup input::placeholder { color: rgba(251, 250, 246, 0.5); }
.signup button {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 0;
  background: var(--surf-orange);
  color: var(--foam);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.3s var(--ease-out-soft);
}
.signup button:hover { background: var(--foam); color: var(--bass-strait); }

.colophon {
  border-top: 1px solid rgba(251, 250, 246, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: rgba(251, 250, 246, 0.6);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─────────────── Page-hero video background (visit / our-story / etc) ─────────────── */
.page-hero--video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 60vh;
}
.page-hero--video .page-hero__media {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}
.page-hero--video .page-hero__media::after {
  /* Warm overlay so type stays legible whatever frame the video is on. */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 27, 14, 0.25) 0%,
    rgba(42, 27, 14, 0.50) 55%,
    rgba(42, 27, 14, 0.78) 100%
  );
  z-index: 1;
}
.page-hero--video .page-hero__youtube {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.page-hero--video .page-hero__youtube iframe {
  position: absolute;
  top: 50%; left: 50%;
  width:  max(100%, 177.78vh);
  height: max(100%, 56.25vw);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.02);
}
.page-hero--video > .container {
  position: relative;
  z-index: 2;
}

/* ─────────────── Imagery — fills every placeholder media container ─────────────── */
/* Drop-in: each section's __media / __portrait / __img div has a gradient
   background as the fallback. An <img> placed inside covers it at full
   bleed with object-fit:cover. */
.coffee-program__media img,
.crew-card__portrait img,
.hours-card__media img,
.event-card__img img,
.event-hire__media img,
.blog-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coffee-program__media,
.crew-card__portrait,
.event-card__img,
.event-hire__media,
.blog-card__img {
  position: relative;
}

/* ─────────────── Surf badge (homepage hero + visit page) ─────────────── */
.surf-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1rem;
  background: rgba(251, 250, 246, 0.08);
  border: 1px solid rgba(251, 250, 246, 0.18);
  border-radius: 999px;
  font-family: var(--type-body);
  font-size: 0.86rem;
  color: rgba(251, 250, 246, 0.85);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.6s var(--ease-out-soft), transform 0.6s var(--ease-out-soft), border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.surf-badge.is-loaded { opacity: 1; transform: translateY(0); }
.surf-badge:hover { background: rgba(216, 85, 43, 0.18); border-color: rgba(216, 85, 43, 0.5); color: var(--foam); }
.surf-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--surf-orange);
  box-shadow: 0 0 0 0 rgba(216, 85, 43, 0.5);
  animation: pulse-orange 2.4s ease-out infinite;
  flex-shrink: 0;
}
.surf-badge strong { color: var(--foam); font-weight: 600; }
.surf-badge__row { display: inline-flex; align-items: baseline; gap: 0.2rem; }
.surf-badge__arrow { margin-left: 0.4rem; opacity: 0.6; transition: transform 0.3s, opacity 0.3s; }
.surf-badge:hover .surf-badge__arrow { transform: translateX(3px); opacity: 1; }
@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(216, 85, 43, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(216, 85, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 85, 43, 0); }
}

/* Light variant for sand backgrounds (e.g. visit page) */
.surf-badge--light {
  background: rgba(14, 59, 73, 0.08);
  border-color: rgba(14, 59, 73, 0.18);
  color: var(--bass-strait);
}
.surf-badge--light strong { color: var(--bass-strait); }
.surf-badge--light:hover { background: rgba(216, 85, 43, 0.12); border-color: rgba(216, 85, 43, 0.5); color: var(--bass-strait); }

/* ─────────────── Animation utilities ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-out-soft),
              transform 0.9s var(--ease-out-soft);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-line { overflow: hidden; }
.split-line__inner {
  display: inline-block;
  transform: translateY(120%);
  transition: transform 1.05s var(--ease-out-soft);
}
.split-line.is-visible .split-line__inner { transform: translateY(0); }

/* Stagger helpers */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }
.delay-5 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *:not(.statusbar__marquee-track):not(.surf-hero__waves *), *::before, *::after {
    animation: none !important;
    transition: opacity 0.2s linear !important;
  }
  .reveal { transform: none; }
  .split-line__inner { transform: none; }
  html { scroll-behavior: auto; }
}
