:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-deep: #020304;
  --surface: #0a0d11;
  --gold: #d8b38a;
  --gold-light: #f2e5d2;
  --blue: #1ea8ff;
  --blue-deep: #0a3eeb;
  --orange: #ff8b1f;
  --amber: #f6b33e;
  --white: #f3f2ef;
  --muted: #aaa9a4;
  --line: rgba(216, 179, 138, 0.22);
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --content: 90rem;
  --display: "Syncopate", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(30, 168, 255, 0.045), transparent 26rem),
    radial-gradient(circle at 88% 45%, rgba(255, 139, 31, 0.04), transparent 28rem),
    var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: soft-light;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.scroll-thread {
  position: fixed;
  inset: -8vh -2vw;
  z-index: 0;
  pointer-events: none;
  opacity: var(--thread-opacity, 0);
  transform: translate3d(var(--thread-x, 0), var(--thread-y, 0), 0) rotate(var(--thread-tilt, 0deg));
  transform-origin: 82% 50%;
  transition: opacity 1400ms ease, transform 1200ms var(--ease);
  mix-blend-mode: screen;
  will-change: opacity, transform;
}

.scroll-thread svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.scroll-thread-halo,
.scroll-thread-trace,
.scroll-thread-pulse {
  fill: none;
  stroke: url("#scroll-thread-gradient");
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.scroll-thread-halo {
  opacity: 0.38;
  stroke-width: 9px;
  filter: blur(7px);
}

.scroll-thread-trace {
  opacity: 0.68;
  stroke-width: 1.35px;
  filter: drop-shadow(0 0 5px rgba(30, 168, 255, 0.54)) drop-shadow(0 0 7px rgba(255, 139, 31, 0.42));
}

.scroll-thread-pulse {
  opacity: 0.76;
  stroke-width: 1.85px;
  filter: drop-shadow(0 0 4px rgba(30, 168, 255, 0.62)) drop-shadow(0 0 7px rgba(246, 179, 62, 0.46));
  animation: threadGlow 8s ease-in-out infinite;
}

.scroll-thread.is-travelling .scroll-thread-pulse {
  opacity: 0.94;
  stroke-width: 2.1px;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--gold-light);
  color: var(--bg);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 300ms ease, border-color 300ms ease, padding 300ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  padding-block: 0.65rem;
  border-color: rgba(216, 179, 138, 0.12);
  background: rgba(5, 7, 10, 0.87);
  backdrop-filter: blur(18px);
}

.header-brand {
  display: block;
  width: clamp(8.5rem, 13vw, 12.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.site-header.is-scrolled .header-brand {
  opacity: 1;
  pointer-events: auto;
}

.header-brand img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.main-nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  align-items: center;
}

.main-nav a {
  position: relative;
  color: rgba(242, 229, 210, 0.78);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
  background: linear-gradient(90deg, var(--blue), var(--amber));
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-content: center;
  gap: 0.42rem;
  border: 0;
  background: transparent;
  color: var(--gold-light);
}

.menu-toggle span {
  display: block;
  width: 1.45rem;
  height: 1px;
  transition: transform 220ms ease;
  background: currentColor;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 48%;
  height: 26%;
  content: "";
  pointer-events: none;
  opacity: 0.34;
  background: radial-gradient(ellipse at 72% 88%, rgba(255, 185, 85, 0.2), transparent 62%);
  filter: blur(12px);
  animation: waterBreath 6.5s ease-in-out infinite;
}

.hero-art {
  position: absolute;
  inset: -2.5%;
  transform: translate3d(0, var(--hero-parallax, 0), 0) scale(1.035);
  opacity: 0.96;
  background: url("assets/hero-water-line.webp") center / cover no-repeat;
  will-change: transform, filter;
  animation: heroLuminance 8s ease-in-out infinite;
}

.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}

.hero.is-video-active .hero-art {
  opacity: 1;
  animation: none;
}

.hero.is-video-active .hero-video {
  opacity: 1;
}

.hero.is-video-active::after,
.hero.is-video-active .hero-reflection {
  opacity: 0;
  animation: none;
}

.hero-art::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 3, 4, 0.18), transparent 38%);
}

