:root {
  --bg: #05070a;
  --text: #f2efe8;
  --muted: #b8b8be;
  --warm: #ffb379;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(120% 100% at 10% 0%, #101722 0%, transparent 48%),
    radial-gradient(90% 120% at 90% 100%, #241a14 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", "Syne", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: grid;
  place-content: center;
  gap: 0.4rem;
  background: #05070a;
}

.preloader-label {
  margin: 0;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.7rem;
}

.preloader-value {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 8vw, 5rem);
}

.intro-section {
  position: relative;
  height: 124vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 60% 45%, rgba(255, 179, 121, 0.18), rgba(255, 179, 121, 0) 55%),
    radial-gradient(circle at 35% 72%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 52%),
    #05070a;
}

.intro-pin {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  padding: calc(72px + clamp(0.3rem, 1vw, 0.75rem)) clamp(1rem, 4vw, 2.8rem) clamp(0.8rem, 2.2vw, 1.15rem);
  display: grid;
  place-items: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: start;
  width: min(1180px, 92vw);
  margin-inline: auto;
  gap: clamp(0.48rem, 1.3vw, 0.95rem);
  padding-inline-start: clamp(0.2rem, 2.4vw, 1.8rem);
  transform: translateY(clamp(0.65rem, 2.8vh, 2.5rem));
}

.intro-index {
  margin: 0;
  grid-column: 1 / 2;
  color: #e7dbc8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.68rem, 0.95vw, 0.84rem);
  justify-self: start;
}

.intro-title {
  margin: 0;
  grid-column: 1 / 2;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 8.4vw, 7.6rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 11.5ch;
  text-align: left;
}

.intro-line {
  display: block;
  overflow: visible;
}

.intro-line + .intro-line {
  margin-top: 0.12em;
}

.intro-line > span {
  display: inline;
}

.intro-word {
  display: inline-block;
  white-space: nowrap;
}

.intro-char {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.intro-char-space {
  display: inline;
  white-space: pre;
}

.intro-copy {
  margin: 0;
  grid-column: 1 / 2;
  color: #ddd2c2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
  line-height: 1.35;
  max-width: 40ch;
  text-align: left;
}

.intro-arrow {
  margin-top: clamp(0.35rem, 1vw, 0.8rem);
  grid-column: 1 / 2;
  width: clamp(74px, 8vw, 112px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  color: #f2ece1;
}

.transition-wipe {
  position: fixed;
  inset: 0;
  z-index: 360;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 24%, transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 62%);
}

.chrome {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 300;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: clamp(0.8rem, 2vw, 1.25rem) clamp(1rem, 2.8vw, 2.4rem);
  background: color-mix(in srgb, #080c12 74%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chrome-logo {
  display: inline-flex;
}

.chrome-logo img {
  width: clamp(102px, 9vw, 140px);
  height: auto;
}

.chrome-progress {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 0.92rem);
  letter-spacing: 0.08em;
}

.progress-rule {
  display: block;
  width: min(26vw, 220px);
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

#progressFill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--warm), #ffd7b5);
}

.chrome-social {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #ebe0d1;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link:hover {
  border-color: rgba(255, 179, 121, 0.8);
  background: rgba(255, 179, 121, 0.14);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 1px solid rgba(255, 179, 121, 0.9);
  outline-offset: 1px;
}

.chapters {
  position: relative;
}

.chapter {
  position: relative;
  height: 230vh;
}

.chapter-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  perspective: 1400px;
  background: #05070a;
}

.chapter-depth {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-origin: center;
  will-change: transform, opacity;
}

.layer-motion {
  position: absolute;
  inset: 0;
  transform-origin: center;
  will-change: transform;
}

.layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.layer-back::after {
  background: linear-gradient(180deg, rgba(4, 7, 10, 0.02), rgba(4, 7, 10, 0.46));
}

.layer-mid::after {
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.06), rgba(10, 12, 18, 0.34));
}

.layer-front::after {
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.layer img,
.layer video {
  transform: scale(1.08);
}

.chapter-vignette,
.chapter-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;
}

.chapter-vignette {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.5) 88%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 34%, rgba(0, 0, 0, 0.44) 100%);
}

.chapter-grid {
  opacity: 0.08;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 10vw 10vw;
}

