/* ==========================================================================
   Sunpeak Digital flagship stylesheet
   Brand tokens live in :root. Retint the whole site from this block.
   Mapping per the 2026-06-13 rebrand: teal = brand fills, slate = text and
   dark sections, amber = CTA only (dark slate text on amber), light = tints.
   ========================================================================== */

:root {
  /* Palette */
  --teal: #7DCDCD;
  --teal-deep: #57AFAF;
  --teal-dark: #3E8E8E;
  --teal-tint: #E9F7F7;
  --amber: #FFA101;
  --amber-bright: #FFBC4A;
  --amber-dark: #D98800;
  --amber-deep: #8A5800;      /* readable amber-family text on light */
  --slate: #31525B;
  --slate-dark: #1E3238;
  --slate-deeper: #16262B;
  --light: #EEEEEE;
  --white: #FFFFFF;

  /* Semantic */
  --ink: var(--slate);
  --ink-soft: #4A6971;
  --bg: var(--white);
  --cta: var(--amber);
  --cta-ink: var(--slate-dark);

  /* Type */
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --size-hero: clamp(2.6rem, 7.2vw, 5.6rem);
  --size-h2: clamp(1.9rem, 4.2vw, 3.4rem);
  --size-h3: clamp(1.15rem, 1.8vw, 1.45rem);
  --size-body: clamp(1rem, 1.15vw, 1.125rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.55s;

  /* Layout */
  --max-w: 1200px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 11vw, 9.5rem);
  --radius: 18px;
  --shadow-soft: 0 10px 40px rgba(49, 82, 91, 0.10);
  --shadow-lift: 0 22px 60px rgba(49, 82, 91, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding: 0; }
button { font: inherit; }

::selection { background: var(--teal); color: var(--slate-dark); }

/* ---------- Type ---------- */
h1, h2, h3, .price-num { font-family: var(--font-display); color: var(--ink); }
h1 { font-size: var(--size-hero); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: var(--size-h2); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: var(--size-h3); font-weight: 700; line-height: 1.25; }

.kicker {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 1.1rem;
}
.kicker-light { color: var(--amber-bright); }

.section-head {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.section-sub {
  margin-top: 1.25rem;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  color: var(--ink-soft);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.85em 1.9em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out),
              background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn-lg { font-size: 1.05rem; padding: 1em 2.3em; }
.btn-block { display: block; text-align: center; }
.btn-primary {
  background: var(--cta);
  color: var(--cta-ink);
  box-shadow: 0 6px 24px rgba(255, 161, 1, 0.35);
}
.btn-primary:hover { background: var(--amber-bright); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 161, 1, 0.45); }
.btn-ghost { border-color: var(--slate); color: var(--slate); background: transparent; }
.btn-ghost:hover { background: var(--slate); color: var(--white); transform: translateY(-2px); }
.founder .btn-ghost, .work .btn-ghost { border-color: var(--white); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--slate-dark); color: var(--white);
  padding: 0.7em 1.2em; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(49, 82, 91, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-nav.is-scrolled { box-shadow: 0 4px 24px rgba(49, 82, 91, 0.08); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.8rem var(--pad-x);
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.08rem; color: var(--slate); }
.nav-inner nav { margin-left: auto; }
.nav-links { display: flex; gap: 1.7rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 500; font-size: 0.94rem; color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--slate-dark); }
.nav-login a { color: var(--teal-dark); font-weight: 600; }
.nav-cta { white-space: nowrap; }
.nav-toggle { display: none; }

.mobile-menu { border-top: 1px solid rgba(49, 82, 91, 0.08); background: var(--white); }
.mobile-menu ul { list-style: none; padding: 1rem var(--pad-x) 1.5rem; display: grid; gap: 0.9rem; }
.mobile-menu a { text-decoration: none; font-weight: 600; color: var(--slate); }

@media (max-width: 900px) {
  .nav-inner nav, .nav-cta { display: none; }
  .nav-toggle {
    display: grid; gap: 6px; margin-left: auto;
    background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .nav-toggle span { width: 26px; height: 2.5px; background: var(--slate); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.2px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.2px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: clip;
  background: linear-gradient(180deg, #F4FBFB 0%, var(--teal-tint) 55%, #FDF6E9 100%);
}
.hero-visual { position: absolute; inset: 0; }
.hero-fallback { width: 100%; height: 100%; opacity: 0.5; }
#hero-canvas-mount, #hero-canvas-mount canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 7rem var(--pad-x) 5rem;
  max-width: 900px;
}
.hero-headline .line { display: block; }
.hero-headline .line-accent { color: var(--teal-dark); }
.hero-sub {
  margin: 1.6rem auto 0;
  max-width: 620px;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: var(--ink-soft);
}
.hero-ctas { margin-top: 2.4rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 28px; height: 46px;
  border: 2px solid var(--slate); border-radius: 999px;
  display: grid; justify-content: center; padding-top: 8px;
  opacity: 0.55; transition: opacity 0.25s ease;
}
.scroll-hint:hover { opacity: 1; }
.scroll-hint-line { width: 3px; height: 10px; border-radius: 2px; background: var(--slate); animation: hint 1.8s var(--ease-inout) infinite; }
@keyframes hint { 0%, 100% { transform: translateY(0); opacity: 1; } 55% { transform: translateY(12px); opacity: 0.2; } }

/* ---------- Pillars ---------- */
.pillars { padding: var(--section-y) 0; background: var(--white); }
.pillar-grid {
  max-width: var(--max-w);
  margin: 3.5rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(49, 82, 91, 0.10);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), border-color 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--teal);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal);
  color: var(--slate-dark);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar-card h3 { margin-bottom: 0.6rem; }
.pillar-card p { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 980px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ---------- Work (deep slate, horizontal on desktop) ---------- */
.work {
  padding: var(--section-y) 0;
  background: linear-gradient(160deg, var(--slate) 0%, var(--slate-dark) 70%, var(--slate-deeper) 100%);
}
.work h2, .work .section-sub { color: var(--white); }
.work .section-sub { color: rgba(255, 255, 255, 0.75); }
.work-track-wrap { margin-top: 3.5rem; overflow: hidden; }
.work-track {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  padding: 0.5rem var(--pad-x) 2rem;
  width: max-content;
}
.work-card {
  width: clamp(280px, 30vw, 400px);
  flex: none;
}
.work-card a {
  display: block;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.4rem;
  position: relative;
  transition: transform var(--dur) var(--ease-out), border-color 0.3s ease, background-color 0.3s ease, box-shadow var(--dur) var(--ease-out);
}
.work-card a:hover {
  transform: translateY(-8px);
  border-color: var(--teal);
  background: rgba(125, 205, 205, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.work-art { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 8 / 5; background: var(--slate-deeper); }
.work-art img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 1.2s var(--ease-out); }
.work-card a:hover .work-art img { transform: scale(1.05); }
.work-name { display: block; margin-top: 1rem; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 1.05rem; }
.work-domain { display: block; margin-top: 0.15rem; font-size: 0.85rem; color: var(--teal); }
.work-visit {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}
.work-card a:hover .work-visit { color: var(--amber-bright); }
.award-badge {
  position: absolute; top: 1.35rem; left: 1.35rem; z-index: 2;
  background: var(--amber);
  color: var(--slate-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.42em 0.9em; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

/* Mobile and reduced motion: plain vertical grid, no pin */
@media (max-width: 900px) {
  .work-track { width: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .work-card { width: auto; }
}

/* ---------- Process ---------- */
.process { padding: var(--section-y) 0; background: var(--light); }
.process-track {
  position: relative;
  max-width: 760px;
  margin: 3.5rem auto 0;
  padding: 0 var(--pad-x);
}
.process-path {
  position: absolute; top: 0.6rem; bottom: 0.6rem; left: calc(var(--pad-x) + 27px);
  width: 3px; border-radius: 2px;
  background: rgba(49, 82, 91, 0.15);
  overflow: hidden;
}
.process-path-fill {
  display: block; width: 100%; height: 100%;
  background: var(--teal-dark);
  transform-origin: top;
  transform: scaleY(var(--path-progress, 1));
}
.process-steps { list-style: none; display: grid; gap: 3rem; }
.process-step { display: flex; gap: 1.8rem; align-items: flex-start; position: relative; }
.step-num {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--slate-dark);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center;
  border: 4px solid var(--light);
  position: relative; z-index: 1;
}
.step-time {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--amber-deep);
  background: rgba(255, 161, 1, 0.14);
  padding: 0.25em 0.8em; border-radius: 999px;
  vertical-align: middle;
}
.step-body p { margin-top: 0.5rem; color: var(--ink-soft); max-width: 52ch; }

/* ---------- Proof ---------- */
.proof { padding: var(--section-y) 0; background: var(--white); }
.award-feature {
  max-width: 880px;
  margin: 3.5rem auto 0;
  padding: clamp(1.8rem, 4vw, 3rem);
  margin-left: auto; margin-right: auto;
  display: flex; gap: 2.2rem; align-items: center;
  background: linear-gradient(140deg, var(--teal-tint), #FFF8EC);
  border: 1px solid rgba(49, 82, 91, 0.08);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
}
.award-medal { flex: none; width: clamp(90px, 12vw, 130px); }
.award-copy h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.award-copy p { margin-top: 0.7rem; color: var(--ink-soft); }
.award-press { font-size: 0.95rem; }
.award-press a { color: var(--teal-dark); font-weight: 600; }
@media (max-width: 640px) {
  .award-feature { flex-direction: column; text-align: center; margin-left: var(--pad-x); margin-right: var(--pad-x); }
}
@media (min-width: 641px) and (max-width: 980px) {
  .award-feature { margin-left: var(--pad-x); margin-right: var(--pad-x); }
}

.stat-band {
  max-width: var(--max-w);
  margin: 4rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat dd {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--slate);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat dt { margin-top: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 720px) { .stat-band { grid-template-columns: repeat(2, 1fr); row-gap: 2.5rem; } }

/* ---------- Pricing ---------- */
.pricing { padding: var(--section-y) 0; background: var(--light); }
.pricing-grid {
  max-width: 940px;
  margin: 3.5rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1.8rem;
  align-items: start;
}
.price-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.4rem 2.2rem;
  border: 1px solid rgba(49, 82, 91, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.price-card.is-featured { border: 2px solid var(--teal); }
.featured-tag {
  position: absolute; top: -0.95rem; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: var(--slate-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4em 1.2em; border-radius: 999px;
  white-space: nowrap;
}
.price { margin: 1rem 0 1.6rem; display: flex; align-items: baseline; gap: 0.3rem; }
.price-num { font-size: clamp(2.6rem, 4.5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
.price-per { color: var(--ink-soft); font-weight: 500; }
.price-features { list-style: none; display: grid; gap: 0.75rem; margin-bottom: 2rem; }
.price-features li { padding-left: 1.7rem; position: relative; color: var(--ink-soft); font-size: 0.97rem; }
.price-features li::before {
  content: "";
  position: absolute; left: 0; top: 0.42em;
  width: 0.95em; height: 0.55em;
  border-left: 2.5px solid var(--teal-dark);
  border-bottom: 2.5px solid var(--teal-dark);
  transform: rotate(-45deg);
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; max-width: 520px; } }

/* ---------- Founder (deep slate) ---------- */
.founder {
  padding: var(--section-y) 0;
  background:
    radial-gradient(1100px 500px at 85% 0%, rgba(125, 205, 205, 0.12), transparent 60%),
    linear-gradient(180deg, var(--slate-dark), var(--slate));
}
.founder-inner { max-width: 760px; margin: 0 auto; padding: 0 var(--pad-x); }
.founder h2 { color: var(--white); }
.founder-copy { margin-top: 2rem; display: grid; gap: 1.4rem; }
.founder-copy p { color: rgba(255, 255, 255, 0.82); font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.8; }
.founder-copy a { color: var(--teal); font-weight: 600; }
.founder-dogs { font-style: italic; color: rgba(255, 255, 255, 0.6) !important; font-size: 1rem !important; }

/* ---------- Book ---------- */
.book { padding: var(--section-y) 0; background: linear-gradient(180deg, var(--white), var(--teal-tint)); }
.book .section-head h2 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
.booking-embed { max-width: 900px; margin: 3rem auto 0; padding: 0 var(--pad-x); }
.booking-placeholder {
  display: grid; place-items: center;
  min-height: 220px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px dashed rgba(49, 82, 91, 0.25);
}
.booking-embed iframe { width: 100%; border: 0; border-radius: var(--radius); background: var(--white); }
.book-contact {
  margin-top: 2rem; text-align: center;
  display: flex; gap: 0.9rem; justify-content: center; align-items: center; flex-wrap: wrap;
  color: var(--ink-soft);
}
.book-contact a { color: var(--slate); font-weight: 600; text-decoration: none; }
.book-contact a:hover { color: var(--teal-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-dark); color: rgba(255, 255, 255, 0.75); padding: 4.5rem 0 2rem; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 800; color: var(--white); font-size: 1.05rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; margin-bottom: 0.6rem; }
.footer-reassure { color: var(--teal); font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 0.7rem; }
.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 0.95rem; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--white); }
.footer-legal { text-align: center; margin-top: 3.5rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); padding: 0 var(--pad-x); }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; } }

/* ---------- Booking modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 150;
  display: grid; place-items: center;
  background: rgba(22, 38, 43, 0.62);
  padding: 1.2rem;
}
.modal[hidden] { display: none; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  width: min(680px, 100%);
  max-height: min(760px, 92svh);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}
.modal-content { height: 100%; overflow: hidden; }
.modal-content iframe { width: 100%; height: min(700px, 84svh); border: 0; display: block; }
.modal-close {
  position: absolute; top: 0.6rem; right: 0.6rem; z-index: 2;
  width: 42px; height: 42px;
  border: 0; border-radius: 50%;
  background: var(--light); color: var(--slate);
  font-size: 1.5rem; line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s var(--ease-out);
}
.modal-close:hover { background: var(--teal); transform: rotate(90deg); }

/* ---------- Custom cursor (desktop, fine pointer only) ---------- */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(125, 205, 205, 0.85);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), background-color 0.25s ease, opacity 0.3s ease;
  mix-blend-mode: multiply;
  opacity: 0;
}
.cursor-dot.is-active { opacity: 1; }
.cursor-dot.is-hover { width: 44px; height: 44px; background: rgba(125, 205, 205, 0.35); }

/* ---------- 404 ---------- */
.page-404 { display: grid; min-height: 100svh; place-items: center; background: var(--teal-tint); }
.notfound { text-align: center; padding: 2rem var(--pad-x); max-width: 560px; }
.notfound h1 { margin-bottom: 1rem; }
.notfound p { color: var(--ink-soft); margin-bottom: 2rem; }

/* ---------- Reveal initial states (JS + motion allowed only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(34px); }
  html.js .hero-headline .line,
  html.js .hero-sub,
  html.js .hero-ctas { opacity: 0; }
}

/* ---------- Reduced motion: kill it all ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-hint-line { animation: none; }
  .cursor-dot { display: none; }
  .work-track { width: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .work-card { width: auto; }
}
