/* ==========================================================================
   Dicky Beach Seafood & Burger Co — v2
   Ink / bone / gold, taken from the printed menu. Anton for display,
   Archivo for reading, IBM Plex Mono for labels, Kaushan for the brush.
   ========================================================================== */

:root {
  --ink: #07141f;
  --ink-2: #0d1f2e;
  --ink-3: #15293b;
  --navy: #0b3a5b;
  --bone: #f2ede3;
  --bone-2: #e7dfcf;
  --gold: #f6b73c;
  --gold-ink: #a86d08;
  --line-d: rgba(242, 237, 227, .14);
  --line-l: rgba(7, 20, 31, .13);
  --muted-d: rgba(242, 237, 227, .66);
  --muted-l: rgba(7, 20, 31, .66);

  --f-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --f-var: "Big Shoulders Display", "Anton", sans-serif;
  --f-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --f-script: "Kaushan Script", "Brush Script MT", cursive;
  --f-serif: "Newsreader", Georgia, "Times New Roman", serif;

  --out: cubic-bezier(.16, 1, .3, 1);
  --io: cubic-bezier(.65, 0, .35, 1);
  --pad: clamp(20px, 3.2vw, 48px);
  --r: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.is-loading { overflow: hidden; }
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
p, h1, h2, h3 { margin: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.display { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; letter-spacing: -.004em; line-height: .88; }
.eyebrow { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; line-height: 1.4; }
.num, .gold { color: var(--gold); }
.light .num { color: var(--gold-ink); }
.script { font-family: var(--f-script); text-transform: none; letter-spacing: 0; font-weight: 400; }

.grain {
  position: fixed; inset: -100%; z-index: 95; pointer-events: none; opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1.4s steps(5) infinite;
}
@keyframes grain { 0%, 100% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); } 60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } }

/* ---------- buttons, status ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font: 600 14px/1 var(--f-body); letter-spacing: .01em; white-space: nowrap;
  transition: transform .6s var(--out), background-color .3s, color .3s, border-color .3s, box-shadow .6s var(--out);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .6s var(--out); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn--sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn--lg { height: 56px; padding: 0 28px; font-size: 15px; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: #ffc65a; box-shadow: 0 12px 30px rgba(246, 183, 60, .28); }
.btn--ink { background: var(--ink); color: var(--bone); }
.btn--ghost { border: 1.5px solid rgba(242, 237, 227, .42); color: var(--bone); }
.btn--ghost:hover { border-color: var(--bone); background: rgba(242, 237, 227, .08); }
.btn--bone { background: var(--bone); color: var(--ink); }

/* ---------- liquid glass: a bent, brightened backdrop, a lit rim, and a light that follows the cursor ---------- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.glass {
  position: relative; isolation: isolate;
  background: linear-gradient(180deg, rgba(255, 255, 255, .36), rgba(255, 255, 255, .1) 58%, rgba(255, 255, 255, .2));
  box-shadow: 0 12px 32px rgba(7, 20, 31, .12), inset 0 1px 1px rgba(255, 255, 255, .85), inset 0 -1px 1px rgba(255, 255, 255, .3);
}
.glass__warp {
  position: absolute; inset: 0; z-index: -2; border-radius: inherit; overflow: hidden;
  -webkit-backdrop-filter: blur(5px) saturate(1.8) brightness(1.06); backdrop-filter: blur(5px) saturate(1.8) brightness(1.06);
  filter: url(#liquid);
}
.glass::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; pointer-events: none; background: radial-gradient(200px circle at var(--mx, 22%) var(--my, 0%), rgba(255, 255, 255, .5), transparent 70%); opacity: .75; }
.glass::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; padding: 1.2px;
  background: linear-gradient(140deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .15) 38%, rgba(255, 255, 255, .05) 62%, rgba(255, 255, 255, .75));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.btn--glass { color: var(--ink); }
.btn--glass:hover { box-shadow: 0 16px 36px rgba(7, 20, 31, .16), inset 0 1px 1px rgba(255, 255, 255, .95), inset 0 -1px 1px rgba(255, 255, 255, .35); }

.status { display: inline-flex; align-items: center; gap: 8px; font: 500 11px/1 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.status b { width: 7px; height: 7px; border-radius: 50%; background: #8aa0ad; flex: none; }
.status.is-open b { background: #3ecf8e; box-shadow: 0 0 0 4px rgba(62, 207, 142, .18); }
.status.is-closed b { background: #ef7b5c; }
.status--lg { font-size: 12.5px; padding: 11px 15px; border: 1px solid var(--line-d); border-radius: 999px; margin: 20px 0 26px; }

.eq { display: inline-flex; align-items: center; justify-content: center; gap: 2.5px; }
.eq span { width: 2.5px; border-radius: 2px; background: currentColor; height: 6px; }
.eq span:nth-child(1) { height: 5px; } .eq span:nth-child(2) { height: 10px; } .eq span:nth-child(3) { height: 7px; } .eq span:nth-child(4) { height: 12px; }
.eq.is-on span { animation: eq 1.2s var(--io) infinite alternate; }
.eq.is-on span:nth-child(2) { animation-delay: -.4s; } .eq.is-on span:nth-child(3) { animation-delay: -.9s; } .eq.is-on span:nth-child(4) { animation-delay: -.2s; }
@keyframes eq { 0% { height: 4px; } 50% { height: 14px; } 100% { height: 7px; } }

/* ---------- cursor ---------- */
.cursor { display: none; }
.has-cursor .cursor { display: block; position: fixed; left: 0; top: 0; z-index: 300; pointer-events: none; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }
.cursor__dot {
  position: absolute; left: 0; top: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 999px;
  background: var(--gold); display: grid; place-items: center;
  transition: width .5s var(--out), height .5s var(--out), margin .5s var(--out), background-color .3s;
}
.cursor.is-hover .cursor__dot { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: rgba(246, 183, 60, .28); }
.cursor.is-label .cursor__dot { width: 86px; height: 86px; margin: -43px 0 0 -43px; background: var(--gold); }
.cursor__label { font: 600 11px/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .2s; white-space: nowrap; }
.cursor.is-label .cursor__label { opacity: 1; transition-delay: .1s; }

/* ==========================================================================
   Loader
   ========================================================================== */
