/* ==========================================================================
   Halfnorth  |  Utility identity
   Palette: near-black #192125, rust #C85B32, warm grey #C9C2B4
   ========================================================================== */

:root {
  --ink: #192125;
  --ink-2: #232C31;
  --ink-3: #2C363C;
  --rust: #C85B32;
  --rust-2: #E07A50;
  --grey: #C9C2B4;
  --grey-2: rgba(201, 194, 180, 0.55);
  --line: rgba(201, 194, 180, 0.2);
  --paper: #F3F0EA;
  --muted: #4A5257;

  --display: 'Barlow Condensed', 'Arial Narrow', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', Menlo, Consolas, 'Courier New', monospace;

  --gutter: clamp(20px, 4.5vw, 64px);
  --nav-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--rust-2); }

button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Typography ------------------------------------------------------------ */

.display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin: 0;
  text-wrap: balance;
}

.mono {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  line-height: 1.4;
}

.t-hero    { font-size: clamp(56px, 9.2vw, 132px); }
.t-1       { font-size: clamp(48px, 7.4vw, 104px); }
.t-2       { font-size: clamp(40px, 6.2vw, 88px); }
.t-3       { font-size: clamp(32px, 4.6vw, 64px); }
.t-4       { font-size: clamp(28px, 3vw, 40px); }
.t-5       { font-size: clamp(22px, 2.2vw, 30px); }

.lede { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.45; text-wrap: pretty; }
.copy { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.55; text-wrap: pretty; }

.paper { background: var(--paper); color: var(--ink); }
.paper .copy, .paper .lede { color: var(--muted); }
.ink { background: var(--ink); color: var(--paper); }
.ink .copy, .ink .lede { color: var(--grey); }

.placeholder {
  outline: 1px dashed currentColor;
  outline-offset: 3px;
  opacity: 0.85;
}

/* Layout helpers -------------------------------------------------------- */