.hero-reflection {
  position: absolute;
  right: -2%;
  bottom: 1%;
  width: 46%;
  height: 19%;
  opacity: 0.28;
  background:
    repeating-linear-gradient(176deg, transparent 0 12px, rgba(246, 179, 62, 0.26) 13px, transparent 14px 27px),
    radial-gradient(ellipse at 72% 100%, rgba(255, 139, 31, 0.42), transparent 55%);
  filter: blur(2px);
  mask-image: linear-gradient(90deg, transparent, #000 42%);
  animation: reflectionDrift 7s ease-in-out infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(7rem, 13vh, 10rem) var(--gutter) clamp(5.5rem, 10vh, 8rem);
  flex-direction: column;
  justify-content: space-between;
}

.hero-logo {
  width: clamp(15rem, 26vw, 25rem);
  height: auto;
  align-self: flex-start;
  mix-blend-mode: screen;
}

.hero-copy {
  max-width: 68rem;
}

.line-lock {
  display: block;
  white-space: nowrap;
}

.hero h1,
.comparison-heading h2,
.approach h2,
.audiences h2,
.trust h2,
.contact h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.28;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(2.65rem, 6vw, 6.7rem);
}

.hero-copy > p {
  max-width: 35rem;
  margin: 1.5rem 0 2.15rem;
  color: rgba(243, 242, 239, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  letter-spacing: 0.015em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.7rem;
  border: 1px solid var(--gold);
  border-radius: 0.42rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button-primary {
  background: linear-gradient(105deg, #c79b6c, #f2d8b6 54%, #c99a68);
  color: #090705;
  border-color: transparent;
}

.button-primary:hover {
  box-shadow: 0 0 30px rgba(216, 179, 138, 0.2);
}

.button-secondary {
  background: rgba(5, 7, 10, 0.42);
  color: var(--gold-light);
}

.button-secondary:hover {
  background: var(--gold-light);
  color: var(--bg);
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 1.6rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(242, 229, 210, 0.56);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 3.5rem;
  height: 1px;
  overflow: hidden;
  background: rgba(216, 179, 138, 0.28);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  animation: scrollCue 2.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, var(--blue), var(--amber));
}

.section-shell {
  position: relative;
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: clamp(6.5rem, 12vw, 11rem) var(--gutter);
  scroll-margin-top: 5rem;
}

.section-shell:nth-of-type(even) {
  --section-reveal-x: -0.8rem;
}

.section-shell:nth-of-type(odd) {
  --section-reveal-x: 0.8rem;
}

.section-index {
  position: absolute;
  top: clamp(3.5rem, 7vw, 6rem);
  left: var(--gutter);
  color: rgba(216, 179, 138, 0.42);
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.project-intro {
  display: grid;
  min-height: 75vh;
  grid-template-columns: minmax(0, 1.5fr) minmax(15rem, 0.5fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
}

.project-statement {
  padding-left: clamp(1.8rem, 5vw, 5rem);
}

.display-line {
  max-width: 19ch;
  margin: 0 0 2.5rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(2.05rem, 4.2vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.28;
  text-transform: uppercase;
}

.project-copy {
  max-width: 48rem;
  margin: 0;
  color: rgba(243, 242, 239, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.project-note {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.project-note span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-note p {
  color: var(--muted);
  font-size: 0.9rem;
}

.comparisons {
  padding-top: clamp(5rem, 9vw, 8rem);
}

.comparison-heading {
  display: grid;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
  padding-left: clamp(1.8rem, 5vw, 5rem);
  grid-template-columns: 1.55fr 0.45fr;
  gap: 3rem;
  align-items: end;
}

.comparison-heading h2,
.approach h2,
.audiences h2,
.trust h2,
.contact h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.28;
  text-transform: uppercase;
}

.comparison-heading p {
  margin: 0;
  color: var(--muted);
}

.comparison-figure {
  margin: 0;
}

.comparison-frame {
  position: relative;
  padding: 1px;
  background: linear-gradient(
    110deg,
    rgba(30, 168, 255, 0.72),
    rgba(242, 229, 210, 0.2) 46%,
    rgba(246, 179, 62, 0.78)
  );
  isolation: isolate;
}

.comparison-frame::before {
  position: absolute;
  inset: -0.55rem;
  z-index: -1;
  content: "";
  opacity: 0.2;
  background: linear-gradient(110deg, rgba(30, 168, 255, 0.72), transparent 46%, rgba(255, 139, 31, 0.72));
  filter: blur(18px);
  transition: opacity 500ms var(--ease);
}

.comparison-frame:hover::before,
.comparison-frame:focus-within::before {
  opacity: 0.38;
}

.comparison-stage {
  --position: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: #000;
  isolation: isolate;
  cursor: ew-resize;
}

.comparison-stage::before,
.comparison-stage::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
  width: 1.35rem;
  content: "";
  opacity: 0.32;
  background: repeating-linear-gradient(to bottom, transparent 0 1.2rem, var(--gold) 1.2rem 1.35rem);
}

.comparison-stage::before {
  left: 0;
}

.comparison-stage::after {
  right: 0;
}

.comparison-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.comparison-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 7;
  width: 1px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(30, 168, 255, 0.44), rgba(255, 255, 255, 0.68) 48%, rgba(246, 179, 62, 0.48));
  box-shadow: 0 0 6px rgba(242, 229, 210, 0.2);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.comparison-stage.is-interacting .comparison-divider {
  background: linear-gradient(180deg, rgba(30, 168, 255, 0.62), rgba(255, 255, 255, 0.86) 48%, rgba(246, 179, 62, 0.66));
  box-shadow: 0 0 10px rgba(242, 229, 210, 0.42);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 2.25rem;
  height: 3rem;
  transform: translate(-50%, -50%);
  place-items: center;
}

.comparison-handle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0.001;
  cursor: ew-resize;
}

.comparison-label {
  position: absolute;
  top: 1.25rem;
  z-index: 8;
  padding: 0.48rem 0.72rem 0.44rem;
  border: 1px solid rgba(242, 229, 210, 0.3);
  border-radius: 0.5rem;
  background: rgba(2, 3, 4, 0.76);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(7px);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.64rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}

.comparison-label-before {
  left: 2rem;
}

.comparison-label-after {
  right: 2rem;
}

.comparison-figure figcaption {
  display: flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.74rem;
}

.comparison-figure figcaption p {
  margin: 0;
}

.comparison-hint {
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-chapters {
  display: grid;
  margin-top: 1.6rem;
  padding-left: clamp(1.8rem, 5vw, 5rem);
  gap: clamp(1rem, 2vw, 2.4rem);
  grid-template-columns: repeat(3, 1fr);
}

.chapter {
  position: relative;
  display: grid;
  min-height: 4.8rem;
  padding: 0.55rem 0.25rem 0.7rem;
  border: 0;
  border-bottom: 1px solid rgba(216, 179, 138, 0.16);
  border-radius: 0;
  background: transparent;
  color: rgba(216, 179, 138, 0.56);
  grid-template-columns: 2.35rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: color 260ms ease, border-color 260ms ease, transform 320ms var(--ease);
}

.chapter::before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 300ms var(--ease);
  background: linear-gradient(90deg, var(--blue), var(--amber));
}

.chapter::after {
  position: absolute;
  top: 50%;
  left: -1rem;
  width: 5rem;
  height: 5rem;
  content: "";
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(30, 168, 255, 0.12), transparent 70%);
  transform: translateY(-50%);
  transition: opacity 320ms ease;
}

.chapter-icon,
.chapter-copy,
.chapter-copy > span,
.chapter-copy small {
  display: block;
}

.chapter-icon {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.18rem;
  color: rgba(216, 226, 238, 0.84);
}

.chapter-icon::before {
  content: none;
}

.chapter-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chapter-copy {
  min-width: 0;
}

.chapter-copy > span {
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  letter-spacing: 0.04em;
}

.chapter-copy small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter:hover,
.chapter.is-active {
  border-color: rgba(216, 179, 138, 0.24);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.chapter:hover::after,
.chapter.is-active::after {
  opacity: 1;
}

.chapter.is-active::before {
  transform: scaleX(1);
}

.layer-workflow {
  display: grid;
  min-height: 108vh;
  overflow: hidden;
  grid-template-columns: minmax(24rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  align-items: center;
  border-top: 1px solid rgba(216, 179, 138, 0.1);
}

.layer-copy {
  z-index: 3;
  padding-left: clamp(1rem, 2vw, 2rem);
}

.layer-copy h2 {
  margin: 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.85rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.36;
  text-transform: uppercase;
}

.layer-copy > p {
  max-width: 36rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.17rem);
}

.layer-copy strong {
  display: inline-block;
  max-width: 31rem;
  padding-top: 1.35rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--amber), transparent) 1;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.025em;
}

.layer-scene {
  position: relative;
  min-width: 0;
  min-height: min(58vw, 46rem);
  perspective: 1500px;
}

.layer-scene::before {
  position: absolute;
  inset: 12% 2% 14%;
  z-index: -1;
  content: "";
  opacity: 0.5;
  background:
    radial-gradient(circle at 28% 48%, rgba(30, 168, 255, 0.13), transparent 34%),
    radial-gradient(circle at 76% 58%, rgba(255, 139, 31, 0.11), transparent 38%);
  filter: blur(20px);
}

.layer-scene::after {
  display: none;
}

.layer-scene:hover::after {
  display: none;
}

.layer-stack {
  position: absolute;
  top: 43%;
  left: 52%;
  width: min(49vw, 54rem);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
}

.layer-stack::after {
  position: absolute;
  right: 4%;
  bottom: 5%;
  left: 4%;
  z-index: -1;
  height: 18%;
  content: "";
  opacity: 0.48;
  background: linear-gradient(90deg, rgba(30, 168, 255, 0.34), rgba(255, 139, 31, 0.34));
  filter: blur(34px);
}

.layer-composite {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  opacity: var(--composite-opacity, 1);
  transform: translate3d(0, var(--composite-lift, 0), 0) scale(var(--composite-scale, 1));
  filter: brightness(var(--composite-brightness, 1));
  -webkit-mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 78%, transparent 100%);
  mask-image: radial-gradient(ellipse 96% 92% at 50% 50%, #000 78%, transparent 100%);
  transition: transform 100ms linear, opacity 260ms ease, filter 180ms linear;
  will-change: transform, opacity, filter;
}

.layer-legend {
  position: absolute;
  right: 0;
  bottom: 4.5rem;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.layer-legend li {
  position: relative;
  padding-top: 0.9rem;
  color: rgba(242, 229, 210, 0.74);
  font-family: var(--sans);
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.layer-legend li::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 0.55rem;
  content: "";
  background: linear-gradient(var(--blue), var(--amber));
}

.layer-legend span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--amber);
  font-family: var(--display);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.layer-scroll-note {
  position: absolute;
  right: 0;
  bottom: 1rem;
  margin: 0;
  color: rgba(216, 179, 138, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.approach {
  display: grid;
  min-height: 90vh;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.approach h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.28;
  text-transform: uppercase;
}

.approach .line-lock,
.trust .line-lock {
  white-space: normal;
}

.approach-copy {
  padding-left: clamp(1.8rem, 5vw, 5rem);
}

.approach-copy > p {
  max-width: 38rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.approach-copy strong {
  display: inline-block;
  padding-top: 1.4rem;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--amber), transparent) 1;
  color: var(--gold);
  font-weight: 400;
}

.approach-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: visible;
  background: transparent;
}

.approach-visual::before {
  position: absolute;
  inset: -4%;
  z-index: 0;
  content: "";
  transform: translate3d(var(--water-parallax, 0), 0, 0) scale(1.06);
  background: url("assets/approach-split-water-transparent.png") center / cover no-repeat;
  mix-blend-mode: normal;
  -webkit-mask-image: radial-gradient(ellipse 98% 92% at 50% 50%, #000 67%, transparent 100%);
  mask-image: radial-gradient(ellipse 98% 92% at 50% 50%, #000 67%, transparent 100%);
  will-change: transform, filter;
  animation: approachLuminance 7s ease-in-out infinite;
}

.approach-visual::after {
  display: none;
}

.water-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 1px;
  opacity: 0.8;
  background: linear-gradient(180deg, transparent 0%, var(--gold-light) 15%, #fff7e9 52%, var(--amber) 82%, transparent 100%);
  box-shadow: 0 0 10px rgba(255, 221, 178, 0.5), 0 0 28px rgba(246, 179, 62, 0.26);
  animation: dividerPulse 4.8s ease-in-out infinite;
}

.water-divider::after {
  position: absolute;
  top: -18%;
  left: -1px;
  width: 3px;
  height: 22%;
  content: "";
  background: linear-gradient(180deg, transparent, #fff, transparent);
  filter: blur(0.5px);
  animation: dividerScan 5.5s var(--ease) infinite;
}

.water-glint {
  position: absolute;
  bottom: 12%;
  width: 36%;
  height: 8%;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(15px);
  mix-blend-mode: screen;
  animation: glintTravel 6.8s ease-in-out infinite alternate;
}

.water-glint-blue {
  left: 5%;
  background: rgba(30, 168, 255, 0.42);
}

.water-glint-amber {
  right: 5%;
  background: rgba(255, 139, 31, 0.4);
  animation-delay: -3.4s;
}

.audiences {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.audiences h2 {
  margin-bottom: clamp(3rem, 8vw, 7rem);
  padding-left: clamp(1.8rem, 5vw, 5rem);
}

.audience-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  display: grid;
  min-height: 7rem;
  padding: 2rem 0;
  grid-template-columns: minmax(18rem, 0.85fr) 1.15fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.audience-list li:nth-child(2) {
  margin-left: 10%;
}

.audience-list li:nth-child(3) {
  margin-left: 20%;
}

.audience-list li:nth-child(4) {
  margin-left: 30%;
  border-bottom: 1px solid var(--line);
}

.audience-list h3,
.audience-list p {
  margin: 0;
}

.audience-list h3 {
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 400;
}

.audience-list p {
  color: var(--muted);
}

.trust {
  display: grid;
  min-height: 82vh;
  overflow: clip;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  align-items: center;
  border-top: 1px solid rgba(216, 179, 138, 0.1);
  background: transparent;
}

.trust-copy {
  z-index: 2;
  padding-left: clamp(1.8rem, 5vw, 5rem);
}

.trust-copy h2 {
  max-width: none;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.3vw, 2.55rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.28;
  text-transform: uppercase;
}

.trust-copy > p {
  max-width: 38rem;
  margin: 2rem 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.trust-words {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.25vw, 1.2rem);
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.trust-words span {
  display: inline-block;
  animation: trustWordPulse 8s ease-in-out infinite;
}

.trust-words span:nth-of-type(2) {
  animation-delay: -2.65s;
}

.trust-words span:nth-of-type(3) {
  animation-delay: -5.3s;
}

.trust-words i {
  width: 2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  transform-origin: left;
  animation: trustLinkPulse 8s ease-in-out infinite;
}

.trust-visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 42rem);
  min-height: min(72vh, 47rem);
  place-items: center;
  justify-self: center;
  pointer-events: none;
}

.trust-visual::before {
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  content: "";
  opacity: 0.3;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 48%, rgba(30, 168, 255, 0.26), transparent 54%),
    radial-gradient(circle at 72% 52%, rgba(255, 139, 31, 0.22), transparent 56%);
  filter: blur(34px);
}

.trust-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(72%, 29rem);
  height: auto;
  filter: drop-shadow(-14px 0 28px rgba(30, 168, 255, 0.16)) drop-shadow(14px 0 30px rgba(255, 139, 31, 0.14));
}

.contact {
  min-height: 72vh;
  padding-top: clamp(5rem, 10vw, 9rem);
  border-top: 1px solid var(--line);
}

.contact-panel {
  position: relative;
  display: grid;
  min-height: clamp(25rem, 54vh, 35rem);
  overflow: hidden;
  padding: clamp(2.25rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  align-items: center;
  border-block: 1px solid rgba(216, 179, 138, 0.2);
  background:
    radial-gradient(circle at 83% 47%, rgba(30, 168, 255, 0.075), transparent 25%),
    radial-gradient(circle at 88% 55%, rgba(255, 139, 31, 0.08), transparent 30%),
    linear-gradient(115deg, rgba(10, 13, 17, 0.62), rgba(3, 5, 7, 0.22));
}

.contact-panel::before,
.contact-panel::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, rgba(30, 168, 255, 0.64) 38%, rgba(242, 229, 210, 0.8) 52%, rgba(246, 179, 62, 0.64) 66%, transparent);
}

.contact-panel::before {
  top: -1px;
}

.contact-panel::after {
  bottom: -1px;
  transform: scaleX(0.72);
}

.contact-copy {
  position: relative;
  z-index: 2;
  max-width: 49rem;
}

.contact-copy > p {
  max-width: 44rem;
  margin: 1.6rem 0 2.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.6rem);
  flex-wrap: wrap;
}

.contact-email {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.22rem;
  flex-direction: column;
  color: rgba(243, 242, 239, 0.76);
  font-size: 0.92rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 260ms ease;
}

.contact-email span {
  color: rgba(216, 179, 138, 0.52);
  font-family: var(--display);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-email strong {
  font-weight: 400;
  letter-spacing: 0.025em;
  text-decoration: underline;
  text-decoration-color: rgba(216, 179, 138, 0.32);
  text-underline-offset: 0.28em;
}

.contact-email:hover {
  color: var(--gold-light);
}

.contact-button {
  position: relative;
  display: inline-flex;
  min-height: 3.65rem;
  overflow: hidden;
  padding: 0.9rem 1.6rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 1px solid rgba(216, 179, 138, 0.48);
  border-radius: 999px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(30, 168, 255, 0.08),
    -7px 0 20px rgba(30, 168, 255, 0.13),
    7px 0 22px rgba(255, 139, 31, 0.12);
  transition: border-color 360ms var(--ease), box-shadow 360ms var(--ease), transform 360ms var(--ease);
}

.contact-button::before {
  position: absolute;
  inset: -165%;
  z-index: -2;
  content: "";
  background: conic-gradient(
    from 10deg,
    transparent 0deg 70deg,
    rgba(30, 168, 255, 0.96) 105deg,
    rgba(255, 255, 255, 0.9) 135deg,
    rgba(246, 179, 62, 0.98) 168deg,
    transparent 205deg 360deg
  );
  animation: contactBorderOrbit 6.4s linear infinite;
}

.contact-button::after {
  position: absolute;
  inset: 2px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(4, 6, 8, 0.94);
  transition: background 400ms var(--ease), box-shadow 400ms var(--ease);
}

.contact-button:hover::after,
.contact-button:focus-visible::after {
  background: rgba(9, 12, 16, 0.96);
  box-shadow: inset 0 0 2rem rgba(30, 168, 255, 0.07), inset 0 0 2.6rem rgba(255, 139, 31, 0.06);
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 229, 210, 0.78);
  box-shadow:
    0 0 0 1px rgba(242, 229, 210, 0.12),
    -9px 0 28px rgba(30, 168, 255, 0.26),
    9px 0 30px rgba(255, 139, 31, 0.24),
    0 9px 24px rgba(0, 0, 0, 0.32);
}

.contact-button:hover::before,
.contact-button:focus-visible::before {
  animation-duration: 3.8s;
}

.contact-button span,
.contact-button svg {
  position: relative;
  z-index: 1;
}

.contact-button svg {
  width: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-light {
  position: relative;
  z-index: 1;
  width: min(26vw, 23rem);
  aspect-ratio: 1;
  justify-self: center;
  opacity: 0.8;
}

.contact-light::before,
.contact-light::after,
.contact-light span {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-18deg);
}

.contact-light::before {
  width: 1px;
  height: 138%;
  background: linear-gradient(180deg, transparent, var(--blue) 32%, #fff 50%, var(--amber) 68%, transparent);
  box-shadow: -5px -2rem 18px rgba(30, 168, 255, 0.45), 6px 3rem 22px rgba(255, 139, 31, 0.38);
  animation: contactLightBreath 7.5s ease-in-out infinite;
}

.contact-light::after {
  width: 42%;
  height: 108%;
  opacity: 0.28;
  background: linear-gradient(180deg, transparent, rgba(30, 168, 255, 0.35), rgba(246, 179, 62, 0.28), transparent);
  filter: blur(24px);
}

.contact-light span {
  width: 72%;
  height: 1px;
  opacity: 0.45;
  background: linear-gradient(90deg, transparent, var(--blue), #fff 50%, var(--amber), transparent);
  box-shadow: 0 0 18px rgba(242, 229, 210, 0.18);
}

.contact-panel.reveal.is-visible .contact-copy > :is(h2, p, .contact-actions) {
  animation: textResolve 960ms var(--ease) both;
}

.contact-panel.reveal.is-visible .contact-copy > p {
  animation-delay: 110ms;
}

.contact-panel.reveal.is-visible .contact-copy > .contact-actions {
  animation-delay: 210ms;
}

.site-footer {
  display: flex;
  width: calc(100% - 2 * var(--gutter));
  max-width: calc(var(--content) - 2 * var(--gutter));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: rgba(216, 179, 138, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.site-footer a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translate3d(var(--section-reveal-x, 0), 1.45rem, 0) scale(0.994);
  filter: blur(7px) brightness(1.22);
  transition: opacity 980ms var(--ease), transform 980ms var(--ease), filter 1100ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

.reveal > :is(h1, h2, h3, p, strong, .display-line, .hero-actions, .trust-words, .contact-email, .button) {
  opacity: 0;
  transform: translate3d(var(--section-reveal-x, 0), 0.75rem, 0);
  filter: blur(5px) brightness(1.35);
}

.reveal.is-visible > :is(h1, h2, h3, p, strong, .display-line, .hero-actions, .trust-words, .contact-email, .button) {
  animation: textResolve 960ms var(--ease) both;
}

.reveal.is-visible > :nth-child(2) {
  animation-delay: 110ms;
}

.reveal.is-visible > :nth-child(3) {
  animation-delay: 210ms;
}

.reveal.is-visible > :nth-child(4) {
  animation-delay: 300ms;
}

@keyframes scrollCue {
  50%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes heroLuminance {
  0%,
  100% {
    filter: brightness(0.92) saturate(0.96);
  }

  50% {
    filter: brightness(1.08) saturate(1.08);
  }
}

@keyframes waterBreath {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.48;
    transform: scale(1.06);
  }
}

@keyframes reflectionDrift {
  from {
    transform: translate3d(-1.5%, 0, 0) scaleX(0.96);
  }

  to {
    transform: translate3d(1.5%, -3%, 0) scaleX(1.04);
  }
}

@keyframes approachLuminance {
  0%,
  100% {
    filter: brightness(0.9) saturate(0.94);
  }

  50% {
    filter: brightness(1.08) saturate(1.08);
  }
}

@keyframes dividerPulse {
  0%,
  100% {
    opacity: 0.58;
  }

  50% {
    opacity: 0.96;
  }
}

@keyframes dividerScan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  15%,
  72% {
    opacity: 1;
  }

  100% {
    transform: translateY(620%);
    opacity: 0;
  }
}

@keyframes glintTravel {
  from {
    transform: translate3d(-4%, 0, 0) scaleX(0.9);
  }

  to {
    transform: translate3d(5%, -12%, 0) scaleX(1.08);
  }
}

@keyframes contactBorderOrbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes contactLightBreath {
  0%,
  100% {
    opacity: 0.58;
    transform: translate(-50%, -50%) rotate(-18deg) scaleY(0.92);
  }

  50% {
    opacity: 0.96;
    transform: translate(-50%, -50%) rotate(-16deg) scaleY(1.04);
  }
}

@keyframes threadGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(30, 168, 255, 0.44)) drop-shadow(0 0 5px rgba(246, 179, 62, 0.32));
  }

  50% {
    filter: drop-shadow(0 0 6px rgba(30, 168, 255, 0.72)) drop-shadow(0 0 9px rgba(246, 179, 62, 0.54));
  }
}

@keyframes textResolve {
  0% {
    opacity: 0;
    transform: translate3d(var(--section-reveal-x, 0), 0.75rem, 0);
    filter: blur(7px) brightness(1.5);
    text-shadow: 0 0 24px rgba(216, 179, 138, 0.28);
  }

  62% {
    text-shadow: 0 0 16px rgba(30, 168, 255, 0.12), 0 0 20px rgba(255, 139, 31, 0.1);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
    text-shadow: none;
  }
}

@keyframes trustWordPulse {
  0%,
  100% {
    color: rgba(216, 179, 138, 0.74);
    text-shadow: 0 0 0 transparent;
    transform: translateY(0);
  }

  28% {
    color: var(--gold-light);
    text-shadow: -5px 0 14px rgba(30, 168, 255, 0.14), 5px 0 16px rgba(255, 139, 31, 0.12);
    transform: translateY(-2px);
  }
}

@keyframes trustLinkPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.72);
  }

  45% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@media (max-width: 900px) {
  .project-intro,
  .layer-workflow,
  .approach,
  .trust {
    grid-template-columns: 1fr;
  }

  .project-intro {
    min-height: auto;
    align-items: start;
  }

  .comparison-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .layer-workflow {
    min-height: auto;
    gap: 1.5rem;
  }

  .layer-scene {
    min-height: 40rem;
  }

  .layer-stack {
    top: 42%;
    left: 50%;
    width: min(96vw, 48rem);
    height: auto;
  }

  .approach-visual {
    margin-left: clamp(1.8rem, 5vw, 5rem);
  }

  .trust-visual {
    width: 100%;
    min-height: 34rem;
  }

  .trust-visual img {
    width: min(54vw, 22rem);
  }

  .audience-list li,
  .audience-list li:nth-child(n) {
    margin-left: 0;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-light {
    position: absolute;
    right: -5rem;
    bottom: -6rem;
    width: 21rem;
    opacity: 0.32;
  }
}

@media (max-width: 720px) {
  .section-shell:nth-of-type(even),
  .section-shell:nth-of-type(odd) {
    --section-reveal-x: 0;
  }

  .site-header {
    padding-block: 0.8rem;
  }

  .header-brand {
    width: 8.8rem;
  }

  .menu-toggle {
    display: grid;
    position: relative;
    z-index: 2;
  }

  .main-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: 100svh;
    padding: 7rem var(--gutter) 3rem;
    transform: translateY(-105%);
    transition: transform 360ms var(--ease);
    background: rgba(5, 7, 10, 0.98);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    font-family: var(--display);
    font-size: clamp(1.2rem, 6vw, 2rem);
    color: var(--gold-light);
  }

  .hero-art {
    inset: -2%;
    transform: translate3d(0, var(--hero-parallax, 0), 0) scale(1.06);
    opacity: 0.86;
    background-image: url("assets/hero-water-line-mobile.webp");
    background-position: center;
  }

  .hero-video {
    display: block;
  }

  .hero-art::after {
    background: linear-gradient(180deg, rgba(2, 3, 4, 0.1), rgba(2, 3, 4, 0.26) 72%, rgba(2, 3, 4, 0.58));
  }

  .hero-inner {
    padding-top: 6.5rem;
    row-gap: clamp(4.5rem, 11svh, 6.5rem);
    justify-content: flex-start;
  }

  .hero-logo {
    width: min(82vw, 25rem);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 4rem);
    letter-spacing: 0.025em;
  }

  .hero .line-lock,
  .approach .line-lock,
  .trust .line-lock {
    white-space: normal;
  }

  .hero-copy > p {
    max-width: 27rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .project-statement,
  .comparison-heading,
  .layer-copy,
  .approach-copy,
  .audiences h2,
  .trust-copy,
  .contact-copy {
    padding-left: 0;
  }

  .display-line {
    max-width: 15ch;
    margin: 0 auto 2.2rem;
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    letter-spacing: 0.04em;
    line-height: 1.34;
    text-align: center;
  }

  .comparison-heading h2,
  .layer-copy h2,
  .approach h2,
  .audiences h2,
  .trust h2,
  .contact h2 {
    max-width: 17ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.4rem, 6.4vw, 1.95rem);
    letter-spacing: 0.035em;
    line-height: 1.36;
    text-align: center;
  }

  .layer-copy h2 {
    max-width: 16ch;
  }

  .layer-scene {
    min-height: 41rem;
    margin-inline: -0.35rem;
  }

  .layer-stack {
    top: 34%;
    width: 108%;
    height: auto;
    transform: translate(-50%, -50%);
  }

  .layer-scene {
    min-height: 41rem;
  }

  .layer-stack {
    top: 34%;
  }

  .layer-legend {
    bottom: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.9rem;
    padding-inline: 0.4rem;
  }

  .layer-legend li {
    padding-top: 0.65rem;
    font-size: 0.76rem;
    letter-spacing: 0.035em;
  }

  .layer-legend span {
    font-size: 0.54rem;
  }

  .layer-legend li::before {
    height: 0.38rem;
  }

  .layer-legend li:last-child {
    grid-column: 1 / -1;
  }

  .layer-scroll-note {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: none;
    font-size: 0.52rem;
    text-align: center;
    white-space: nowrap;
  }

  .comparison-stage {
    aspect-ratio: 4 / 3;
  }

  .comparison-stage::before,
  .comparison-stage::after {
    display: none;
  }

  .comparison-handle {
    width: 1.95rem;
    height: 2.65rem;
  }

  .comparison-figure figcaption {
    align-items: flex-start;
    gap: 0.5rem;
    flex-direction: column;
  }

  .comparison-hint {
    font-size: 0.64rem;
  }

  .comparison-chapters {
    padding-left: 0;
    gap: 0.3rem;
    grid-template-columns: 1fr;
  }

  .chapter,
  .chapter:last-child {
    min-height: 4.6rem;
    border: 0;
    border-bottom: 1px solid rgba(216, 179, 138, 0.16);
  }

  .approach-visual {
    margin-left: 1.2rem;
  }

  .audience-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .trust {
    min-height: 70vh;
  }

  .trust-visual {
    min-height: 27rem;
  }

  .trust-visual img {
    width: min(66vw, 17rem);
  }

  .trust-words {
    align-items: flex-start;
    gap: 0.75rem;
    flex-direction: column;
    font-size: 1rem;
  }

  .trust-words i {
    width: 4rem;
  }

  .contact-email {
    overflow-wrap: anywhere;
  }

  .contact-panel {
    min-height: 33rem;
    margin-inline: calc(var(--gutter) * -1);
    padding: 3.2rem var(--gutter);
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-button {
    width: 100%;
    min-height: 3.8rem;
    padding-inline: 1rem;
  }

  .contact-email {
    align-items: center;
    text-align: center;
  }

  .contact-light {
    right: -7rem;
    bottom: -8rem;
    width: 19rem;
    opacity: 0.22;
  }

  .site-footer {
    align-items: flex-start;
    gap: 0.8rem;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal > :is(h1, h2, h3, p, strong, .display-line, .hero-actions, .trust-words, .contact-email, .button),
  .reveal.is-visible > :is(h1, h2, h3, p, strong, .display-line, .hero-actions, .trust-words, .contact-email, .button) {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .scroll-thread {
    display: none;
  }

  .hero-video {
    display: none;
  }
}