.loader { position: fixed; inset: 0; z-index: 200; color: var(--bone); }
.loader__shutters { position: absolute; inset: 0; display: flex; }
.loader__shutters i { flex: 1; background: var(--ink); margin-right: -1px; }
.loader__ui { position: absolute; inset: 0; padding: 26px var(--pad); display: flex; flex-direction: column; justify-content: space-between; }
.loader__top, .loader__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.loader__bottom { padding-bottom: 14px; color: var(--muted-d); }
.loader__logo { font: 400 22px/1 var(--f-display); text-transform: uppercase; }
.loader__mid { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.loader__count { font: 400 clamp(120px, min(24vw, 40vh), 380px)/.8 var(--f-display); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.loader__count sup { font-size: .32em; color: var(--gold); vertical-align: top; position: relative; top: .1em; margin-left: .04em; }
.loader__list { list-style: none; margin: 0; padding: 0 0 .6em; text-align: right; }
.loader__list li { opacity: .22; transition: opacity .35s; padding: 3px 0; }
.loader__list li span { color: var(--gold); margin-right: 10px; }
.loader__list li.is-on { opacity: 1; }
.loader__line { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(242, 237, 227, .08); }
.loader__line i { display: block; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.loader__brand { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; visibility: hidden; }
.loader__mark { width: clamp(70px, 8vw, 110px); margin-bottom: 20px; }
.loader__word { display: flex; overflow: hidden; padding: 0 .02em .03em; font: 400 clamp(64px, min(13vw, 21vh), 230px)/.86 var(--f-display); text-transform: uppercase; }
.loader__word span { display: inline-block; }
.loader__word .sp { width: .24em; }
.loader__rule { display: block; width: min(600px, 72vw); height: 2px; background: rgba(242, 237, 227, .25); margin: 20px 0 18px; }
.loader__place { font: 400 clamp(18px, 2.4vw, 32px)/1 var(--f-display); text-transform: uppercase; letter-spacing: .24em; color: var(--gold); }

/* ==========================================================================
   Top bar, floating pill, menu overlay
   ========================================================================== */
/* minimal and see-through over the hero: two words left, the name in the middle, a burger right.
   It sits in the hero's pinned stage, so it stays while the hero holds and leaves with it;
   below that the pill is the navigation. */
.topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  padding: clamp(22px, 4.5vh, 44px) var(--pad) 0; color: var(--bone);
}
.topnav { grid-column: 1; justify-self: start; display: flex; gap: clamp(20px, 2.2vw, 34px); font: 300 clamp(20px, 1.8vw, 28px)/1 var(--f-var); text-transform: uppercase; letter-spacing: .03em; }
.topnav a, .topnav button { position: relative; padding: 6px 0; font: inherit; color: inherit; text-transform: inherit; letter-spacing: inherit; }
.topnav :is(a, button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .6s var(--out); }
.topnav :is(a, button):hover::after { transform: scaleX(1); transform-origin: left; }
.brand { grid-column: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.brand__word { font: 400 clamp(26px, 2.5vw, 38px)/.9 var(--f-display); text-transform: uppercase; letter-spacing: .01em; }
.brand__script { margin-top: -.1em; font: 400 clamp(15px, 1.3vw, 20px)/1.2 var(--f-script); color: var(--gold); transform: rotate(-4deg); }
.topbar__burger { grid-column: 3; justify-self: end; display: grid; justify-items: end; gap: 9px; padding: 12px 0 12px 12px; color: inherit; }
.topbar__burger i { display: block; width: 48px; height: 1.5px; background: currentColor; transition: width .5s var(--out); }
.topbar__burger i + i { width: 30px; }
.topbar__burger:hover i + i { width: 48px; }

.pill {
  position: fixed; left: 50%; bottom: 18px; z-index: 80;
  display: flex; align-items: center; gap: 6px; padding: 6px;
  border-radius: 999px; background: rgba(7, 20, 31, .8);
  -webkit-backdrop-filter: blur(16px) saturate(1.2); backdrop-filter: blur(16px) saturate(1.2);
  border: 1.5px solid rgba(246, 183, 60, .6);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  transform: translateX(-50%);
  transition: transform 1s var(--out), opacity .6s;
}
.is-loading .pill { transform: translate(-50%, 160%); opacity: 0; }
/* right at the top the pill waits for the first scroll, unless the site menu is open (it holds the close button) */
.at-top .pill { transform: translate(-50%, 160%); opacity: 0; visibility: hidden; transition: transform 1s var(--out), opacity .6s, visibility 0s 1s; }
.at-top:has(.menu-ov.is-open) .pill { transform: translateX(-50%); opacity: 1; visibility: visible; transition: transform 1s var(--out), opacity .6s; }
.pill__menu { width: 44px; height: 44px; border-radius: 50%; background: var(--bone); display: grid; place-content: center; gap: 5px; flex: none; }
.pill__menu i { display: block; width: 16px; height: 1.8px; background: var(--ink); transition: transform .5s var(--out); }
.pill__menu[aria-expanded="true"] i:first-child { transform: translateY(3.4px) rotate(45deg); }
.pill__menu[aria-expanded="true"] i:last-child { transform: translateY(-3.4px) rotate(-45deg); }
.pill__logo { font: 400 19px/1 var(--f-display); text-transform: uppercase; padding: 0 10px 0 8px; white-space: nowrap; }
.pill__status { padding: 0 12px; border-left: 1px solid var(--line-d); height: 24px; color: var(--muted-d); }
.pill__chill { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-d); flex: none; }
.pill__chill:hover { border-color: var(--gold); color: var(--gold); }

/* the site menu rises from the bottom like the tide, over open water */
.menu-ov {
  position: fixed; inset: 0; z-index: 70; background: #06202b; color: var(--bone);
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 50px; padding: 110px var(--pad) 120px;
  clip-path: inset(100% 0 0 0); visibility: hidden;
  transition: clip-path .9s var(--io), visibility 0s .9s;
}
.menu-ov.is-open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .9s var(--io); }
.menu-ov__sea { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: #0a3f4c; }
.menu-ov__sea video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 2.4s var(--out); }
.menu-ov.is-open .menu-ov__sea video { transform: none; }
.menu-ov__sea::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 20, 30, .9) 0%, rgba(5, 34, 46, .74) 55%, rgba(6, 44, 58, .55) 100%); }
/* a close right where the header burger was, for anyone who opened this by mistake */
.menu-ov__close { position: absolute; top: clamp(22px, 4.5vh, 44px); right: var(--pad); z-index: 2; display: flex; align-items: center; gap: 16px; padding: 12px 0 12px 12px; font: 300 clamp(20px, 1.8vw, 28px)/1 var(--f-var); text-transform: uppercase; letter-spacing: .03em; color: var(--bone); transition: color .3s; }
.menu-ov__close b { position: relative; width: 34px; height: 34px; }
.menu-ov__close b::before, .menu-ov__close b::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; background: currentColor; transform: rotate(45deg); transition: transform .5s var(--out); }
.menu-ov__close b::after { transform: rotate(-45deg); }
.menu-ov__close:hover { color: var(--gold); }
.menu-ov__close:hover b::before { transform: rotate(135deg); }
.menu-ov__close:hover b::after { transform: rotate(45deg); }
/* thin words, like the hero's, that thicken as you point at them, with a gold note written in beside */
.menu-ov__links { display: flex; flex-direction: column; justify-content: center; }
.menu-ov__links a, .menu-ov__links button {
  display: flex; align-items: baseline; gap: 20px; width: fit-content; text-align: left;
  font: 250 clamp(44px, min(7.2vw, 10.6vh), 132px)/1.02 var(--f-var); text-transform: uppercase; letter-spacing: .01em; color: var(--bone);
  transition: font-weight .6s var(--out), color .4s;
}
.menu-ov.is-open .menu-ov__links > * { animation: ov-in .9s var(--out) both; }
.menu-ov.is-open .menu-ov__links > :nth-child(2) { animation-delay: .05s; }
.menu-ov.is-open .menu-ov__links > :nth-child(3) { animation-delay: .1s; }
.menu-ov.is-open .menu-ov__links > :nth-child(4) { animation-delay: .15s; }
.menu-ov.is-open .menu-ov__links > :nth-child(5) { animation-delay: .2s; }
.menu-ov.is-open .menu-ov__links > :nth-child(6) { animation-delay: .25s; }
@keyframes ov-in { from { opacity: 0; transform: translateY(40px); } }
.menu-ov__links .n { align-self: flex-start; margin-top: .8em; font: 500 12px/1 var(--f-mono); letter-spacing: .12em; color: var(--gold); }
.menu-ov__aside { padding: 0 .2em; font: 400 clamp(20px, 1.9vw, 30px)/1.2 var(--f-script); letter-spacing: 0; text-transform: none; color: var(--gold); white-space: nowrap; clip-path: inset(0 100% 0 0); transform: rotate(-4deg); transition: clip-path .6s var(--out); }
.menu-ov__links :is(a, button):is(:hover, :focus-visible) { font-weight: 800; outline: none; } /* focus shows as the thick word and its note */
.menu-ov__links :is(a, button):is(:hover, :focus-visible) .menu-ov__aside { clip-path: inset(0 0 0 0); }
.menu-ov__links:hover > :not(:hover) { color: rgba(242, 237, 227, .42); }
@media (hover: none) { .menu-ov__links a, .menu-ov__links button { font-weight: 400; } }
/* the porthole: a gold rim, the photo behind glass, and the name turning slowly around it */
.menu-ov__side { display: flex; flex-direction: column; align-items: center; gap: 44px; }
.menu-ov__porthole { position: relative; width: min(34vw, 50vh, 480px); aspect-ratio: 1; }
.menu-ov__ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; animation: ov-spin 48s linear infinite; }
.menu-ov__ring text { font: 500 9px var(--f-mono); letter-spacing: .3em; text-transform: uppercase; fill: rgba(242, 237, 227, .72); }
@keyframes ov-spin { to { transform: rotate(360deg); } }
.menu-ov__media { position: absolute; inset: 14%; border-radius: 50%; overflow: hidden; background: var(--ink-2); box-shadow: 0 0 0 9px var(--gold), 0 0 0 11px rgba(4, 20, 30, .55), 0 0 0 12px rgba(246, 183, 60, .5), 0 30px 60px rgba(0, 0, 0, .45); }
.menu-ov__media::after { content: ""; position: absolute; inset: 0; z-index: 1; border-radius: 50%; background: radial-gradient(60% 45% at 30% 22%, rgba(255, 255, 255, .22), transparent 62%); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .22), inset 0 0 50px rgba(0, 0, 0, .45); pointer-events: none; }
.menu-ov__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity .7s, transform 1.4s var(--out); }
.menu-ov__media img.is-on { opacity: 1; transform: scale(1); }
.menu-ov__info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; width: min(100%, 480px); font-size: 15px; color: rgba(242, 237, 227, .72); }
.menu-ov__info p { margin-top: 8px; line-height: 1.7; }
.menu-ov__info a:hover { color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .menu-ov__ring { animation: none; } }