.container { padding-inline: var(--gutter); width: 100%; }
.section { padding-block: clamp(72px, 9vw, 128px); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 48px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

.stack { display: flex; flex-direction: column; }

.cta-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--rust); transition: gap 0.25s var(--ease);
}
.cta-link:hover { gap: 16px; color: var(--rust); }
.cta-link svg { flex: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 24px; min-height: 48px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-rust { background: var(--rust); color: var(--paper); }
.btn-rust:hover { background: var(--rust-2); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-paper:hover { background: #fff; color: var(--ink); }

.wordmark {
  display: inline-flex; flex-direction: column; gap: 3px; color: currentColor;
}
.wordmark .rule-top { height: 4px; background: currentColor; transform-origin: left; }
.wordmark .rule-bottom { height: 1px; background: currentColor; transform-origin: left; }
.wordmark .word { font-size: 24px; letter-spacing: 0.08em; }

/* Nav ------------------------------------------------------------------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gutter);
  color: var(--paper);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.nav.is-scrolled, .nav.is-solid {
  background: rgba(25, 33, 37, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { color: var(--grey); transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rust); }
.nav-cta { display: inline-flex; }
.nav-toggle {
  display: none; width: 48px; height: 48px; align-items: center; justify-content: center;
  margin-right: -10px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: currentColor; position: relative;
  transition: transform 0.3s var(--ease), background-color 0.3s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: currentColor;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after { top: 8px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.nav-menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 40px;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
}
.nav-open .nav-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.nav-menu a { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(44px, 12vw, 72px); line-height: 1; }
.nav-menu a[aria-current="page"] { color: var(--rust); }
.nav-menu .nav-menu-foot { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; color: var(--grey); }
.nav-menu .nav-menu-foot a { font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: 0.14em; line-height: 1.4; }
body.nav-open { overflow: hidden; }

/* Reveal system --------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="wipe"]  { opacity: 1; transform: none; position: relative; overflow: hidden; }
[data-reveal="wipe"]::after { content: ""; position: absolute; inset: 0; background: var(--ink); transform-origin: right center; transition: transform 1.1s var(--ease); pointer-events: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="wipe"].is-visible::after { transform: scaleX(0); }

/* Hero ------------------------------------------------------------------ */

.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 40px; align-items: center;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 64px;
}
.hero-glow {
  position: absolute; right: -10vw; top: 10vh; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(200, 91, 50, 0.34) 0%, rgba(200, 91, 50, 0) 66%);
}
.hero-copy { position: relative; display: flex; flex-direction: column; gap: clamp(20px, 2.6vw, 32px); z-index: 1; }
.hero-eyebrow { color: var(--rust); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; }
.hero-title .rust { color: var(--rust); }
.hero-lede { max-width: 560px; color: var(--grey); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; z-index: 1; }
.hero-can { width: clamp(220px, 26vw, 360px); height: auto; will-change: transform; }

/* on-load choreography (hidden states only apply once JS is confirmed running) */
.js .nav .wordmark-anim .rule-top, .js .nav .wordmark-anim .rule-bottom { transform: scaleX(0); }
.js .hero-title .line > span { transform: translateY(110%); }
.js .hero-eyebrow, .js .hero-lede, .js .hero-form, .js .hero-note, .js .hero-can { opacity: 0; }
.js-ready .hero-title .line > span { animation: rise 1.1s var(--ease) both; }
.js-ready .hero-title .line:nth-child(1) > span { animation-delay: 0.15s; }
.js-ready .hero-title .line:nth-child(2) > span { animation-delay: 0.3s; }
.js-ready .hero-eyebrow, .js-ready .hero-lede, .js-ready .hero-form, .js-ready .hero-note { animation: fade-up 1s var(--ease) both; }
.js-ready .hero-eyebrow { animation-delay: 0.05s; }
.js-ready .hero-lede { animation-delay: 0.5s; }
.js-ready .hero-form { animation-delay: 0.62s; }
.js-ready .hero-note { animation-delay: 0.72s; }
.js-ready .hero-can { animation: can-in 1.4s var(--ease) both, float 6s ease-in-out 1.4s infinite; }
.js-ready .nav .rule-top { animation: draw 0.8s var(--ease) 0.1s both; }
.js-ready .nav .rule-bottom { animation: draw 0.8s var(--ease) 0.3s both; }

@keyframes rise { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes can-in { from { opacity: 0; transform: translateY(60px) rotate(-4deg); } to { opacity: 1; transform: none; } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(1.2deg); } }
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spin-once { from { transform: rotate(-180deg) scale(0.6); opacity: 0; } to { transform: none; opacity: 1; } }

/* Forms ----------------------------------------------------------------- */

.form-row { display: flex; gap: 12px; max-width: 560px; }
.form-row .field { flex: 1 1 auto; min-width: 0; }
.field {
  width: 100%; min-height: 52px; padding: 14px 18px;
  background: transparent; border: 1px solid var(--grey); color: var(--paper);
  font: inherit; font-size: 16px; border-radius: 0;
  transition: border-color 0.2s;
}
.field::placeholder { color: var(--grey-2); }
.field:focus { outline: none; border-color: var(--rust); }
.paper .field { border-color: var(--ink); color: var(--ink); }
.paper .field::placeholder { color: rgba(25, 33, 37, 0.5); }
.ink .field { border-color: var(--grey); color: var(--paper); }
.ink .field::placeholder { color: var(--grey-2); }
.ink .field:focus { border-color: var(--rust); }
textarea.field { min-height: 180px; resize: vertical; }
.form-note { color: var(--grey-2); }
.form-status { display: none; padding: 16px 20px; background: var(--rust); color: var(--paper); font-weight: 600; }
.form-status.is-shown { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Story: made when you order it ---------------------------------------- */

.story { position: relative; height: 320vh; }
.story-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-rows: auto minmax(0, 1fr); gap: 24px 40px; align-items: center;
  padding: calc(var(--nav-h) + 24px) var(--gutter) 40px;
}
.story-head { grid-column: 1 / -1; align-self: start; }
.story-captions { position: relative; min-height: 280px; }
.story-caption {
  position: absolute; inset: 0 0 48px 0; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}
.story-caption.is-active { opacity: 1; transform: none; pointer-events: auto; }
.story-caption .num { color: var(--rust); }
.story-caption p { margin: 0; max-width: 460px; }
.story-progress { position: absolute; left: 0; bottom: 0; display: flex; gap: 8px; }
.story-progress span { display: block; width: 44px; height: 3px; background: rgba(25, 33, 37, 0.15); overflow: hidden; }
.story-progress span i { display: block; height: 100%; width: 100%; background: var(--rust); transform: scaleX(0); transform-origin: left; transition: transform 0.2s linear; }
.story-visual { display: flex; justify-content: center; align-items: center; }
.story-can { height: min(56vh, 480px); width: auto; max-width: 100%; }
.story-can .ice-cube { transform: translateY(-360px); transition: transform 0.7s var(--ease); }
.story-can .coffee { transform: scaleY(0); transform-box: fill-box; transform-origin: 50% 100%; transition: transform 0.9s var(--ease); }
.story-can .lid { transform: translateY(-90px); opacity: 0; transition: transform 0.6s var(--ease), opacity 0.4s; }
.story-can .seal { opacity: 0; transform: scale(0.8); transform-box: fill-box; transform-origin: 50% 50%; transition: opacity 0.4s, transform 0.5s var(--ease); }
.story.step-1 .ice-cube { transform: translateY(0); }
.story.step-2 .coffee { transform: scaleY(1); }
.story.step-3 .lid { transform: translateY(0); opacity: 1; }
.story.step-3 .seal { opacity: 1; transform: scale(1); }

/* Drinks ---------------------------------------------------------------- */

.drinks-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: clamp(40px, 5vw, 64px); }
.drinks-head .aside { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; text-align: right; max-width: 380px; }
.drink-card {
  display: flex; flex-direction: column; gap: 20px; padding: 28px 24px;
  background: var(--ink-2); border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.3s;
  transform-style: preserve-3d;
}
.drink-card:hover { border-color: rgba(201, 194, 180, 0.4); }
.drink-card svg { width: 100%; height: auto; max-height: 220px; transition: transform 0.4s var(--ease); }
.drink-card h3 { margin: 0; }
.drink-card p { margin: 0; color: var(--grey); font-size: 15px; }
.drink-card .stack { gap: 10px; }

