/* ======================================================================
   markingyour.website — Round 1
   Palette: warm cream + warm ink + amber. Type: Fraunces + Space Mono.
   Motion: settled attention — slow, eased, never bouncing.
   ====================================================================== */

/* self-hosted fonts — no third-party requests (latin subset) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/space-mono.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/space-mono-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-mono-700.woff2') format('woff2');
}

:root {
  --cream:        #F3EBDC;
  --cream-warm:   #ECE0C9;
  --cream-deep:   #E4D6BB;
  --ink:          #1B1714;
  --ink-soft:     #4A3F34;
  --ink-faint:    #8A7C68;
  --amber:        #CC6B36;
  --amber-glow:   #E2933F;
  --umber:        #2A211B;
  --umber-deep:   #1C1611;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono:    'Space Mono', 'Courier New', monospace;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --slow:  0.8s;
  --med:   0.5s;

  --pad:   clamp(1.5rem, 5vw, 6rem);
  --maxw:  1120px;
}

/* ----------------------------- reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 380;
  font-optical-sizing: auto;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, canvas, iframe { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: italic; }

/* hidden attribute must win over component display rules */
[hidden] { display: none !important; }

::selection { background: var(--amber); color: var(--cream); }

/* --------------------- the mark: ink trail canvases ------------------- */
#ink-record, #ink-live {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#ink-record { z-index: 6; opacity: 0.85; }
#ink-live   { z-index: 7; }

/* ------------------------------ header -------------------------------- */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 2.5vw, 1.8rem) var(--pad);
  mix-blend-mode: normal;
}

.wordmark {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--med) var(--ease);
}
.wordmark-mark { color: var(--amber); }
.wordmark-rest { opacity: 0.65; }

.nav-toggle {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  border-radius: 50%;
  transition: background var(--med) var(--ease);
}
.nav-toggle span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ink);
  transition: transform var(--med) var(--ease), background var(--med) var(--ease);
}
.nav-toggle:hover { background: rgba(204,107,54,0.12); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) scale(1.1); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: scale(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) scale(1.1); }

/* header colour adapts over dark sections */
body.head-light .wordmark        { color: var(--cream); }
body.head-light .nav-toggle span { background: var(--cream); }

/* ------------------------------ nav panel ----------------------------- */
.nav-panel {
  position: fixed;
  top: 0; right: 0;
  z-index: 45;
  width: min(380px, 86vw);
  height: 100%;
  background: var(--umber);
  color: var(--cream);
  padding: clamp(5rem, 12vh, 8rem) clamp(2rem, 5vw, 3.5rem) 2.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease);
  visibility: hidden;
}
.nav-panel.open { transform: translateX(0); visibility: visible; }

.nav-note, .nav-foot {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--amber-glow);
}
.nav-foot { margin-top: auto; color: rgba(243,235,220,0.45); }

.nav-panel ul { list-style: none; margin: 1.6rem 0; }
.nav-panel li { overflow: hidden; }
.nav-panel a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-decoration: none;
  color: var(--cream);
  transition: color var(--med) var(--ease), transform var(--med) var(--ease);
}
.nav-panel a em {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-style: normal;
  color: var(--amber);
}
.nav-panel a:hover { color: var(--amber-glow); transform: translateX(8px); }

.nav-scrim {
  position: fixed; inset: 0;
  z-index: 44;
  background: rgba(27,23,20,0.45);
  opacity: 0; visibility: hidden;
  transition: opacity var(--med) var(--ease);
}
.nav-scrim.open { opacity: 1; visibility: visible; }