/* ==========================================================================
   Hero: the line from the printed menu, over the ocean. The stage itself is
   the kinetic section (further down). Right at the top (html.at-top) it has the
   screen to itself; the only thing laid over it is the cue to scroll.
   ========================================================================== */
.scrollcue { position: absolute; left: 50%; bottom: clamp(26px, 5vh, 48px); z-index: 3; color: var(--bone); pointer-events: none; opacity: 0; transform: translate(-50%, 14px); transition: opacity .5s, transform .7s var(--out); }
.at-top .scrollcue { opacity: 1; transform: translateX(-50%); }
.scrollcue__in { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.scrollcue__line { position: relative; width: 1.5px; height: 60px; overflow: hidden; background: rgba(242, 237, 227, .22); }
.scrollcue__line i { position: absolute; left: 0; top: 0; width: 100%; height: 45%; background: var(--gold); animation: cue 2s var(--io) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 70%, 100% { transform: translateY(225%); } }
@media (prefers-reduced-motion: reduce) { .scrollcue__line i { animation: none; transform: none; } }

/* ==========================================================================
   Pier88-inspired pieces: thin display type, wave videos, wave edges
   ========================================================================== */
.thin { font-family: var(--f-var); font-weight: 200; text-transform: uppercase; letter-spacing: .02em; line-height: .9; }
/* background videos always show: their poster until the first frame, so a phone that blocks autoplay
   (Low Power Mode, in-app browsers) still gets the picture instead of an empty background */
[data-lazyvideo] { background: #0c3f52 center / cover no-repeat; }

/* ---------- coast: arched type over the sea, a dish rising out of the wave ---------- */
.coast { position: relative; background: var(--bone); }
.coast__stage { position: relative; height: 112svh; min-height: 620px; overflow: hidden; }
.coast__bg { position: absolute; inset: 0; will-change: transform; }
.coast__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; transition: opacity 1.4s var(--io); }
.coast__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 20, 31, .28), rgba(7, 20, 31, 0) 45%); }
.coast__arc { position: absolute; left: 50%; top: 7%; width: min(1180px, 96vw); transform: translateX(-50%); overflow: visible; }
.coast__arc text { font-family: var(--f-var); font-weight: 300; font-size: 108px; fill: #fff; text-transform: uppercase; letter-spacing: .04em; }
.coast__dish { position: absolute; left: 50%; bottom: 5%; z-index: 2; width: clamp(280px, 40vw, 640px); filter: drop-shadow(0 34px 30px rgba(7, 20, 31, .35)); will-change: transform; }
.coast__wave { position: absolute; left: 0; right: 0; bottom: -2px; z-index: 3; width: 100%; height: 36%; fill: var(--bone); }
.coast__label { position: absolute; left: var(--pad); bottom: 8%; z-index: 4; color: var(--ink); }
.coast__label--r { left: auto; right: var(--pad); }
html.static .coast__dish { transform: translateX(-50%); }

/* ---------- kinetic words now sit on the ocean ---------- */
.kinetic__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kinetic__tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 58, 91, .55) 0%, rgba(11, 58, 91, .3) 50%, rgba(7, 20, 31, .6) 100%); }