.chapter-mantra {
  position: absolute;
  z-index: 16;
  left: clamp(1rem, 4vw, 3.8rem);
  top: clamp(4.6rem, 9vh, 7.2rem);
  margin: 0;
  max-width: min(82vw, 1080px);
  color: rgba(244, 239, 230, 0.33);
  text-transform: uppercase;
  line-height: 0.9;
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 5.2vw, 5.2rem);
  white-space: nowrap;
  pointer-events: none;
}

.chapter-mantra-line {
  display: block;
  overflow: hidden;
}

.chapter-mantra-inner {
  display: inline-block;
}

.chapter-copy {
  position: absolute;
  z-index: 20;
  left: clamp(1rem, 4vw, 3.8rem);
  bottom: clamp(1rem, 4vw, 2.8rem);
  max-width: min(88vw, 1180px);
}

.chapter-index {
  margin: 0;
  color: #e7dfd0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.chapter-title-wrap {
  position: relative;
  display: grid;
  margin-top: clamp(0.14rem, 0.8vw, 0.4rem);
  max-width: min(88vw, 1200px);
}

.chapter-title {
  grid-area: 1 / 1;
  margin: 0;
  text-transform: uppercase;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 9.2vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.015em;
}

.chapter-title.back {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.34);
  transform: translate3d(0.18vw, -0.2vw, 0);
  opacity: 0.74;
}

.chapter-title.front {
  color: var(--text);
}

.title-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.title-line-inner {
  display: inline-block;
  white-space: nowrap;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.word-space {
  display: inline-block;
  width: 0.24em;
}

.word {
  white-space: nowrap;
  will-change: transform, opacity;
}

.chapter-lead {
  margin: 0.5rem 0 0;
  color: #f0e6d6;
  max-width: 54ch;
  font-size: clamp(0.96rem, 1.65vw, 1.3rem);
}

.chapter-sub {
  margin: 0.34rem 0 0;
  color: var(--muted);
  max-width: 64ch;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.76rem, 1vw, 0.9rem);
}

.chapter-reveal {
  overflow: hidden;
}

.chapter-reveal > span {
  display: inline-block;
  will-change: transform, opacity;
}

.chapter-sticky {
  cursor: pointer;
}

.chapter-sticky:focus-visible {
  outline: 1px solid rgba(255, 179, 121, 0.9);
  outline-offset: -2px;
}

.chapter-open-cue {
  position: absolute;
  right: clamp(0.9rem, 4vw, 3.8rem);
  top: clamp(4.7rem, 10vh, 7rem);
  z-index: 24;
  margin: 0;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 11, 15, 0.36);
  color: #ece0cf;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: clamp(0.58rem, 0.9vw, 0.74rem);
  pointer-events: none;
}

.portal {
  position: absolute;
  right: clamp(0.8rem, 4vw, 3.8rem);
  bottom: clamp(1.2rem, 4vw, 2.8rem);
  width: clamp(90px, 10vw, 136px);
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #f6efe2;
  cursor: pointer;
  z-index: 24;
  display: grid;
  place-items: center;
}

.portal-ring,
.portal-ring::before,
.portal-ring::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: "";
}

.portal-ring {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 62%);
}

.portal-ring::before {
  inset: 10%;
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

.portal-ring::after {
  inset: 21%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.portal-label {
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: clamp(0.62rem, 1vw, 0.82rem);
}

.portal-glyph {
  position: absolute;
  width: 54%;
  height: 54%;
  z-index: 2;
  opacity: 0.9;
  pointer-events: none;
}

.portal-glyph path,
.portal-glyph circle,
.portal-glyph rect,
.portal-glyph line,
.portal-glyph polygon {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chapter-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 22;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: color-mix(in srgb, #0a0d11 62%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  white-space: nowrap;
  padding: 0.46rem 0;
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.66rem, 0.92vw, 0.8rem);
  color: #ddd3c6;
  will-change: transform;
}

.about-section {
  position: relative;
  height: 160vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 179, 121, 0.18), rgba(255, 179, 121, 0) 46%),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 44%),
    #05070a;
}

.about-pin {
  position: relative;
  height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.2rem);
}

.about-card {
  width: min(1020px, 94vw);
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(10, 12, 16, 0.88), rgba(7, 9, 12, 0.9));
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.35);
}

.about-kicker {
  margin: 0;
  color: #e5d2bf;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: clamp(0.68rem, 0.95vw, 0.82rem);
}

