/* ───────────────────────────────────────────────
   TOKENS
─────────────────────────────────────────────── */
:root {
  --paper:      #fcfaf7;
  --paper-deep: #f3eee6;
  --ink:        #1a1a1a;
  --ink-strong: #0f0f0f;
  --ink-soft:   rgba(26, 26, 26, 0.45);
  --ink-ghost:  rgba(26, 26, 26, 0.18);
  --rule:       rgba(26, 26, 26, 0.10);
  --gold:       #9b8161;

  --f-display: 'Hanken Grotesk', sans-serif;
  --f-body:    'EB Garamond', Georgia, serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ───────────────────────────────────────────────
   RESET & BASE
─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: clamp(15px, 1.1vw, 18px);
  scroll-behavior: smooth;
  cursor: auto;
}

body {
  background:
    radial-gradient(circle at 6% -8%, rgba(255, 255, 255, 0.8), transparent 34%),
    linear-gradient(180deg, var(--paper) 0%, #faf6f0 68%, var(--paper-deep) 100%);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 26, 26, 0.08) 0.6px, transparent 0.7px);
  background-size: 3px 3px;
}

body::after {
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.72), transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(155, 129, 97, 0.08), transparent 35%);
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

/* PLACEHOLDER IMAGES — CSS-generated, no external URLs */
.placeholder-img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.p1 {
  background:
    linear-gradient(135deg, #e8e4de 0%, #d4cfc8 40%, #c8c2ba 100%);
}
.p1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.06) 60px,
      rgba(255,255,255,0.06) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.04) 80px,
      rgba(255,255,255,0.04) 81px
    );
}
.p1::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 55%;
  height: 35%;
  background: rgba(26,26,26,0.07);
  clip-path: polygon(0 100%, 0 30%, 30% 0, 100% 0, 100% 100%);
}

.p2 {
  background: linear-gradient(160deg, #ddd8d1 0%, #ccc6be 55%, #bfb9b1 100%);
}
.p2::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 40%;
  height: 60%;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
}
.p2::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 70%;
  height: 1px;
  background: rgba(26,26,26,0.15);
  box-shadow: 0 20px 0 rgba(26,26,26,0.08), 0 40px 0 rgba(26,26,26,0.05);
}

.p3 {
  background: linear-gradient(170deg, #e4e0da 0%, #d8d3cc 45%, #cbc5bc 100%);
}
.p3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  border: 1px solid rgba(26,26,26,0.12);
  border-radius: 50%;
}
.p3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 20%;
  background: rgba(26,26,26,0.08);
  border-radius: 50%;
}

/* ───────────────────────────────────────────────
   CUSTOM CURSOR
─────────────────────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s var(--ease-silk);
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  transition: transform 0.08s linear, opacity 0.3s;
}

#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  opacity: 0.4;
  transition: width 0.5s var(--ease-expo),
              height 0.5s var(--ease-expo),
              opacity 0.5s var(--ease-expo),
              border-width 0.5s var(--ease-expo);
}

body.cursor-expand #cursor-ring {
  width: 72px;
  height: 72px;
  opacity: 0.15;
  border-width: 1px;
}
body.cursor-expand #cursor-dot {
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0.6;
}

/* ───────────────────────────────────────────────
   SCROLL REVEAL UTILITY
─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-expo),
              transform 0.9s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.38s; }
.reveal.delay-4 { transition-delay: 0.54s; }

/* ───────────────────────────────────────────────
   PAGE ENTRY VEIL
─────────────────────────────────────────────── */
#veil {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 9000;
  transform-origin: top center;
  transition: transform 1.1s var(--ease-expo), opacity 0.4s 0.9s;
}
#veil.lifted {
  transform: scaleY(0);
  opacity: 0;
}

/* ───────────────────────────────────────────────
   NAV
─────────────────────────────────────────────── */
.mh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  padding: 1rem 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 1rem auto 0;
  border: 1px solid rgba(26, 26, 26, 0.11);
  border-radius: 999px;
  background: rgba(252, 250, 247, 0.68);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.06);
}

.nav-logo {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-strong);
}

.nav-items {
  display: flex;
  gap: 2.8rem;
  list-style: none;
}

.nav-items a {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}

.nav-items a:hover {
  color: var(--ink);
  border-color: var(--rule);
}