/* ---------- ways: shore video washing into the sand ---------- */
/* the shore now sits between two dark sections, so it washes down into ink rather than bone */
.ways { position: relative; background: var(--ink); color: var(--bone); }
.ways__shore { position: relative; height: 94svh; min-height: 560px; overflow: hidden; background: var(--ink-2); }
.ways__vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ways__fade { position: absolute; left: 0; right: 0; bottom: 0; height: 58%; background: linear-gradient(180deg, rgba(7, 20, 31, 0) 0%, rgba(7, 20, 31, .72) 58%, var(--ink) 95%); }
.ways__intro { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; padding: 0 var(--pad) 16vh; color: #fff; }
.ways__intro h2 { font-size: clamp(54px, min(9vw, 15vh), 180px); text-shadow: 0 8px 40px rgba(7, 20, 31, .28); }
.ways__intro .script { margin-top: -.25em; font-size: clamp(34px, min(4.4vw, 8vh), 80px); color: #fff; transform: rotate(-5deg); text-shadow: 0 6px 24px rgba(7, 20, 31, .35); padding: 0 .2em; }
/* ---------- linger: split-screen video ---------- */
.linger { position: relative; background: var(--ink); }
.linger__stage { --split: 22%; position: relative; height: 100svh; min-height: 560px; overflow: hidden; color: #fff; background: var(--ink); }
.linger__half { position: absolute; inset: 0; }
.linger__half video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.linger__half--b { clip-path: inset(0 0 0 var(--split)); }
.linger__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 20, 31, .35), rgba(7, 20, 31, .18) 50%, rgba(7, 20, 31, .5)); }
.linger__line { position: absolute; top: 0; bottom: 0; left: var(--split); width: 1px; background: rgba(255, 255, 255, .55); }
.linger__copy { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; padding: 0 var(--pad); }
.linger__copy h2 { font-size: clamp(64px, min(11vw, 18vh), 220px); font-weight: 200; text-shadow: 0 10px 50px rgba(0, 0, 0, .3); white-space: nowrap; }
.linger__copy .script { margin-top: -.3em; font-size: clamp(34px, min(4.6vw, 8vh), 84px); color: var(--gold); transform: rotate(-5deg); padding: 0 .2em; text-shadow: 0 6px 24px rgba(0, 0, 0, .3); }
.linger__caps { position: absolute; left: var(--pad); right: var(--pad); bottom: 104px; display: flex; justify-content: space-between; color: rgba(255, 255, 255, .85); }
@media (max-width: 900px) {
  .coast__stage { height: 92svh; }
  .coast__arc { top: 12%; }
  .coast__dish { width: 78vw; bottom: 9%; }
  .coast__wave { height: 26%; }
  .coast__label--r { display: none; }
  .linger__copy h2 { white-space: normal; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { position: relative; padding: clamp(100px, 13vw, 180px) var(--pad); }
.light { background: var(--bone); color: var(--ink); }
.dark { background: var(--ink); color: var(--bone); }
.lede { font-size: clamp(17px, 1.35vw, 21px); line-height: 1.55; max-width: 46ch; }
.light .lede { color: #29343d; }

/* ---------- manifesto ---------- */
.manifesto { padding-top: clamp(140px, 16vw, 220px); }
.manifesto__grid { display: grid; grid-template-columns: minmax(150px, .26fr) 1fr; gap: 40px; margin-bottom: clamp(70px, 9vw, 130px); }
.manifesto__label { padding-top: 1em; }
.manifesto__text { font: 500 clamp(28px, 3.5vw, 58px)/1.1 var(--f-body); font-stretch: 94%; letter-spacing: -.025em; }
.js [data-words] .w { opacity: .13; }
.inl { display: inline-block; width: 1.8em; height: .86em; border-radius: 999px; overflow: hidden; vertical-align: -.06em; margin: 0 .04em; }
.inl img { width: 100%; height: 100%; object-fit: cover; }
.manifesto__row { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(30px, 6vw, 110px); align-items: end; }
.manifesto__img { position: relative; margin: 0; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; background: var(--bone-2); }
.manifesto__img img, .wreck__img img { position: absolute; left: 0; top: -7.5%; width: 100%; height: 115%; object-fit: cover; }
.manifesto__img figcaption, .wreck__img figcaption { position: absolute; left: 18px; bottom: 16px; color: var(--bone); text-shadow: 0 1px 12px rgba(0, 0, 0, .45); }
.stats { display: grid; grid-template-columns: 1fr 1fr; margin-top: 50px; border-top: 1px solid var(--line-l); }
.stat { padding: 26px 0 24px; border-bottom: 1px solid var(--line-l); }
.stat:nth-child(odd) { border-right: 1px solid var(--line-l); padding-right: 20px; }
.stat:nth-child(even) { padding-left: 26px; }
.stat__n { font: 400 clamp(56px, 6vw, 96px)/.9 var(--f-display); font-variant-numeric: tabular-nums; }
.stat__n sup { font-size: .34em; color: var(--gold-ink); vertical-align: top; margin-left: 4px; }
.stat__n sup.pre { margin: 0 3px 0 0; }
.stat__l { margin-top: 10px; color: var(--muted-l); }

/* ---------- on the board (pinned showcase) ---------- */
.show { position: relative; background: var(--gold); color: var(--ink); }
.show__stage { position: relative; height: 100svh; min-height: 580px; overflow: hidden; display: flex; flex-direction: column; padding: 76px var(--pad) 96px; background: var(--gold); }
.show__wall { position: absolute; inset: -30%; pointer-events: none; will-change: transform; }
.show .num { color: rgba(7, 20, 31, .5); }
.show__head { position: absolute; top: 26px; left: var(--pad); right: var(--pad); z-index: 4; display: flex; justify-content: space-between; }
.show__count b { font-weight: 500; }
.show__rail { position: absolute; left: var(--pad); top: 50%; z-index: 4; width: 2px; height: 26vh; transform: translateY(-50%); background: rgba(7, 20, 31, .18); }
.show__rail i { position: absolute; inset: 0; background: var(--ink); transform: scaleY(.14); transform-origin: top; transition: transform .9s var(--out); }
.show__plate { position: relative; z-index: 3; flex: 1; min-height: 0; }
.show__dish { position: absolute; left: 50%; top: 48%; height: 112%; max-height: 68vw; width: auto; max-width: none; object-fit: contain; filter: drop-shadow(0 30px 26px rgba(90, 52, 0, .34)); will-change: transform; }
.show__shadow { position: absolute; left: 50%; bottom: -4%; width: min(46vh, 480px); height: 12%; margin-left: calc(min(46vh, 480px) / -2); border-radius: 50%; background: radial-gradient(closest-side, rgba(90, 52, 0, .36), transparent); filter: blur(10px); }
.show__copy { position: relative; z-index: 2; text-align: center; margin-top: -3vh; }
.show__name { display: grid; justify-items: center; font-size: clamp(44px, min(15vw, 24vh), 290px); line-height: .84; white-space: nowrap; }
.show__name > .show__word { grid-area: 1 / 1; display: block; will-change: transform, opacity; }
.show__word .c { display: inline-block; will-change: transform, opacity; }
.show__desc { display: grid; justify-items: center; margin: 14px auto 0; max-width: 48ch; font-size: clamp(14px, 1.15vw, 17px); font-weight: 500; color: rgba(7, 20, 31, .8); min-height: 1.55em; }
.show__desc > span { grid-area: 1 / 1; }
.show__plate { will-change: transform; }
.show__foot { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
.show__price { font: 500 12.5px/1 var(--f-mono); letter-spacing: .06em; padding: 13px 16px; border: 1.5px solid rgba(7, 20, 31, .3); border-radius: 999px; }
.show__list { display: none; }

/* ---------- our fish: the tide comes in over the sand ---------- */
.tide { position: relative; background: var(--bone); }
.tide__stage { position: relative; height: 100svh; min-height: 620px; overflow: hidden; background: var(--bone); color: var(--bone); }
/* The water is two screens tall: an aerial shoreline on top (flipped so the sand leads and fades into
   the page), open ocean below. Scrolling lifts it over the sand; this is where it ends up. */
.tide__water { position: absolute; left: 0; right: 0; top: 0; height: 200%; transform: translateY(-50%); will-change: transform; }
/* the shoreline sits over the ocean and fades out into it at the bottom, so there's no seam between the two clips */
.tide__shore { position: absolute; left: 0; right: 0; top: 0; z-index: 1; height: 50%; -webkit-mask: linear-gradient(to bottom, transparent 2%, #000 34%, #000 76%, transparent 100%); mask: linear-gradient(to bottom, transparent 2%, #000 34%, #000 76%, transparent 100%); will-change: transform; }
.tide__flip { position: absolute; inset: 0; background: url(../img/video/waves-gold.webp) center / cover; transform: scaleY(-1); }
.tide__deep { position: absolute; left: 0; right: 0; top: 36%; bottom: 0; background: #0c5664; }
.tide__deep::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 92, 108, .35), rgba(6, 44, 58, .62)); }
.tide__flip video, .tide__deep video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tide__mark { position: absolute; right: -6vw; top: 50%; width: min(58vw, 760px); aspect-ratio: 240 / 213; background: #fff; opacity: .07; transform: translateY(-50%); -webkit-mask: url(../brand/logo-mark-240.webp) center / contain no-repeat; mask: url(../brand/logo-mark-240.webp) center / contain no-repeat; pointer-events: none; }
.tide__content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; gap: 30px; padding: clamp(88px, 13vh, 130px) var(--pad) clamp(104px, 13vh, 130px); }
.tide__head .eyebrow { color: rgba(242, 237, 227, .82); }
.tide__title { display: flex; flex-direction: column; align-items: flex-start; margin-top: 18px; }
.tide__title .thin { font-size: clamp(64px, min(10vw, 17vh), 190px); line-height: .86; }
.tide__title .script { margin: -.3em 0 0 1.4em; padding: 0 .2em; font-size: clamp(38px, min(5vw, 9vh), 92px); line-height: 1.15; color: var(--gold); transform: rotate(-5deg); }
.tide__lede { margin-top: 16px; font-size: clamp(15px, 1.2vw, 18px); color: rgba(242, 237, 227, .86); }
.tide__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px clamp(24px, 3vw, 48px); }
.tide__grid h3 { font-size: clamp(30px, 2.8vw, 46px); font-weight: 300; }
.tide__sub { margin-top: 8px; font-size: 16px; }
.tide__sub b { font-weight: 700; }
.tide__grid li > p:last-child { margin-top: 10px; max-width: 30ch; font-size: 14.5px; line-height: 1.6; color: rgba(242, 237, 227, .78); }
.tide__links { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: clamp(22px, 3.6vh, 36px); }
.tide__links a, .tide__links button { padding-bottom: 6px; border-bottom: 1px solid currentColor; font: 300 clamp(18px, 1.5vw, 24px)/1 var(--f-var); letter-spacing: .03em; text-transform: uppercase; color: var(--bone); transition: color .3s; }
.tide__links :is(a, button):hover { color: var(--gold); }
/* The words stay put in two copies, ink on the sand and cream on the water, handing over at the water line
   (--tide, set by main.js) through a short blend, so every word is always showing in one or the other. */
.tide__content { text-shadow: 0 1px 2px rgba(6, 44, 58, .55), 0 2px 18px rgba(6, 44, 58, .5); -webkit-mask-image: linear-gradient(to bottom, transparent calc(var(--tide, -200px) - 14px), #000 calc(var(--tide, -200px) + 14px)); mask-image: linear-gradient(to bottom, transparent calc(var(--tide, -200px) - 14px), #000 calc(var(--tide, -200px) + 14px)); }
.tide__content--dry { color: var(--ink); text-shadow: none; -webkit-mask-image: linear-gradient(to bottom, #000 calc(var(--tide, 200%) - 14px), transparent calc(var(--tide, 200%) + 14px)); mask-image: linear-gradient(to bottom, #000 calc(var(--tide, 200%) - 14px), transparent calc(var(--tide, 200%) + 14px)); }
.tide__content--dry .tide__head .eyebrow { color: rgba(7, 20, 31, .7); }
.tide__content--dry .num, .tide__content--dry .tide__title .script { color: var(--gold-ink); }
.tide__content--dry .tide__lede { color: rgba(7, 20, 31, .8); }
.tide__content--dry .tide__grid li > p:last-child { color: rgba(7, 20, 31, .7); }
.tide__content--dry .tide__links a, .tide__content--dry .tide__links button { color: var(--ink); }

/* ---------- kinetic ---------- */
.kinetic { position: relative; background: var(--navy); color: var(--bone); }
.kinetic__stage { position: relative; height: 100svh; min-height: 580px; display: grid; place-content: center; justify-items: center; overflow: hidden; background: var(--navy); }
.kinetic__words { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; font-family: var(--f-var); text-transform: uppercase; line-height: .8; font-size: clamp(72px, min(14.5vw, 22vh), 290px); letter-spacing: -.01em; }
.kw { display: block; font-weight: var(--w, 130); white-space: nowrap; }
.kinetic__script { position: absolute; right: -.25em; bottom: -.62em; z-index: 3; font-family: var(--f-script); text-transform: none; font-weight: 400; font-size: .44em; line-height: 1.2; color: var(--gold); white-space: nowrap; transform: rotate(-7deg); text-shadow: 0 8px 30px rgba(0, 0, 0, .3); padding: 0 .25em; }
.kinetic__dish { position: absolute; right: 3vw; bottom: 5vh; z-index: 1; width: clamp(180px, 22vw, 400px); filter: drop-shadow(0 34px 40px rgba(0, 0, 0, .45)); }

/* ---------- the beach (fly-through) ---------- */
.fly { position: relative; }
.fly__stage { position: relative; height: 100svh; min-height: 600px; overflow: hidden; perspective: 900px; background: var(--ink); }
.fly__imgs { position: absolute; inset: 0; transform-style: preserve-3d; }
.fly__img { position: absolute; left: 50%; top: 50%; width: clamp(150px, 16vw, 290px); aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; opacity: 0; will-change: transform, opacity; background: var(--ink-2); }
.fly__img:nth-child(3n + 1) { aspect-ratio: 16 / 11; width: clamp(190px, 20vw, 360px); }
.fly__img img { width: 100%; height: 100%; object-fit: cover; }
.fly__center { position: absolute; inset: 0; z-index: 5; display: grid; place-content: center; justify-items: center; text-align: center; pointer-events: none; }
.fly__center .btn { pointer-events: auto; }
.fly__eyebrow { margin-bottom: 18px; }
.fly__title { position: relative; font-size: clamp(96px, min(17vw, 29vh), 330px); line-height: .8; text-shadow: 0 10px 60px rgba(0, 0, 0, .35); }
.fly__script { position: absolute; left: 50%; top: 52%; font-size: .22em; color: var(--gold); white-space: nowrap; transform: translate(-50%, -50%) rotate(-7deg); text-shadow: 0 6px 30px rgba(0, 0, 0, .45); }
.fly__cta { margin-top: 34px; }
.fly__cap { position: absolute; left: var(--pad); bottom: 100px; z-index: 6; display: flex; align-items: center; gap: 10px; color: var(--muted-d); }
.fly__cap i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- the wreck ---------- */
.wreck__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); align-items: start; }
.wreck__title { font-size: clamp(56px, min(7vw, 12vh), 132px); margin: 14px 0 26px; }
.ink-gold { color: var(--gold-ink); }
.wreck__img { position: relative; margin: 40px 0 0; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; background: var(--bone-2); }
.events { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-l); }
.ev { display: grid; grid-template-columns: minmax(150px, .42fr) 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line-l); }
.ev__date b { display: block; font: 400 clamp(40px, 4vw, 64px)/.9 var(--f-display); text-transform: uppercase; font-weight: 400; }
.ev__date span { display: block; margin-top: 8px; font: 500 11px var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted-l); }
.ev__body h3 { font: 400 clamp(24px, 2.2vw, 34px)/1 var(--f-display); text-transform: uppercase; }
.ev__body p { margin-top: 8px; color: #33404a; max-width: 48ch; }
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: clamp(70px, 9vw, 120px); padding-top: 30px; border-top: 2px solid var(--ink); }
.note .eyebrow { color: var(--gold-ink); }
.note p { margin-top: 10px; font-size: 17px; max-width: 32ch; }

/* ---------- visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1.15fr .85fr .9fr; gap: clamp(30px, 4vw, 64px); align-items: start; }
.visit__addr { font-style: normal; font-size: clamp(44px, min(4.4vw, 9.5vh), 96px); }
.visit__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.visit__order { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-d); }
.hours { width: 100%; border-collapse: collapse; margin-top: 18px; }
.hours th, .hours td { padding: 13px 0; border-bottom: 1px solid var(--line-d); font-size: 15px; font-weight: 400; }
.hours th { text-align: left; }
.hours td { text-align: right; font-family: var(--f-mono); font-size: 13.5px; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); }
.hours tr.is-today th::after { content: "Today"; margin-left: 10px; font: 500 9.5px var(--f-mono); letter-spacing: .12em; text-transform: uppercase; background: var(--gold); color: var(--ink); padding: 3px 7px; border-radius: 99px; vertical-align: 2px; }
.visit__note { margin-top: 14px; font-size: 13px; color: var(--muted-d); }
.visit__card { position: relative; margin: 0; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; background: var(--ink-2); }
.visit__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.visit__card figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 90px 22px 22px; background: linear-gradient(transparent, rgba(7, 20, 31, .92)); }
.visit__card h3 { font-size: clamp(34px, 3vw, 52px); margin: 8px 0 6px; }
.visit__card p { color: var(--muted-d); font-size: 14px; }
.visit__map { position: relative; margin-top: clamp(50px, 6vw, 80px); height: clamp(260px, 32vw, 420px); border-radius: var(--r); overflow: hidden; display: grid; place-content: center; justify-items: center; gap: 14px; background: url("../img/photo/aerial.webp") center / cover; }
.visit__map::before { content: ""; position: absolute; inset: 0; background: rgba(7, 20, 31, .55); }
.visit__map > * { position: relative; }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- join: the last word, centred over the waves in thin capitals and gold script ---------- */
.join { position: relative; min-height: 100svh; overflow: hidden; display: grid; place-items: center; text-align: center; color: var(--bone); background: var(--ink); }
.join__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.join__shade { position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 48%, rgba(7, 20, 31, .35), rgba(7, 20, 31, .72)), linear-gradient(0deg, rgba(7, 20, 31, .55), transparent 40%); }
.join__inner { position: relative; z-index: 2; display: grid; justify-items: center; padding: 120px var(--pad) clamp(130px, 16vh, 160px); }
.join__inner .eyebrow { color: rgba(242, 237, 227, .82); }
.join__title { display: grid; justify-items: center; margin-top: 18px; }
.join__title .thin { font-size: clamp(64px, min(12vw, 20vh), 240px); line-height: .86; text-shadow: 0 10px 50px rgba(0, 0, 0, .3); }
.join__title .script { margin-top: -.32em; padding: 0 .2em; font-size: clamp(36px, min(5vw, 9vh), 96px); line-height: 1.15; color: var(--gold); transform: rotate(-5deg); text-shadow: 0 6px 24px rgba(0, 0, 0, .35); }
.join__lede { margin-top: clamp(18px, 3vh, 28px); font: 500 11.5px/1.6 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: rgba(242, 237, 227, .82); }
.join__lede i, .join__call i { margin: 0 8px; font-style: normal; color: var(--gold); }
.join__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 36px; margin-top: clamp(26px, 4.4vh, 44px); }
.join__call { display: inline-flex; align-items: center; padding: 20px 32px; background: var(--bone); color: var(--ink); font: 500 12.5px/1 var(--f-mono); letter-spacing: .18em; text-transform: uppercase; transition: background-color .3s; }
.join__call i { color: var(--gold-ink); }
.join__call:hover { background: var(--gold); }
.join__link { padding-bottom: 6px; border-bottom: 1px solid currentColor; font: 300 clamp(18px, 1.5vw, 24px)/1 var(--f-var); letter-spacing: .03em; text-transform: uppercase; color: var(--bone); transition: color .3s; }
.join__link:hover { color: var(--gold); }