/* Cart / hours ---------------------------------------------------------- */

.cart-band { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cart-band .rust-panel {
  background: var(--rust); color: var(--ink);
  padding: clamp(64px, 8vw, 112px) var(--gutter);
  display: flex; flex-direction: column; gap: 28px; justify-content: center;
}
.cart-band .rust-panel .display { color: var(--paper); }
.cart-band .rust-panel .cta-link { color: var(--ink); }
.cart-band .hours-panel { background: var(--ink); color: var(--paper); padding: clamp(64px, 8vw, 112px) var(--gutter); display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.hours { display: flex; flex-direction: column; }
.hours-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: 1px solid var(--line); }
.hours-row .day { color: var(--grey); }
.hours-row .time { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.1vw, 30px); line-height: 1; }
.hours-row.late .time { color: var(--rust); }
.hours-row.closed .time { color: var(--grey-2); }
.hours-row.today { position: relative; }
.hours-row.today .day::after { content: "today"; margin-left: 10px; padding: 3px 7px; background: var(--rust); color: var(--paper); font-size: 10px; letter-spacing: 0.12em; }

/* Mission --------------------------------------------------------------- */

.mission { position: relative; height: 220vh; }
.mission-stage {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  text-align: center; padding: var(--nav-h) var(--gutter) 40px;
}
.mission-stage .mark { width: 56px; height: 56px; }
.mission-stage .mark.is-visible { animation: spin-once 1.2s var(--ease) both; }
.mission-title { max-width: 1100px; }
.mission-title .w { display: inline-block; opacity: 0.14; transition: opacity 0.3s linear; margin-right: 0.22em; }
.mission-title .w.on { opacity: 1; }
.mission-stage .copy { max-width: 620px; }

/* Signup + footer ------------------------------------------------------- */