.nav-items a.active {
  color: var(--ink-strong);
  border-color: rgba(26, 26, 26, 0.2);
}

.nav-back-link {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid rgba(26, 26, 26, 0.15);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.nav-back-link:hover {
  color: var(--ink-strong);
  border-color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
}

/* ───────────────────────────────────────────────
   ① HERO — EDITORIAL
─────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 10rem 3.5rem 6.5rem;
  position: relative;
}

.hero-inner {
  max-width: 1140px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4.5rem;
}

.hero-headline {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(4.6rem, 10vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.038em;
  color: var(--ink-strong);
  overflow: hidden;
}

.hero-headline .line {
  display: block;
  overflow: hidden;
}

.hero-headline .line span {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.9s var(--ease-expo), opacity 0.9s var(--ease-expo);
}

.hero-headline .line.l2 span { transition-delay: 0.12s; }
.hero-headline .line.l3 span { transition-delay: 0.24s; }

.hero-headline.entered .line span {
  transform: translateY(0);
  opacity: 1;
}

.hero-sub {
  margin-top: 4.25rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 5rem;
}

.hero-sub-text {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 24ch;
  text-align: right;
  line-height: 1.64;
}

.hero-index {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--ink-ghost);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.hero-cta {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.76rem 1rem;
  border: 1px solid var(--rule);
  transition: color 0.25s, background-color 0.25s, border-color 0.25s, transform 0.25s var(--ease-expo);
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.hero-cta-primary {
  background: var(--ink-strong);
  border-color: var(--ink-strong);
  color: var(--paper);
}

.hero-cta-primary:hover {
  background: #080808;
}

.hero-cta-secondary {
  color: var(--ink-soft);
}

.hero-cta-secondary:hover {
  color: var(--ink);
  border-color: var(--ink-soft);
}

.hero-proof {
  margin-top: 2rem;
  margin-left: auto;
  width: min(680px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(26, 26, 26, 0.11);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(4px);
}

.proof-item {
  padding: 1rem 0.9rem;
  display: grid;
  gap: 0.3rem;
  border-right: 1px solid var(--rule);
}

.proof-item:last-child {
  border-right: none;
}

.proof-value {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--ink-strong);
}

.proof-label {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

.scroll-hint {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.24);
}

.scroll-hint::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--ink-ghost);
  display: block;
  animation: lineGrow 2.5s var(--ease-expo) infinite;
  transform-origin: left;
}

@keyframes lineGrow {
  0%, 100% { transform: scaleX(0); opacity: 0; }
  30%, 70%  { transform: scaleX(1); opacity: 1; }
}

/* ───────────────────────────────────────────────
   ② VISUAL STORYTELLING
─────────────────────────────────────────────── */
#visual {
  padding: 8.5rem 3.5rem;
}

.visual-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5.2rem;
  align-items: end;
  max-width: 1160px;
  margin: 0 auto 10rem;
}

.visual-row:last-child { margin-bottom: 0; }

.visual-row.reversed { direction: rtl; }
.visual-row.reversed > * { direction: ltr; }

.img-frame {
  position: relative;
  overflow: hidden;
  background: #e8e4de;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 3px;
  box-shadow: 0 20px 38px rgba(26, 26, 26, 0.08);
}

.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 1.2s var(--ease-expo);
  z-index: 2;
  pointer-events: none;
}

.img-frame.revealed::after { transform: scaleY(0); }

.img-frame .parallax-img {
  transition: transform 0s linear;
  will-change: transform;
  position: relative;
  z-index: 1;
}

/* Aspect ratios */
.img-frame.tall  { aspect-ratio: 3/4; }
.img-frame.wide  { aspect-ratio: 4/3; }
.img-frame.sq    { aspect-ratio: 1/1; }

.visual-content { padding-bottom: 2rem; }

.vis-number {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--ink-ghost);
  margin-bottom: 2.5rem;
}

.vis-title {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink-strong);
  margin-bottom: 2rem;
}

.vis-body {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 40ch;
  line-height: 1.75;
}

.vis-tag {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(255, 255, 255, 0.5);
}

/* ───────────────────────────────────────────────
   DIVIDER
─────────────────────────────────────────────── */
.divider {
  width: 1px;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, var(--rule) 20%, var(--rule) 80%, transparent 100%);
  margin: 0 auto;
}