/* ---------- footer ---------- */
.foot { position: relative; padding: clamp(80px, 9vw, 120px) var(--pad) 110px; overflow: hidden; }
.foot__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding-bottom: 50px; border-bottom: 1px solid var(--line-d); }
.foot__cols p { margin-top: 12px; color: var(--muted-d); line-height: 1.8; }
.foot__cols a:hover, .linkish:hover { color: var(--gold); }
.linkish { color: inherit; font: inherit; text-align: left; }
.foot__word { font-size: 18.4vw; line-height: .78; margin: 44px 0 0 -.02em; white-space: nowrap; }
.foot__kraken { position: absolute; right: calc(var(--pad) + 1vw); bottom: calc(110px + 13vw); width: clamp(70px, 8vw, 140px); aspect-ratio: 1; transform: translateY(46%) rotate(8deg); transition: transform .9s var(--out); }
.foot__kraken:hover, .foot__kraken:focus-visible { transform: translateY(12%) rotate(0deg); }
.foot__kraken img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity .35s; }
.k-hungry { opacity: 0; }
.foot__kraken.is-fed .k-hello { opacity: 0; }
.foot__kraken.is-fed .k-hungry { opacity: 1; }
.foot__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 24px; color: var(--muted-d); }

/* ---------- on the gram: three reels straight off the shop's own feed ---------- */
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.reels { overflow: hidden; }
.reels__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; gap: clamp(24px, 4vw, 70px); margin-bottom: clamp(44px, 6vw, 78px); }
.reels__title { margin: 16px 0 0; font-size: clamp(56px, 8vw, 132px); line-height: .88; text-transform: uppercase; }
.reels__script { display: block; margin-top: .06em; font-size: clamp(26px, 3vw, 50px); line-height: 1; color: var(--gold); transform: rotate(-4deg); transform-origin: 0 50%; text-transform: none; }
.reels__head .lede { color: var(--muted-d); }
.reels__intro { padding-bottom: 8px; }
.reels__cta { margin-top: 26px; max-width: 100%; }
.reels__cta span { overflow: hidden; text-overflow: ellipsis; }
.reels__rail { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; gap: clamp(18px, 2.6vw, 40px); }
.reel { margin: 0; }
/* the poster sits under the video, so a paused reel shows a bright still, never a frozen dark frame */
.reel__frame { position: relative; overflow: hidden; border-radius: 6px; background: var(--ink-2) center / cover no-repeat; box-shadow: 0 30px 70px -34px rgba(0, 0, 0, .9); }
.reel--tall .reel__frame { aspect-ratio: 9 / 16; }
.reel--wide .reel__frame { aspect-ratio: 16 / 9; }
.reel__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s var(--io); }
.reel__frame.is-live video { opacity: 1; }
/* sound toggle, sitting in the corner of the frame like a story control */
.reel__sound { position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; display: grid; place-items: center; gap: 0; padding: 0; border: 1px solid rgba(242, 237, 227, .3); border-radius: 50%; background: rgba(7, 20, 31, .55); backdrop-filter: blur(8px); color: var(--bone); cursor: pointer; transition: background .3s, border-color .3s, transform .3s var(--out); }
.reel__sound:hover { background: rgba(7, 20, 31, .8); border-color: var(--gold); transform: scale(1.08); }
.reel__sound i { position: relative; display: block; width: 15px; height: 13px; }
/* three little bars: flat when muted, bouncing when the sound is on */
.reel__sound i::before, .reel__sound i::after, .reel__sound i > span { content: ""; position: absolute; bottom: 0; width: 3px; border-radius: 2px; background: currentColor; transition: height .3s var(--io); }
.reel__sound i::before { height: 7px; }
.reel__sound i::after { height: 13px; }
.reel__sound i > span { height: 5px; }
.reel__sound i::before { left: 0; }
.reel__sound i::after { left: 6px; }
.reel__sound i > span { left: 12px; }
.reel__sound:hover i::before { height: 10px; }
.reel__sound:hover i > span { height: 9px; }
.reel__sound[aria-pressed="true"] i > span { animation: reelBar .9s ease-in-out .15s infinite; }
.reel__sound[aria-pressed="true"] { border-color: var(--gold); color: var(--gold); }
.reel__sound[aria-pressed="true"] i::before { animation: reelBar .9s ease-in-out infinite; }
.reel__sound[aria-pressed="true"] i::after { animation: reelBar .9s ease-in-out .3s infinite; }
@keyframes reelBar { 0%, 100% { height: 3px; } 50% { height: 12px; } }
@media (prefers-reduced-motion: reduce) { .reel__sound[aria-pressed="true"] i::before, .reel__sound[aria-pressed="true"] i::after { animation: none; height: 9px; } }
.reel__cap { margin: 16px 0 0; min-height: 58px; font: 500 11px/1.5 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted-d); }
.reel__n { color: var(--gold); margin-right: 8px; }
.reel__cap em { display: block; margin-top: 5px; font-style: normal; letter-spacing: .08em; color: rgba(242, 237, 227, .4); }
@media (max-width: 900px) {
  .reels__head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
  .reels__title { font-size: clamp(46px, 13vw, 78px); }
  .reels__rail { grid-template-columns: repeat(3, 74vw); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; margin: 0 calc(var(--pad) * -1); padding-left: var(--pad); padding-right: var(--pad); scrollbar-width: none; }
  .reels__rail::-webkit-scrollbar { display: none; }
  .reel { scroll-snap-align: center; }
  /* the landscape reel stays landscape: a wider card, centred against the tall ones */
  .reels__rail { grid-template-columns: 74vw 88vw 74vw; }
  .reel--wide .reel__frame { aspect-ratio: 16 / 9; }
}