.signup {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center;
  padding: clamp(64px, 8vw, 96px) var(--gutter);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.footer { padding: 56px var(--gutter) 40px; display: flex; flex-direction: column; gap: 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
.footer-grid .stack { gap: 10px; color: var(--grey); font-size: 15px; }
.footer-grid .mono.stack { gap: 14px; }
.footer-grid a:hover { color: var(--rust); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--grey-2); }

/* Page headers (inner pages) ------------------------------------------- */

.page-head { padding: calc(var(--nav-h) + clamp(56px, 8vw, 112px)) var(--gutter) clamp(48px, 6vw, 72px); }
.page-head .eyebrow { color: var(--rust); margin-bottom: 20px; }

/* Menu ------------------------------------------------------------------ */

.menu-rows { padding-inline: var(--gutter); display: flex; flex-direction: column; }
.menu-row {
  display: grid; grid-template-columns: 120px minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: center;
  padding: clamp(32px, 4vw, 48px) 0; border-top: 1px solid var(--ink);
}
.menu-row:first-child { border-top-width: 2px; }
.menu-row:last-child { border-bottom: 2px solid var(--ink); }
.menu-row svg { width: 100px; height: auto; }
.menu-row h2 { margin: 0; }
.menu-row .num { color: var(--rust); }
.menu-row p { margin: 0; }
.menu-row .ingredients { display: flex; flex-direction: column; gap: 8px; }
.menu-row .ingredients .mono { color: var(--muted); }
.menu-row .ingredients p { font-size: 15px; color: var(--ink); }
.menu-extras { padding: clamp(64px, 8vw, 96px) var(--gutter) clamp(72px, 9vw, 112px); }
.extra-card { display: flex; flex-direction: column; gap: 20px; padding: clamp(28px, 3vw, 40px); background: var(--ink); color: var(--paper); }
.extra-card.rust { background: var(--rust); }
.extra-card.rust .mono { color: var(--ink); }
.extra-card .mono { color: var(--rust); }
.extra-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; color: var(--grey); }
.extra-card.rust ul, .extra-card.rust p { color: var(--paper); }
.extra-card p { margin: 0; color: var(--grey); font-size: 16px; }

/* About ----------------------------------------------------------------- */