.about-title {
  margin: 0.3rem 0 0;
  max-width: 20ch;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 5.8vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.about-copy {
  margin: 0.7rem 0 0;
  max-width: 62ch;
  color: #ded2c2;
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  line-height: 1.42;
}

.about-cta {
  margin-top: 0.9rem;
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.56rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.66rem, 0.92vw, 0.8rem);
  background: rgba(255, 255, 255, 0.05);
  color: #f2ece1;
}

.contact-section {
  position: relative;
  height: 210vh;
  background: #05070a;
}

.contact-pin {
  position: relative;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.contact-frame {
  position: relative;
  width: 100vw;
  height: 100svh;
  padding: clamp(1rem, 4vw, 3rem);
  display: grid;
  align-content: end;
  gap: 0.55rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 179, 121, 0.24), rgba(255, 179, 121, 0) 42%),
    radial-gradient(circle at 90% 78%, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 42%),
    linear-gradient(145deg, #0b1018, #090b10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.contact-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.46)),
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.5) 90%);
}

.contact-kicker,
.contact-title,
.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  margin: 0;
  color: #e6d4c0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(0.68rem, 0.95vw, 0.82rem);
}

.contact-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 10vw, 8rem);
}

.contact-copy {
  margin: 0;
  max-width: 54ch;
  color: #ebdfd0;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
}

.contact-form {
  margin-top: 0.5rem;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.contact-field {
  display: grid;
  gap: 0.3rem;
}

.contact-field span {
  color: #e0d2c2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(0.62rem, 0.88vw, 0.76rem);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 12, 16, 0.68);
  color: #f2ece1;
  padding: 0.6rem 0.7rem;
  font: inherit;
  font-size: clamp(0.82rem, 1.02vw, 0.95rem);
  line-height: 1.35;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible,
.contact-submit:focus-visible,
.contact-direct-mail:focus-visible {
  outline: 1px solid rgba(255, 179, 121, 0.9);
  outline-offset: 1px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-submit,
.contact-direct-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0.58rem 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: clamp(0.64rem, 0.9vw, 0.8rem);
  background: rgba(255, 255, 255, 0.05);
  color: #f2ece1;
}

.contact-submit {
  cursor: pointer;
}

.contact-submit[disabled] {
  opacity: 0.62;
  cursor: wait;
}

.contact-note {
  grid-column: 1 / -1;
  margin: 0.08rem 0 0;
  min-height: 1.1em;
  color: #d8c6b2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.62rem, 0.88vw, 0.74rem);
}

.contact-note.is-error {
  color: #ffb9ab;
}

.category-view {
  position: fixed;
  inset: 0;
  z-index: 420;
  background: rgba(6, 8, 11, 0.94);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-rows: auto 1fr;
}

.category-view[hidden] {
  display: none !important;
}

.category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.8rem, 2.2vw, 1.3rem) clamp(1rem, 2.6vw, 2.2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(8, 10, 13, 0.95), rgba(8, 10, 13, 0.66));
}

#categoryTitle {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  letter-spacing: -0.01em;
}

#categoryClose {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  cursor: pointer;
}

.category-reel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.42)),
    #05070a;
  touch-action: none;
  cursor: grab;
}

.category-reel.is-dragging {
  cursor: grabbing;
}

.floating-world {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.float-card {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(260px, 34vw, 640px);
  aspect-ratio: 4 / 3;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(3, 5, 8, 0.86);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.52);
  will-change: transform, filter, opacity;
}

.float-card.is-wide {
  width: clamp(300px, 46vw, 920px);
}

.float-card.is-square {
  width: clamp(260px, 34vw, 660px);
}

.float-card.is-tall {
  width: clamp(210px, 24vw, 430px);
}

.float-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4) 88%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.float-card.is-active {
  border-color: rgba(255, 179, 121, 0.45);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.62);
}

.float-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.float-item-count {
  position: absolute;
  left: clamp(0.7rem, 1.9vw, 1.2rem);
  bottom: clamp(0.65rem, 1.8vw, 1rem);
  z-index: 3;
  margin: 0;
  color: #efe5d5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Syne", sans-serif;
  font-size: clamp(0.66rem, 0.86vw, 0.78rem);
}

.floating-hud {
  position: absolute;
  left: clamp(0.8rem, 2.8vw, 2.2rem);
  bottom: clamp(0.8rem, 2.4vw, 1.8rem);
  z-index: 12;
  margin: 0;
  display: grid;
  gap: 0.16rem;
  padding: 0.46rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(8, 10, 14, 0.62);
  backdrop-filter: blur(4px);
}