/* ------------------------------ sections ------------------------------ */
.section {
  position: relative;
  z-index: 3;
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow span { color: var(--ink-faint); margin-right: 0.2em; }

.section-head {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 0.8rem;
}
.section-head em { color: var(--amber); }

.section-caption {
  font-family: var(--font-mono);
  font-size: clamp(0.82rem, 1.4vw, 0.96rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 38ch;
  margin-top: 2.5rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--amber);
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =================== 01 · WHO ========================================= */
.section-who {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.who-inner { max-width: var(--maxw); margin: 0 auto; width: 100%; }
.who-head {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(2.7rem, 8.2vw, 6.6rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin: 1.4rem 0 1.6rem;
  max-width: 16ch;
}
.who-head em { display: block; color: var(--amber); font-size: 0.82em; }
.who-sub {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.who-sub::before { content: "— "; color: var(--amber); }

.scroll-cue {
  position: absolute;
  bottom: clamp(1.6rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
}
.scroll-cue span:first-child {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-cue-line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--amber), transparent);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0%   { transform: scaleY(0); transform-origin: top; }
  40%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =================== 02 · WHAT ======================================== */
.section-what {
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.what-head-block, .where-head-block, .how-head-block { max-width: var(--maxw); width: 100%; margin: 0 auto; }

.workbench-stage {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  height: clamp(340px, 56vh, 560px);
  margin: 1.5rem auto 0;
}
#workbench-canvas { width: 100%; height: 100%; cursor: crosshair; }

.workbench-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.workbench-fallback ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  width: 100%;
}
.workbench-fallback li {
  border: 1px solid var(--cream-deep);
  border-radius: 10px;
  padding: 1.4rem 1rem;
  text-align: center;
  background: rgba(255,255,255,0.35);
  transition: border-color var(--med) var(--ease), transform var(--med) var(--ease);
}
.workbench-fallback li:hover { border-color: var(--amber); transform: translateY(-4px); }
.workbench-fallback strong { display: block; font-size: 1.15rem; }
.workbench-fallback span {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--amber);
}

.tool-phrase {
  min-height: 2.4em;
  margin-top: 1.4rem;
  text-align: center;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  max-width: 30ch;
}
.tool-phrase .tool-phrase-default {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.tool-phrase b { color: var(--amber); font-weight: 400; font-style: normal; }

/* =================== 03 · WHERE ======================================= */
.section-where {
  background: var(--cream);
  padding: 0;
  height: 380vh;            /* scroll length that drives the horizontal slide */
}
.showcase-track {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.where-head-block {
  position: absolute;
  top: clamp(4.5rem, 14vh, 8rem);
  left: var(--pad);
  z-index: 4;
  pointer-events: none;
}
.showcase-strip {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 0 var(--pad);
  padding-left: max(var(--pad), 6vw);
  will-change: transform;
}
.project {
  flex: 0 0 clamp(280px, 42vw, 460px);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.project-frame {
  border-radius: 14px;
  overflow: hidden;
  background: var(--umber);
  box-shadow: 0 24px 50px -28px rgba(27,23,20,0.55);
  transition: transform var(--slow) var(--ease), box-shadow var(--slow) var(--ease);
}
.project:hover .project-frame { transform: translateY(-10px); box-shadow: 0 34px 60px -28px rgba(27,23,20,0.6); }
.project-frame--blank { background: var(--cream-deep); box-shadow: none; border: 1.5px dashed var(--ink-faint); }

.project-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0.6rem 0.9rem;
  background: rgba(0,0,0,0.22);
}
.project-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(243,235,220,0.4); }
.project-bar b {
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  color: rgba(243,235,220,0.6);
}
.project-frame--blank .project-bar { background: rgba(27,23,20,0.06); }
.project-frame--blank .project-bar span { background: var(--ink-faint); opacity: 0.5; }
.project-frame--blank .project-bar b { color: var(--ink-faint); }

.project-view {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--umber-deep);
}
.project-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(150deg, var(--umber), var(--umber-deep));
  color: var(--cream);
}
.project-frame--blank .project-poster { background: var(--cream-deep); color: var(--ink-soft); }
.project-glyph {
  font-size: 2.8rem; color: var(--amber-glow); line-height: 1;
  transition: transform var(--slow) var(--ease);
}
.project.in-frame .project-glyph { transform: rotate(-8deg) scale(1.12); }
.project-frame--blank .project-glyph { color: var(--amber); }
.project-poster p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.project-poster small {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--amber-glow);
  text-transform: uppercase; letter-spacing: 0.14em;
}

.project-meta h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
}
.project-meta p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}
.project-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--med) var(--ease);
}
.project-link:hover { border-color: var(--amber); }

/* the card nearest the centre of the wall is emphasised */
.project { transition: transform var(--slow) var(--ease); }
.project.in-frame { transform: scale(1.035); }
.project.in-frame .project-frame { box-shadow: 0 38px 66px -26px rgba(27,23,20,0.62); }
.project.in-frame .project-poster small { color: var(--amber-glow); }

.showcase-hint {
  position: absolute;
  bottom: clamp(1.5rem, 5vh, 3rem);
  left: var(--pad);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  z-index: 4;
}

/* =================== 04 · HOW ========================================= */
.section-how {
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-lede {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 1.2rem;
  max-width: 42ch;
}

.intake {
  width: 100%;
  max-width: 720px;
  margin: 2.8rem auto 0;
}
.intake-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.intake-progress i {
  flex: 1;
  height: 3px;
  background: var(--cream-deep);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.intake-progress i::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--slow) var(--ease);
}
.intake-progress i.done::after  { transform: scaleX(1); }
.intake-progress i.active::after { transform: scaleX(0.5); }

.intake-stage { position: relative; min-height: 340px; }