/* ───────────────────────────────────────────────
   ③ THE STATEMENT
─────────────────────────────────────────────── */
#statement {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8.5rem 3.5rem;
  text-align: center;
  position: relative;
}

.statement-label {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin-bottom: 5rem;
}

.statement-text {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(2.2rem, 5.5vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink-strong);
  max-width: 18ch;
}

.statement-text em {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.88em;
}

.statement-footnote {
  position: absolute;
  bottom: 4rem;
  right: 3.5rem;
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

/* ───────────────────────────────────────────────
   PROCESS ROW (optional interlude)
─────────────────────────────────────────────── */
#process {
  padding: 6rem 3.5rem 8.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  margin-bottom: 5rem;
}

.process-header h2 {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.process-header span {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--ink-ghost);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-item {
  border: 1px solid rgba(26, 26, 26, 0.1);
  padding: 1.6rem 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(3px);
  transition: transform 0.25s var(--ease-expo), border-color 0.25s, box-shadow 0.25s;
}

.process-item:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 26, 26, 0.2);
  box-shadow: 0 14px 28px rgba(26, 26, 26, 0.08);
}

.process-num {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: 2.5rem;
  color: var(--ink-ghost);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.process-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.process-desc {
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ───────────────────────────────────────────────
   CONTACT BAND
─────────────────────────────────────────────── */
.contact-band {
  padding: 2.5rem 3.5rem 7.5rem;
}

.contact-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(26, 26, 26, 0.14);
  padding: 2.8rem;
  background:
    radial-gradient(circle at 96% 12%, rgba(155, 129, 97, 0.12), transparent 34%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.56), rgba(26, 26, 26, 0.03));
  box-shadow: 0 22px 38px rgba(20, 20, 20, 0.08);
}

.contact-kicker {
  font-family: var(--f-display);
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-ghost);
  margin-bottom: 1.3rem;
}

.contact-title {
  font-family: var(--f-display);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  margin-bottom: 1.1rem;
}

.contact-copy {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
}

.contact-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-btn {
  font-family: var(--f-display);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.78rem 1.02rem;
  border: 1px solid rgba(26, 26, 26, 0.16);
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
}

.contact-btn-primary {
  color: var(--paper);
  background: var(--ink-strong);
  border-color: var(--ink-strong);
}

.contact-btn-primary:hover {
  background: #000;
}

.contact-btn-secondary {
  color: var(--ink-soft);
}

.contact-btn-secondary:hover {
  color: var(--ink);
  border-color: var(--ink-soft);
}

/* ───────────────────────────────────────────────
   ④ FOOTER
─────────────────────────────────────────────── */
footer {
  padding: 5.5rem 3.5rem 4.2rem;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--f-display);
  font-weight: 100;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.04em;
  color: var(--ink-strong);
  line-height: 1;
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-center p {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-right a,
.footer-right p {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  display: block;
}

.footer-right a:hover { color: var(--ink); transition: color 0.3s; }

.footer-copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
}

.footer-copy p {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-ghost);
}

/* ───────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mh-nav {
    margin: 0.65rem 0.9rem 0;
    padding: 0.84rem 1rem;
    border-radius: 16px;
  }
  .nav-items { display: none; }
  .nav-back-link {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    padding-bottom: 0.25rem;
  }
  #hero, #visual, #statement, #process, .contact-band { padding-left: 1.8rem; padding-right: 1.8rem; }
  .visual-row { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr; }
  .visual-row.reversed { direction: ltr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  footer {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 3.5rem 1.8rem 3rem;
  }
  .footer-right { text-align: left; }
  .footer-center { align-items: flex-start; }
  .statement-footnote { display: none; }
  .hero-sub { flex-direction: column; gap: 2rem; align-items: flex-start; }
  .hero-sub-text { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-proof {
    margin-left: 0;
    grid-template-columns: 1fr;
  }
  .proof-item {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .proof-item:last-child {
    border-bottom: none;
  }
  .contact-band-inner {
    padding: 1.6rem;
  }
}

@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
  .scroll-hint { bottom: 2rem; left: 1.8rem; }
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button {
    cursor: none;
  }
}

@media (hover: none), (pointer: coarse) {
  #cursor-dot,
  #cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-headline .line span,
  .img-frame::after,
  .scroll-hint::before,
  #veil {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