.floating-count {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0e2ce;
}

.floating-hint {
  margin: 0;
  color: #cfc4b6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.6rem, 0.76vw, 0.68rem);
}

@media (max-width: 980px) {
  .chrome {
    grid-template-columns: auto auto;
    grid-template-areas:
      "logo social"
      "progress progress";
    row-gap: 0.5rem;
  }

  .chrome-logo {
    grid-area: logo;
  }

  .chrome-social {
    grid-area: social;
    justify-self: end;
    gap: 0.35rem;
  }

  .social-link {
    width: 30px;
    height: 30px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }

  .chrome-progress {
    grid-area: progress;
    justify-self: start;
  }

  .intro-section {
    height: 112svh;
  }

  .intro-pin {
    min-height: 100svh;
    padding: calc(80px + env(safe-area-inset-top, 0px)) 1rem 1rem;
    place-items: center;
  }

  .intro-grid {
    width: 94vw;
    gap: 0.38rem;
    padding-inline-start: 0.2rem;
    transform: translateY(0);
  }

  .intro-title {
    max-width: 11.4ch;
    font-size: clamp(2rem, 11.4vw, 3.6rem);
    line-height: 0.88;
  }

  .intro-copy {
    max-width: 35ch;
    font-size: clamp(0.74rem, 2.8vw, 0.88rem);
    text-align: left;
  }

  .intro-arrow {
    width: 72px;
    font-size: 1.7rem;
  }

  .chapter {
    height: 205vh;
  }

  .chapter-mantra {
    top: clamp(4.7rem, 9vh, 6.4rem);
    max-width: 92vw;
    font-size: clamp(1rem, 7.5vw, 2.15rem);
  }

  .chapter-copy {
    max-width: 95vw;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 1rem;
  }

  .chapter-title-wrap {
    max-width: 95vw;
  }

  .chapter-title {
    font-size: clamp(1.75rem, 10.2vw, 3.2rem);
    line-height: 0.88;
  }

  .chapter-lead {
    max-width: 40ch;
    font-size: clamp(0.84rem, 3.6vw, 1rem);
  }

  .chapter-sub {
    max-width: 40ch;
    font-size: clamp(0.65rem, 2.6vw, 0.76rem);
    letter-spacing: 0.09em;
  }

  .portal {
    top: clamp(4.8rem, 11vh, 5.7rem);
    bottom: auto;
    right: 0.9rem;
    width: 84px;
  }

  .chapter-open-cue {
    right: 0.9rem;
    top: clamp(4.95rem, 11vh, 5.85rem);
    font-size: 0.62rem;
    padding: 0.3rem 0.5rem;
  }

  .chapter-marquee {
    bottom: auto;
    top: clamp(4rem, 9vh, 4.8rem);
  }

  .contact-section {
    height: 185vh;
  }

  .about-section {
    height: 150vh;
  }

  .about-card {
    width: 95vw;
    padding: 1rem;
  }

  .about-title {
    font-size: clamp(1.4rem, 9.2vw, 2.5rem);
  }

  .about-copy {
    font-size: clamp(0.82rem, 3.2vw, 0.96rem);
    line-height: 1.38;
  }

  .about-cta {
    margin-top: 0.8rem;
  }

  .contact-frame {
    padding: 1rem;
  }

  .contact-title {
    font-size: clamp(1.7rem, 15vw, 3.2rem);
  }

  .contact-copy {
    font-size: clamp(0.84rem, 3.2vw, 0.98rem);
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.48rem;
  }

  .contact-field-wide,
  .contact-form-actions,
  .contact-note {
    grid-column: auto;
  }

  .contact-field textarea {
    min-height: 104px;
  }

  .float-card,
  .float-card.is-wide,
  .float-card.is-square,
  .float-card.is-tall {
    width: clamp(220px, 74vw, 560px);
  }

  .floating-hud {
    left: 0.8rem;
    bottom: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-section,
  .chapter,
  .about-section,
  .contact-section {
    height: auto;
    min-height: 100svh;
  }

  .intro-pin,
  .chapter-sticky,
  .about-pin,
  .contact-pin {
    position: relative;
    min-height: 100svh;
  }

  .marquee-track,
  .layer,
  .chapter-title .word,
  .chapter-reveal > span,
  .chapter-mantra-inner {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
