/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #070708;
  --bg-2: #0e0e10;
  --bg-3: #161618;
  --cream: #efe8df;
  --cream-dim: #c8c0b6;
  --muted: #8c867e;
  --line: rgba(239, 232, 223, 0.12);
  --accent: #ff4e3a;
  --accent-soft: rgba(255, 78, 58, 0.18);
  --gutter: clamp(1.15rem, 4.2vw, 3.6rem);
  --display: "Syne", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: auto;
  background: var(--bg);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.03em; }
iframe { border: 0; display: block; }
::selection { background: var(--accent); color: var(--cream); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }

.kicker {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-variant-numeric: lining-nums;
  line-height: 1;
}
.kicker-fig {
  display: inline-block;
  transform: translateY(-0.11em);
}
.gutter { padding-inline: var(--gutter); }
.lede {
  color: var(--cream-dim);
  max-width: 36rem;
  font-weight: 300;
  font-size: 1.05rem;
}

.has-grain { position: relative; isolation: isolate; }
.has-grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  z-index: 2;
}

/* =============================================================
   4. Typography
   ============================================================= */
h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4.4rem, 20vw, 13.5rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}
h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 4.4rem);
  margin-top: 0.45rem;
}
h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
}

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.45s var(--ease-out), background 0.45s var(--ease-out), color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.btn-primary {
  background: var(--accent);
  color: #140806;
  box-shadow: 0 0 0 1px rgba(255, 78, 58, 0.4), 0 0 28px rgba(255, 78, 58, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(7, 7, 8, 0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: rgba(239, 232, 223, 0.35); }
.btn-nav {
  display: none;
  min-height: 2.2rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.7rem;
  border: 1px solid var(--line);
}

.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex; align-items: center; justify-content: center; gap: inherit;
  will-change: transform;
  transition: transform 0.8s var(--ease-soft);
}

.lang {
  display: flex;
  gap: 0.1rem;
  padding: 0.12rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 8, 0.45);
  flex-shrink: 0;
}
.lang button {
  min-width: 1.7rem;
  min-height: 1.7rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.lang button[aria-pressed="true"] {
  background: var(--cream);
  color: var(--bg);
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "mark end" "links links";
  gap: 0.55rem 1rem;
  align-items: center;
  padding: 0.7rem var(--gutter);
  background: linear-gradient(to bottom, rgba(7,7,8,0.78), rgba(7,7,8,0.18) 70%, transparent);
  backdrop-filter: blur(10px);
}
.nav-mark {
  grid-area: mark;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}
.nav-links {
  grid-area: links;
  display: flex;
  gap: 0.75rem;
  font-size: 0.72rem;
  color: var(--cream-dim);
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a:hover { color: var(--cream); }
.nav-end {
  grid-area: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
}

/* =============================================================
   6. Sections
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: 55% 18%;
  filter: contrast(1.08) saturate(0.92);
}
.hero-video {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.hero-video.is-on { opacity: 1; }
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-enclosure,
.hero-video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
}
@media (hover: none) {
  .hero-bg video { filter: none; }
}
.hero-name-full { display: none; }
.hero-name-short { display: block; white-space: nowrap; }
.hero-handle { display: none; }
.hero-video-desktop,
.hero-still-desktop { display: none; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,7,8,0.96) 8%, rgba(7,7,8,0.28) 48%, rgba(7,7,8,0.35) 100%),
    radial-gradient(120% 70% at 70% 10%, rgba(255,78,58,0.16), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  right: -0.6rem;
  bottom: 22%;
  z-index: 2;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 28vw, 12rem);
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 232, 223, 0.12);
  transform: rotate(-12deg);
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--gutter) 2.4rem;
  width: 100%;
  max-width: 92rem;
}
.hero-handle {
  font-family: var(--display);
  letter-spacing: 0.42em;
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin: 0.2rem 0 1.1rem;
}
.hero-lead {
  max-width: 32rem;
  color: var(--cream-dim);
  font-weight: 300;
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-actions .btn-primary { flex: 1 1 12rem; }

.split-char { display: inline-block; will-change: transform; }

.listen,
.word,
.collabs,
.contact {
  padding: 4.5rem var(--gutter);
}
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head h2:first-child,
.word-copy h2:first-child { margin-top: 0; }

.listen-grid {
  display: grid;
  gap: 1.4rem;
}
.platform {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
}
.platform-meta { padding: 1.25rem 1.25rem 0.4rem; }
.platform-meta p:last-child {
  margin-top: 0.55rem;
  color: var(--cream-dim);
  font-weight: 300;
}
.spotify-frame { padding: 1rem; }
.spotify-frame iframe { border-radius: 12px; min-height: 352px; width: 100%; }

.yt-stage {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 1rem;
  border-radius: 0.9rem;
}
.yt-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 1.1s var(--ease-soft), filter 0.6s var(--ease-soft);
}
.yt-stage:hover img { transform: scale(1.06); filter: saturate(1.08) contrast(1.05); }
.yt-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 4.2rem; height: 4.2rem;
  border-radius: 50%;
  background: rgba(7,7,8,0.55);
  border: 1px solid rgba(239,232,223,0.35);
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  z-index: 3;
  box-shadow: 0 0 32px rgba(255, 78, 58, 0.25);
}
.yt-play svg { width: 1.15rem; fill: var(--cream); margin-left: 0.15rem; }
.yt-embed {
  position: relative;
  margin: 1rem;
  border-radius: 0.9rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-caption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  z-index: 3;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path {
  padding: 1.15rem var(--gutter) 2.35rem;
}
.path-grid {
  display: grid;
  gap: 1.1rem;
}
.path-grid article {
  border-top: 1px solid var(--line);
  padding-top: 0.95rem;
}
.path-grid span {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.path-grid h3 {
  margin: 0.35rem 0 0.3rem;
  font-size: 1.18rem;
  font-weight: 700;
}
.path-grid p {
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.45;
}

.word {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.word-visual {
  position: relative;
  min-height: 22rem;
}
.ink-frame {
  overflow: hidden;
  border-radius: 1.1rem;
}
.ink-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 35%;
  filter: contrast(1.12);
}
.ink-breath {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background: radial-gradient(circle at 38% 42%, rgba(255,78,58,0.28), transparent 42%);
  mix-blend-mode: screen;
  animation: breath 7.5s var(--ease-soft) infinite;
  z-index: 1;
}
.ink-breath-alt {
  background: radial-gradient(circle at 62% 58%, rgba(255,78,58,0.22), transparent 46%);
  animation-delay: -2.4s;
}
.vegvisir {
  position: absolute;
  width: min(78%, 22rem);
  right: -8%;
  bottom: -8%;
  color: var(--accent);
  filter: drop-shadow(0 0 18px rgba(255, 78, 58, 0.45));
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
}
.word-copy blockquote {
  margin-top: 1.15rem;
  display: grid;
  gap: 0.85rem;
}
.word-copy blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  line-height: 1.28;
  font-style: italic;
  color: var(--cream);
}

.sleeve { padding: 0 var(--gutter) 1rem; }
.sleeve-frame { overflow: hidden; border-radius: 1.1rem; }
.sleeve-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 40%;
  filter: contrast(1.1);
}

.collab-grid {
  display: grid;
  gap: 1rem;
}
.ticket {
  display: grid;
  gap: 0.35rem;
  padding: 1.3rem 1.2rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: var(--bg-2);
  transition: transform 0.5s var(--ease-out), border-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.ticket:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 78, 58, 0.45);
  box-shadow: 0 18px 50px -28px rgba(255, 78, 58, 0.55);
}
.ticket-year {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.ticket p { color: var(--cream-dim); font-weight: 300; font-size: 0.95rem; }
.ticket-open {
  background:
    linear-gradient(160deg, rgba(255,78,58,0.14), transparent 42%),
    var(--bg-3);
}
.ticket-cta {
  margin-top: 0.55rem;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact {
  padding-bottom: 4rem;
}
.contact-stamp {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(4.5rem, 18vw, 12rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(239, 232, 223, 0.22);
  margin-bottom: 1.4rem;
}
.contact-copy .lede { margin: 0.9rem 0 1.4rem; }
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 1.6rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.contact-social a:hover { color: var(--cream); }

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--gutter) 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
}
.foot-meta {
  display: grid;
  gap: 0.3rem;
}
.foot-colophon a {
  color: inherit;
  font-size: inherit;
}
.foot-colophon a:hover { text-decoration: underline; }
.foot-top {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--cream-dim);
}

/* =============================================================
   7. Effects
   ============================================================= */
.splash {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--cream);
  animation: splashSafety 0.01s 4.5s forwards;
}
.splash-inner { text-align: center; }
.splash-mark {
  width: 4.2rem;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.splash-name {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.32em;
  font-size: 0.82rem;
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.7s var(--ease-out), visibility 0s 0.7s;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

@keyframes ambientZoom {
  0%, 100% { transform: scale(1.05) translate3d(0, 0, 0); }
  50%      { transform: scale(1.12) translate3d(-1%, -1%, 0); }
}
.hero-bg img.ambient-on { animation: ambientZoom 28s ease-in-out infinite; }

@keyframes breath {
  0%, 100% { opacity: 0.35; transform: translate3d(0, 0, 0) scale(1); }
  50%      { opacity: 0.7; transform: translate3d(2%, -1%, 0) scale(1.06); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  display: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; will-change: transform;
}
.cursor-dot { width: 5px; height: 5px; margin: -2.5px; background: var(--cream); border-radius: 50%; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px;
  border: 1px solid var(--cream); border-radius: 50%;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), margin 0.35s var(--ease-out);
}
.cursor.is-interactive .cursor-ring { width: 48px; height: 48px; margin: -24px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .hero-actions { gap: 0.9rem; }
}

@media (max-width: 959px) {
  .yt-stage img { object-position: 50% 50%; }
  .contact-stamp {
    font-size: clamp(2.6rem, 11.6vw, 3.9rem);
    letter-spacing: -0.11em;
    max-width: 100%;
  }
}

@media (min-width: 720px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "mark links end";
    padding-block: 0.85rem;
  }
  .nav-mark { font-size: 0.78rem; letter-spacing: 0.18em; }
  .nav-links { gap: 1.3rem; justify-content: center; font-size: 0.78rem; overflow: visible; }
  .lang button { min-width: 2.1rem; min-height: 1.85rem; font-size: 0.68rem; }
  .listen,
  .word,
  .collabs,
  .contact { padding-block: 5.5rem; }
  .path { padding-block: 1.5rem 2.6rem; }
  .path-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
  .collab-grid { grid-template-columns: 1fr 1fr; }
  .yt-stage { aspect-ratio: 16 / 9; }
}

@media (min-width: 960px) {
  .listen,
  .path,
  .word,
  .collabs,
  .contact,
  .sleeve,
  .foot {
    max-width: 82rem;
    margin-inline: auto;
    width: 100%;
  }
  .nav {
    padding-inline: calc(max(0px, (100% - 82rem) / 2) + var(--gutter));
  }
  .listen,
  .word,
  .collabs,
  .contact { padding-block: 6.25rem; }
  .path { padding-block: 1.7rem 2.8rem; }

  .hero {
    display: block;
    max-width: none;
    margin-inline: 0;
    padding: 0;
    min-height: 100svh;
    width: 100%;
  }
  .hero::before {
    display: block;
    background:
      linear-gradient(to right, rgba(7, 7, 8, 0.9) 0%, rgba(7, 7, 8, 0.62) 22%, rgba(7, 7, 8, 0.2) 40%, transparent 58%),
      linear-gradient(to top, rgba(7, 7, 8, 0.72) 0%, rgba(7, 7, 8, 0.16) 40%, rgba(7, 7, 8, 0.28) 100%);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    height: auto;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-video-mobile,
  .hero-still-mobile { display: none; }
  .hero-video-desktop,
  .hero-still-desktop { display: block; }
  .hero-bg img,
  .hero-bg video {
    width: 100%;
    max-width: none;
    height: 118%;
    object-fit: cover;
    object-position: 12% 50%;
    margin-left: 0;
  }
  .hero-bg img.ambient-on { animation: none; }
  .hero-name-full { display: block; }
  .hero-name-short { display: none; }
  .hero-handle { display: block; }
  .hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    max-width: 82rem;
    margin-inline: auto;
    padding: 6.6rem var(--gutter) 3.4rem;
    width: 100%;
  }
  .hero-tag {
    position: absolute;
    left: auto;
    right: 1.2rem;
    bottom: 1.25rem;
    z-index: 3;
    margin: 0;
    font-size: clamp(2.7rem, 3.6vw, 4rem);
    -webkit-text-stroke: 1.15px rgba(239, 232, 223, 0.42);
  }
  .hero h1 {
    font-size: clamp(4.4rem, 5vw + 1.35rem, 6.6rem);
    letter-spacing: -0.06em;
    line-height: 0.86;
    white-space: nowrap;
    text-wrap: nowrap;
  }
  .hero-lead {
    max-width: 28rem;
    font-size: 1.08rem;
    color: #e4ddd4;
    margin-bottom: 1.75rem;
  }
  .hero-handle { margin: 0.45rem 0 1.35rem; }
  .hero-actions .btn-primary { flex: 0 0 auto; }
  .nav-links { font-size: 0.86rem; gap: 1.55rem; }

  .listen-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
    gap: 1.6rem;
  }
  .platform {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .spotify-frame { flex: 1; display: flex; padding: 0 1.15rem 1.15rem; }
  .spotify-frame iframe { flex: 1; min-height: 22.5rem; height: 100%; }
  .yt-stage,
  .yt-embed {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin: 0 1.15rem 1.15rem;
  }

  .path-grid article { padding-right: 0.6rem; }

  .word {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 4vw, 4.2rem);
    align-items: center;
    padding-block: 3.6rem;
    min-height: calc(100svh - 4.75rem);
  }
  .word .ink-frame img {
    aspect-ratio: auto;
    height: min(62svh, 34rem);
    object-position: 46% 28%;
  }
  .vegvisir {
    width: min(58%, 16.5rem);
    right: -5%;
    bottom: -6%;
    opacity: 0.82;
  }
  .word-copy blockquote p { font-size: clamp(1.28rem, 1.7vw, 1.72rem); }

  .sleeve {
    padding: 0 var(--gutter) 0.4rem;
  }
  .sleeve-frame img {
    aspect-ratio: 2.35 / 1;
    object-position: 50% 36%;
  }

  .ticket { min-height: 10.8rem; align-content: start; }

  .contact {
    display: grid;
    grid-template-columns: minmax(16rem, 0.9fr) minmax(18rem, 1.1fr);
    align-items: center;
    gap: clamp(1.6rem, 3vw, 3rem);
  }
  .contact-stamp {
    margin-bottom: 0;
    font-size: clamp(4.6rem, 8vw, 7.2rem);
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 1200px) {
  .btn-nav { display: inline-flex; }
}

@media (min-width: 1280px) {
  .hero-content { padding-top: 7rem; }
  .hero-lead { font-size: 1.14rem; max-width: 30rem; }
  .hero-bg img,
  .hero-bg video { object-position: 10% 48%; }
  .section-head { margin-bottom: 2.4rem; }
}

@media (min-width: 1600px) {
  .listen,
  .path,
  .word,
  .collabs,
  .contact,
  .sleeve,
  .foot { max-width: 88rem; }
  .nav {
    padding-inline: calc(max(0px, (100% - 88rem) / 2) + var(--gutter));
  }
  .hero-content { max-width: 88rem; }
}

/* =============================================================
   9. Reduced-motion — only intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-bg img.ambient-on { animation: none; }
  .ink-breath { animation: none; opacity: 0.45; }
  html { scroll-behavior: auto; }
}

@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; }
}