.intake-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--med) var(--ease), transform var(--med) var(--ease);
  pointer-events: none;
}
.intake-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.intake-qnum {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}
.intake-q {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1.2rem;
}
.intake-answer-row {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
}
.intake-input {
  flex: 1;
  background: rgba(255,255,255,0.55);
  border: 1.5px solid var(--cream-deep);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  resize: none;
  min-height: 96px;
  transition: border-color var(--med) var(--ease);
}
.intake-input:focus { outline: none; border-color: var(--amber); }
.intake-input::placeholder { color: var(--ink-faint); }

.hold-mic {
  flex: 0 0 88px;
  border: 1.5px solid var(--cream-deep);
  border-radius: 10px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  user-select: none;
  -webkit-user-select: none;
  transition: border-color var(--med) var(--ease), background var(--med) var(--ease), color var(--med) var(--ease);
}
.hold-mic-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--amber);
  transition: transform var(--med) var(--ease);
}
.hold-mic.recording {
  border-color: var(--amber);
  background: rgba(204,107,54,0.12);
  color: var(--amber);
}
.hold-mic.recording .hold-mic-dot { animation: pulse 1s var(--ease) infinite; }
@keyframes pulse { 50% { transform: scale(1.5); opacity: 0.6; } }

.intake-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}
.intake-hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.intake-next {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--med) var(--ease), transform var(--med) var(--ease);
}
.intake-next:hover { background: var(--amber); transform: translateY(-2px); }
.intake-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.intake-done { text-align: center; }
.intake-done-head {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
}
.intake-done-sub {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* booking / drag-paint calendar */
.booking {
  width: 100%;
  max-width: 720px;
  margin: 2.4rem auto 0;
}
.booking-instruction {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 1.4rem;
}
.booking-instruction em { color: var(--amber); font-style: normal; }

.calendar {
  display: grid;
  gap: 3px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.cal-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.cal-hour { justify-content: flex-end; padding-right: 6px; }
.cal-cell {
  aspect-ratio: 1 / 1;
  min-height: 16px;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--cream-deep);
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.12s linear, transform 0.12s var(--ease);
}
.cal-cell.on {
  background: var(--amber);
  border-color: var(--amber);
}
.cal-cell.on.edge { background: var(--amber-glow); }

.booking-send {
  display: block;
  margin: 1.6rem auto 0;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--med) var(--ease), transform var(--med) var(--ease);
}
.booking-send:hover { background: var(--amber); transform: translateY(-2px); }
.booking-status {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--amber);
  margin-top: 1rem;
  min-height: 1.5em;
}

/* =================== 05 · WHY ========================================= */
.section-why {
  background: linear-gradient(165deg, var(--umber), var(--umber-deep));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
}
.why-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.section-why .eyebrow span { color: rgba(243,235,220,0.4); }
.why-head { color: var(--cream); }
.why-head em { color: var(--amber-glow); }

.signature-stage {
  margin: 2.5rem auto;
  width: min(560px, 84vw);
}
.signature-svg { width: 100%; height: auto; overflow: visible; }
.signature-svg path {
  fill: none;
  stroke: var(--amber-glow);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-caption {
  color: rgba(243,235,220,0.7);
  border-left-color: var(--amber-glow);
  margin: 2rem auto;
  text-align: left;
}
.why-contact {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
  transition: color var(--med) var(--ease);
}
.why-contact:hover { color: var(--amber-glow); }

.site-foot {
  max-width: var(--maxw);
  margin: clamp(3.5rem, 9vh, 7rem) auto 0;
  width: 100%;
  text-align: center;
}
.foot-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.3rem);
}
.foot-small {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  color: rgba(243,235,220,0.4);
  margin-top: 0.6rem;
}

/* ------------------------------ noscript ------------------------------ */
.noscript {
  position: relative; z-index: 60;
  margin: 6rem auto;
  max-width: 50ch;
  padding: 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.7;
  border: 1.5px solid var(--amber);
  border-radius: 12px;
}

/* ------------------------------ responsive ---------------------------- */
@media (max-width: 720px) {
  .who-head em { font-size: 0.92em; }
  .section-caption { margin-left: 0; }

  /* showcase falls back to a normal swipe strip on small screens */
  .section-where { height: auto; padding: clamp(5rem,12vh,9rem) 0; }
  .showcase-track {
    position: static;
    height: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-top: 7rem;
  }
  .where-head-block { position: static; padding: 0 var(--pad); margin-bottom: 1.5rem; }
  .showcase-strip { will-change: auto; }
  .project { scroll-snap-align: center; flex-basis: 80vw; }
  .showcase-hint { position: static; padding: 1rem var(--pad) 0; }

  .intake-stage { min-height: 460px; }
  .intake-answer-row { flex-direction: column; }
  .hold-mic { flex-basis: auto; flex-direction: row; padding: 0.7rem; }
}

/* ------------------------- reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