/* ==========================================================================
   Static fallback (reduced motion or no GSAP) + no-JS
   ========================================================================== */
:is(html.static, html:not(.js)) .loader { display: none; }
:is(html.static, html:not(.js)) .show__stage { display: none; }
:is(html.static, html:not(.js)) .show__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 34px 24px; list-style: none; margin: 0; padding: 100px var(--pad); }
:is(html.static, html:not(.js)) .show__list img { width: 100%; height: 240px; object-fit: contain; }
:is(html.static, html:not(.js)) .show__list h3 { margin-top: 12px; font: 400 42px/1 var(--f-display); text-transform: uppercase; }
:is(html.static, html:not(.js)) .show__list p { margin-top: 6px; }
:is(html.static, html:not(.js)) .show__list span { display: inline-block; margin-top: 10px; font: 500 12.5px var(--f-mono); }
:is(html.static, html:not(.js)) .tide__stage { height: auto; }
:is(html.static, html:not(.js)) .tide__content { position: relative; min-height: 100svh; }
/* no JS means no playback and no sound toggle: the posters and the profile link carry it */
:is(html.static, html:not(.js)) .reel__sound { display: none; }
/* no JS means no playback and no sound toggle: the posters and the profile link carry it */
:is(html.static, html:not(.js)) .reel__sound { display: none; }
:is(html.static, html:not(.js)) .reels__rail { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); align-items: start; }
:is(html.static, html:not(.js)) .fly__stage { height: auto; min-height: 0; padding: 140px 0; }
:is(html.static, html:not(.js)) .fly__center { position: relative; }
:is(html.static, html:not(.js)) .fly__imgs, :is(html.static, html:not(.js)) .fly__cap { display: none; }
:is(html.static, html:not(.js)) .kw { --w: 800; }
html.static body.is-loading { overflow: auto; }
html.static .pill { transform: translateX(-50%); opacity: 1; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .manifesto__grid, .manifesto__row, .wreck__grid { grid-template-columns: 1fr; }
  .manifesto__grid { gap: 18px; }
  .notes { grid-template-columns: 1fr; gap: 20px; }
  .visit__grid { grid-template-columns: 1fr 1fr; }
  .visit__card { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .tide__grid { grid-template-columns: 1fr 1fr; }
  .kinetic__dish { width: 44vw; bottom: 12vh; }
  .menu-ov { grid-template-columns: 1fr; align-content: center; }
  .menu-ov__side { display: contents; }
  .menu-ov__porthole { position: absolute; top: clamp(14px, 3vh, 30px); left: var(--pad); width: 104px; }
  .menu-ov__aside { display: none; }
  .menu-ov__info { margin-top: 12px; gap: 16px 20px; font-size: 14px; }
}
@media (max-width: 680px) {
  .topnav { display: none; }
  .brand__word { font-size: 24px; }
  .topbar__burger i { width: 38px; }
  .topbar__burger i + i { width: 24px; }
  .pill { left: 12px; right: 12px; transform: none; justify-content: space-between; }
  .is-loading .pill { transform: translateY(160%); }
  .at-top .pill { transform: translateY(160%); }
  .at-top:has(.menu-ov.is-open) .pill { transform: none; }
  html.static .pill { transform: none; }
  .pill__logo { display: none; }
  .pill__status { border-left: 0; min-width: 0; flex: 1 1 auto; justify-content: center; }
  .pill__status > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
  .stat:nth-child(even) { padding-left: 16px; }
  .ev { grid-template-columns: 1fr; gap: 6px; }
  .visit__grid { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; gap: 26px; }
  .foot__bottom { flex-direction: column; gap: 6px; }
  .tide__grid { gap: 18px 16px; }
  .tide__grid h3 { font-size: 28px; }
  .tide__sub { font-size: 14px; }
  .tide__grid li > p:last-child { display: none; }
  .tide__mark { width: 92vw; right: -34vw; }
  .tide__links { gap: 12px 26px; }
  .kinetic__dish { width: 46vw; top: 150px; bottom: auto; right: -6vw; } /* in the open water above the words, clear of "done right." */
  .fly__cap { bottom: 96px; }
  .show__stage { padding-bottom: 104px; }
  .show__rail { display: none; }
  .show__copy { z-index: 4; }
  .fly__script { font-size: .19em; }
  .kinetic__script { right: 50%; bottom: -.75em; transform: translateX(50%) rotate(-7deg); font-size: .5em; }
}

/* ==========================================================================
   Experiment: "On the board" moved onto the water the tide brings in.
   Undo: delete this block and the .show__sea element, and move the section back above Our fish.
   ========================================================================== */
.show, .show__stage { background: #0c5664; color: var(--bone); }
.show__wall { display: none; }
.show__sea { position: absolute; inset: 0; }
.show__sea video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.show__sea::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 44, 58, .62) 0%, rgba(10, 92, 108, .3) 45%, rgba(6, 44, 58, .72) 100%); }
.show__dish { filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .45)); }
.show__shadow { background: radial-gradient(closest-side, rgba(0, 0, 0, .42), transparent); }
.show__rail { background: rgba(242, 237, 227, .2); }
.show__rail i { background: var(--bone); }
.show__desc { color: rgba(242, 237, 227, .86); }
.show__price { border-color: rgba(242, 237, 227, .42); }
.show .num { color: var(--gold); }
.show .btn--ink { background: var(--bone); color: var(--ink); }