.mission-hero { padding: calc(var(--nav-h) + clamp(56px, 8vw, 128px)) var(--gutter) clamp(64px, 8vw, 112px); display: flex; flex-direction: column; gap: clamp(28px, 3.5vw, 40px); }
.mission-hero .grid-2 { max-width: 1100px; }
.pillars { padding: clamp(64px, 8vw, 96px) var(--gutter) clamp(72px, 9vw, 112px); display: flex; flex-direction: column; gap: clamp(36px, 5vw, 56px); }
.pillars-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.pillars-head .mono { color: var(--muted); }
.pillar {
  display: grid; grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1.4fr); gap: clamp(20px, 3vw, 40px); align-items: start;
  padding: clamp(28px, 3.5vw, 40px) 0; border-top: 1px solid var(--ink);
}
.pillar:first-child { border-top-width: 2px; }
.pillar:last-child { border-bottom: 2px solid var(--ink); }
.pillar .num { color: var(--rust); }
.pillar h3 { margin: 0; }
.pillar p { margin: 0; max-width: 560px; }
.founder { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 64px); align-items: center; padding: clamp(72px, 9vw, 112px) var(--gutter); }
.founder-photo {
  aspect-ratio: 4 / 5; background: var(--ink-2); border: 1px dashed rgba(201, 194, 180, 0.4);
  display: flex; align-items: center; justify-content: center; color: var(--grey); overflow: hidden;
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy { display: flex; flex-direction: column; gap: 28px; }
.founder-copy p { max-width: 560px; }

/* Find the cart --------------------------------------------------------- */

.locate { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 24px; padding: 0 var(--gutter) clamp(64px, 8vw, 96px); }
.map {
  position: relative; min-height: 520px; background: var(--grey); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.map .map-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.map .pin { position: absolute; left: 50%; top: 34%; width: 64px; height: 80px; transform: translate(-50%, -100%); animation: pin-bob 3s ease-in-out infinite; }
@keyframes pin-bob { 0%, 100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, calc(-100% - 10px)); } }
.map .map-card { position: relative; background: var(--ink); color: var(--paper); padding: 24px 28px; display: flex; flex-direction: column; gap: 8px; align-self: flex-start; max-width: 100%; }
.map .map-card .mono { color: var(--rust); }
.map .map-card small { color: var(--grey); font-size: 15px; }
.hours-card { background: var(--ink); color: var(--paper); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.hours-card .mono.eyebrow { color: var(--rust); }
.hours-card .note { color: var(--grey); font-size: 15px; }
.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(32px, 5vw, 64px); padding: clamp(72px, 9vw, 96px) var(--gutter) clamp(80px, 10vw, 112px); }
.contact-copy { display: flex; flex-direction: column; gap: 28px; }
.contact-copy p { max-width: 440px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; padding-top: 12px; }
.contact-list .mono { color: var(--grey); }
.contact-list .val { font-size: 20px; line-height: 1.4; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

/* Reduced motion -------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  [data-reveal="wipe"]::after { display: none; }
  .js-ready .hero-title .line > span, .js-ready .hero-eyebrow, .js-ready .hero-lede, .js-ready .hero-form, .js-ready .hero-note,
  .js-ready .hero-can, .js-ready .nav .rule-top, .js-ready .nav .rule-bottom, .mission-stage .mark.is-visible, .map .pin { animation: none; }
  .js .nav .wordmark-anim .rule-top, .js .nav .wordmark-anim .rule-bottom { transform: none; }
  .js .hero-title .line > span { transform: none; }
  .js .hero-eyebrow, .js .hero-lede, .js .hero-form, .js .hero-note, .js .hero-can { opacity: 1; }
  .story, .mission { height: auto; }
  .story-stage, .mission-stage { position: static; height: auto; }
  .story-captions { min-height: 0; display: flex; flex-direction: column; gap: 32px; }
  .story-caption { position: static; opacity: 1; transform: none; pointer-events: auto; }
  .story-progress { display: none; }
  .story-can .ice-cube, .story-can .coffee, .story-can .lid, .story-can .seal { transform: none; opacity: 1; transition: none; }
  .mission-title .w { opacity: 1; }
  .drink-card, .drink-card svg, .btn, .cta-link { transition: none; }
}

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-row { grid-template-columns: 90px minmax(0, 1fr); }
  .menu-row svg { width: 76px; }
  .menu-row .ingredients { grid-column: 2; }
  .pillar { grid-template-columns: 80px minmax(0, 1fr); }
  .pillar .num { grid-column: 1; grid-row: 1; }
  .pillar h3 { grid-column: 2; grid-row: 1; }
  .pillar .copy { grid-column: 2; }
}

@media (max-width: 860px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-solid-mobile { background: rgba(25, 33, 37, 0.92); }
  .wordmark .word { font-size: 20px; }

  .hero { grid-template-columns: 1fr; gap: 24px; min-height: auto; padding-bottom: 48px; }
  .hero-visual { order: -1; padding-top: 8px; }
  .hero-can { width: clamp(150px, 38vw, 220px); }
  .hero-glow { right: -30vw; top: -10vh; width: 90vw; height: 90vw; }
  .form-row { flex-direction: column; }

  .story { height: auto; }
  .story-stage { position: static; height: auto; grid-template-columns: 1fr; padding: clamp(64px, 9vw, 96px) var(--gutter); gap: 32px; }
  .story-head { margin-bottom: 8px; }
  .story-captions { min-height: 0; display: flex; flex-direction: column; gap: 28px; }
  .story-caption { position: static; opacity: 1; transform: none; pointer-events: auto; padding-top: 20px; border-top: 3px solid var(--ink); }
  .story-progress { display: none; }
  .story-visual { order: -1; }
  .story-can { width: clamp(150px, 40vw, 220px); }
  .story-can .ice-cube, .story-can .coffee, .story-can .lid, .story-can .seal { transform: none; opacity: 1; }

  .drinks-head { flex-direction: column; align-items: flex-start; }
  .drinks-head .aside { align-items: flex-start; text-align: left; }
  .grid-4 {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px;
    margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .grid-4::-webkit-scrollbar { display: none; }
  .grid-4 > * { flex: 0 0 min(78vw, 320px); scroll-snap-align: start; }

  .cart-band { grid-template-columns: 1fr; }
  .mission { height: auto; }
  .mission-stage { position: static; height: auto; padding: clamp(72px, 10vw, 112px) var(--gutter); }
  .mission-title .w { opacity: 1; }
  .signup { grid-template-columns: 1fr; gap: 28px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .founder, .contact, .locate { grid-template-columns: 1fr; }
  .founder-photo { max-width: 420px; }
  .map { min-height: 380px; }
  .pillars-head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form .two { grid-template-columns: 1fr; }
  .menu-row { grid-template-columns: 1fr; }
  .menu-row .ingredients { grid-column: 1; }
  .pillar { grid-template-columns: 1fr; gap: 12px; }
  .pillar .num, .pillar h3, .pillar .copy { grid-column: 1; grid-row: auto; }
  .hours-row .time { font-size: 20px; }
  .map { padding: 20px; }
  .drinks-head .aside { max-width: none; }
}