/* ---------- order online: DoorDash + Uber Eats buttons, Instagram icon ---------- */
.order-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.obtn { display: inline-flex; align-items: center; gap: 10px; padding: 7px 18px 7px 7px; border-radius: 999px; color: #fff; font: 500 14.5px/1 var(--f-body, inherit); letter-spacing: 0; text-transform: none; white-space: nowrap; transition: transform .35s var(--out), filter .35s var(--out); }
.obtn b { font-weight: 700; }
.obtn:hover { transform: translateY(-2px); filter: brightness(1.08); color: #fff; }
.obtn--dd { background: #ff3008; }
.obtn--ue { background: #06c167; color: #000; }
.obtn--ue:hover { color: #000; }
.obtn__ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff; flex: none; }
.obtn__ic svg { width: 20px; height: 20px; }
.obtn--dd .obtn__ic svg { fill: #ff3008; }
.obtn--ue .obtn__ic { background: #000; }
.obtn--ue .obtn__ic svg { fill: #06c167; width: 22px; height: 22px; }
/* in the site menu the apps are just their icons, next to Instagram */
.menu-ov__apps { display: flex; gap: 8px; margin-top: 10px; }
.app-ic { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; transition: transform .35s var(--out), filter .3s; }
.app-ic:hover { transform: translateY(-2px); filter: brightness(1.1); }
.app-ic .obtn__ic { width: 36px; height: 36px; }
.app-ic--dd .obtn__ic svg { fill: #ff3008; }
.app-ic--ue .obtn__ic { background: #000; }
.app-ic--ue .obtn__ic svg { fill: #06c167; width: 24px; height: 24px; }
.visit__order { border-top: 1px solid var(--line-d); }
.visit__order .eyebrow { flex-basis: 100%; }
.ig-ic { width: 1em; height: 1em; fill: currentColor; flex: none; }
.ig-link { display: inline-flex; align-items: center; gap: 7px; }
.foot__ig { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; max-width: 100%; font-weight: 600; color: var(--bone); transition: color .3s; }
.foot__ig .ig-ic { width: 40px; height: 40px; padding: 9px; border-radius: 12px; color: #fff; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); transition: transform .35s var(--out); }
.foot__ig span { min-width: 0; overflow-wrap: anywhere; font-size: 14px; line-height: 1.3; }
.foot__ig:hover { color: var(--gold); }
.foot__ig:hover .ig-ic { transform: rotate(-8deg) scale(1.06); }
@media (max-width: 560px) { .obtn { font-size: 13.5px; } }

/* ---------- seam: the board's water darkens into the ink of the gram below ---------- */
.show__sea::after { background: linear-gradient(180deg, rgba(6, 44, 58, .62) 0%, rgba(10, 92, 108, .3) 42%, rgba(6, 44, 58, .7) 78%, var(--ink) 100%); }

/* ---------- the tide wipe between in-page links ---------- */
.wipe { position: fixed; inset: 0; z-index: 190; pointer-events: none; overflow: hidden; visibility: hidden; }
.wipe.is-on { visibility: visible; pointer-events: auto; }
.wipe__panel { position: absolute; left: 0; right: 0; top: 0; height: 100%; background: radial-gradient(90% 70% at 50% 40%, #0f3d52, var(--ink) 75%); will-change: transform; } /* position is GSAP's alone (yPercent), so no CSS transform here */
.wipe__edge { position: absolute; left: 0; width: 100%; height: clamp(50px, 9vh, 90px); fill: #0c2f42; }
.wipe__edge--top { bottom: calc(100% - 1px); }
.wipe__edge--bottom { top: calc(100% - 1px); fill: #07141f; }
.wipe__foam { fill: none; stroke: rgba(242, 237, 227, .55); stroke-width: 2; vector-effect: non-scaling-stroke; }
.wipe__label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 0 var(--pad); text-align: center; color: var(--bone); }
.wipe__n { font: 500 12px/1 var(--f-mono); letter-spacing: .2em; color: var(--gold); }
.wipe__t { padding-top: .1em; overflow: hidden; font: 400 clamp(76px, 12vw, 190px)/.9 var(--f-display); text-transform: uppercase; }
.wipe__t { max-width: 100%; text-wrap: balance; }
.wipe__t .w { display: inline-block; white-space: nowrap; }
.wipe__t .c { display: inline-block; }
.wipe__s { font: 400 clamp(22px, 2.6vw, 38px)/1 var(--f-script); color: var(--gold); transform: rotate(-3deg); }

/* the smallest phones: the pill's status tightens so Call never runs off the edge */
@media (max-width: 400px) {
  .pill { gap: 4px; }
  .pill__status { padding: 0 4px; font-size: 10px; letter-spacing: .08em; }
  .pill__cta { padding-left: 14px; padding-right: 12px; }
}

/* ---------- one-time hint above the sound button ---------- */
.sound-hint { position: absolute; bottom: calc(100% + 14px); left: 0; z-index: 2; display: flex; align-items: center; gap: 2px; padding: 4px 4px 4px 4px; border-radius: 999px; background: var(--bone); color: var(--ink); box-shadow: 0 14px 34px rgba(0, 0, 0, .35); white-space: nowrap; opacity: 0; visibility: hidden; transform: translateY(8px) scale(.96); transform-origin: var(--arrow, 50%) 100%; transition: opacity .35s, transform .5s var(--out), visibility 0s .5s; }
.sound-hint.is-on { opacity: 1; visibility: visible; transform: none; transition: opacity .35s, transform .6s var(--out); animation: hint-bob 2.4s var(--io) .8s 3; }
@keyframes hint-bob { 50% { transform: translateY(-4px); } }
.sound-hint__play { padding: 9px 6px 9px 14px; font: 500 13.5px/1 var(--f-body); color: inherit; }
.sound-hint__play b { font-weight: 700; }
.sound-hint__play:hover b { text-decoration: underline; text-underline-offset: 3px; }
.sound-hint__x { position: relative; width: 28px; height: 28px; border-radius: 50%; flex: none; }
.sound-hint__x:hover { background: rgba(7, 20, 31, .08); }
.sound-hint__x i { position: absolute; left: 50%; top: 50%; width: 11px; height: 1.6px; margin: -.8px 0 0 -5.5px; background: currentColor; transform: rotate(45deg); }
.sound-hint__x i + i { transform: rotate(-45deg); }
.sound-hint__arrow { position: absolute; top: 100%; left: var(--arrow, 50%); width: 0; height: 0; margin-left: -7px; border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 8px solid var(--bone); }
/* while the hint is up, the button's bars dance so the eye finds it */
.eq.is-hinting { color: var(--gold); border-color: var(--gold); }
.eq.is-hinting span { animation: eq 1.2s var(--io) infinite alternate; }
.eq.is-hinting span:nth-child(2) { animation-delay: -.4s; } .eq.is-hinting span:nth-child(3) { animation-delay: -.9s; } .eq.is-hinting span:nth-child(4) { animation-delay: -.2s; }
@media (prefers-reduced-motion: reduce) { .sound-hint.is-on { animation: none; } }
