@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --black: #070a07;
  --warm-black: #0b100c;
  --charcoal: #151816;
  --forest: #10251d;
  --forest-2: #18382b;
  --lichen: #a78b56;
  --gold: #c3a46a;
  --clay: #a86f4b;
  --sand: #e8dec9;
  --stone: #b9ad98;
  --muted: #827766;
  --line: rgba(232, 222, 201, 0.16);
  --line-strong: rgba(232, 222, 201, 0.28);
  --shadow: 0 30px 120px rgba(0, 0, 0, 0.42);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', 'Avenir Next', 'Helvetica Neue', sans-serif;
  --gutter: clamp(1.2rem, 3vw, 3.25rem);
  --max: 1180px;
  --hero-media: linear-gradient(130deg, #09110c, #10251d);
  --media: linear-gradient(135deg, #111711, #20372b 54%, #080b08);
  --tile-media: linear-gradient(135deg, rgba(24, 56, 43, 0.5), rgba(5, 8, 6, 0.6));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--sand);
  background:
    radial-gradient(circle at 18% 4%, rgba(42, 83, 58, 0.36), transparent 32rem),
    radial-gradient(circle at 86% 12%, rgba(84, 110, 101, 0.18), transparent 34rem),
    linear-gradient(145deg, #050806 0%, #0d160f 46%, #15130d 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.11;
  z-index: 10;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.12), transparent 0.08rem),
    radial-gradient(circle at 72% 40%, rgba(255,255,255,0.08), transparent 0.06rem),
    radial-gradient(circle at 48% 78%, rgba(255,255,255,0.1), transparent 0.05rem);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  mix-blend-mode: soft-light;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

figure {
  margin: 0;
}

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

p {
  margin: 0;
  color: var(--stone);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--sand);
}

h1 {
  font-size: clamp(3.25rem, 7.8vw, 7.15rem);
  max-width: 12.5ch;
}

h2 {
  font-size: clamp(2.45rem, 5.25vw, 5.35rem);
}

h3 {
  font-size: clamp(1.55rem, 2.65vw, 2.9rem);
}

::selection {
  color: var(--black);
  background: var(--gold);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem var(--gutter);
  color: var(--sand);
  transition: background 260ms ease, border-color 260ms ease, padding 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 0.72rem;
  background: rgba(7, 10, 7, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo-frame {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 3.15rem;
  height: 2.75rem;
  padding: 0.18rem;
  overflow: hidden;
  border: 1px solid rgba(195, 164, 106, 0.42);
  border-radius: 0.7rem;
  background: rgba(7, 10, 7, 0.28);
  box-shadow: inset 0 0 0 1px rgba(232, 222, 201, 0.04);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-name,
.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--sand);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 2rem);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 222, 201, 0.78);
}

.primary-nav a {
  position: relative;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  margin: -0.5rem -0.35rem;
  transition: color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current='page'] {
  color: var(--sand);
}

.primary-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.28rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-nav a[aria-current='page']:not(.nav-cta) {
  border-color: rgba(195, 164, 106, 0.36);
  background: rgba(195, 164, 106, 0.08);
  box-shadow: inset 0 0 0 1px rgba(232, 222, 201, 0.035);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  margin: 0;
  padding: 0.82rem 1.05rem;
  border: 1px solid rgba(195, 164, 106, 0.6);
  border-radius: 999px;
  color: var(--sand);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 16, 11, 0.5);
  color: var(--sand);
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.24rem auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero,
.page-hero {
  --page-hero-progress: 0;
  --page-hero-scale: 1.02;
  --page-hero-y: 0px;
  --page-hero-copy-y: 0px;
  --page-hero-copy-opacity: 1;
  --page-hero-glow-x: 0px;
  --page-hero-rail: 0.08;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #071008;
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 8, 5, 0.94) 0%, rgba(4, 8, 5, 0.72) 38%, rgba(4, 8, 5, 0.25) 100%),
    linear-gradient(180deg, rgba(4, 8, 5, 0.08) 0%, rgba(4, 8, 5, 0.7) 100%),
    var(--hero-media),
    radial-gradient(circle at 70% 40%, rgba(30, 75, 60, 0.85), transparent 28rem);
  background-size: cover;
  background-position: var(--hero-position, center);
  filter: saturate(0.88) contrast(1.06);
  transform: translate3d(0, var(--page-hero-y), 0) scale(var(--page-hero-scale));
  transform-origin: center;
  will-change: transform;
}

.hero-home::after,
.services-hero::after,
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 18%, rgba(195, 164, 106, 0.18), transparent 22rem),
    radial-gradient(circle at 78% 62%, rgba(7, 10, 7, 0.12), rgba(7, 10, 7, 0.76) 68%),
    linear-gradient(125deg, rgba(12, 37, 27, 0.26), rgba(86, 72, 45, 0.08));
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at calc(70% + var(--page-hero-glow-x)) 24%, rgba(174, 128, 78, 0.12), transparent 17rem),
    radial-gradient(circle at 80% 74%, rgba(14, 49, 38, 0.55), transparent 28rem),
    linear-gradient(180deg, rgba(7,10,7,0) 58%, var(--black) 100%);
  will-change: background;
}

.hero-inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(21rem, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: 7rem var(--gutter) 4.5rem;
}

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

.eyebrow,
.section-kicker {
  margin-bottom: 1.25rem;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-lede,
.page-hero p {
  max-width: 38rem;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  color: rgba(232, 222, 201, 0.82);
}

.hero-home h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  max-width: 12ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.88rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #0a0d08;
  background: linear-gradient(135deg, #d7bc7e, #a98549);
  box-shadow: 0 18px 60px rgba(195, 164, 106, 0.18);
}

.button.ghost {
  color: var(--sand);
  border-color: rgba(232, 222, 201, 0.28);
  background: rgba(232, 222, 201, 0.05);
}

.hero-reel {
  align-self: stretch;
  min-height: 31rem;
  display: grid;
  align-items: center;
}

.reel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 222, 201, 0.12);
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.03), rgba(5, 8, 6, 0.72)),
    linear-gradient(110deg, rgba(10, 22, 16, 0.78), rgba(10, 22, 16, 0.04) 56%),
    var(--media),
    radial-gradient(circle at 24% 78%, rgba(24,56,43,0.95), transparent 21rem),
    linear-gradient(135deg, #111711, #20372b 54%, #080b08);
  background-size: cover;
  background-position: var(--position, center);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.5);
}

.media-panel,
.portfolio-cell,
.service-media {
  position: relative;
  overflow: hidden;
  border: 0;
  background-color: #08100b;
  background-image: var(--media);
  background-size: cover;
  background-position: var(--position, center);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.42);
}

.reel-frame {
  min-height: min(68svh, 48rem);
  border-radius: 52% 48% 0 0 / 11% 11% 0 0;
  transform: translateY(2rem);
}

.reel-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 8%, rgba(232, 222, 201, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(3, 6, 4, 0), rgba(3, 6, 4, 0.55));
  opacity: 0.72;
  pointer-events: none;
}

.reel-frame::after {
  content: '';
  position: absolute;
  inset: 1.2rem;
  z-index: 2;
  border: 1px solid rgba(232, 222, 201, 0.12);
  pointer-events: none;
}

.media-panel::before,
.media-panel::after,
.portfolio-cell::before,
.portfolio-cell::after,
.service-media::before,
.service-media::after {
  display: none;
}

.reel-tag,
.reel-caption,
.play-mark {
  z-index: 2;
}

.reel-tag {
  position: absolute;
  top: 1.7rem;
  left: 1.7rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 222, 201, 0.72);
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(232, 222, 201, 0.38);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(7, 10, 7, 0.34);
  backdrop-filter: blur(12px);
}

.play-mark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  border-top: 0.62rem solid transparent;
  border-bottom: 0.62rem solid transparent;
  border-left: 0.95rem solid var(--sand);
  transform: translate(-50%, -50%);
}

.reel-caption {
  position: absolute;
  left: 1.7rem;
  right: 1.7rem;
  bottom: 1.7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.reel-caption span {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(232, 222, 201, 0.24);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(232, 222, 201, 0.78);
}

.island-scroll {
  --scene-progress: 0;
  --stars-opacity: 1;
  --moon-opacity: 1;
  --cloud-opacity: 1;
  --mountain-opacity: 1;
  --forest-opacity: 0;
  --birds-opacity: 0;
  --ocean-opacity: 0;
  --animals-opacity: 0;
  --mist-opacity: 0;
  --copy-opacity: 0;
  --cloud-x: 0px;
  --mountain-y: 0px;
  --forest-y: 80px;
  --ocean-y: 160px;
  --animal-y: 0px;
  --scene-glow-opacity: 0.35;
  --stars-y: 0px;
  --moon-y: 0px;
  --moon-scale: 1;
  --mountain-scale: 1;
  --mist-one-x: 0px;
  --mist-two-x: 0px;
  --wave-one-x: 0px;
  --wave-two-x: 0px;
  --wave-three-x: 0px;
  --otter-x: 0px;
  position: relative;
  height: 430svh;
  margin-top: -1px;
  background: #050806;
}

.island-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.island-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 12%, rgba(195, 164, 106, 0.13), transparent 17rem),
    linear-gradient(180deg, #05080a 0%, #0b1715 38%, #12261d 68%, #07100b 100%);
}

.scene-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 22%, rgba(195, 164, 106, 0.2), transparent 22rem),
    radial-gradient(circle at 22% 70%, rgba(25, 70, 55, 0.36), transparent 32rem),
    linear-gradient(180deg, rgba(6, 10, 13, 0.08), rgba(8, 23, 17, 0.82));
  opacity: var(--scene-glow-opacity);
}

.stars-layer,
.cloud-layer,
.mountain-layer,
.forest-layer,
.mist-layer,
.ocean-layer,
.bird-flock,
.moon {
  position: absolute;
  pointer-events: none;
}

.stars-layer {
  inset: 0;
  z-index: 2;
  opacity: var(--stars-opacity);
  transform: translateY(var(--stars-y));
}

.stars-layer span {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 999px;
  background: rgba(232, 222, 201, 0.92);
  box-shadow: 0 0 18px rgba(232, 222, 201, 0.55);
}

.stars-layer span:nth-child(1) { left: 8%; top: 18%; }
.stars-layer span:nth-child(2) { left: 18%; top: 10%; width: 0.12rem; height: 0.12rem; }
.stars-layer span:nth-child(3) { left: 32%; top: 22%; }
.stars-layer span:nth-child(4) { left: 42%; top: 12%; width: 0.11rem; height: 0.11rem; }
.stars-layer span:nth-child(5) { left: 57%; top: 18%; }
.stars-layer span:nth-child(6) { left: 68%; top: 9%; width: 0.14rem; height: 0.14rem; }
.stars-layer span:nth-child(7) { left: 78%; top: 25%; }
.stars-layer span:nth-child(8) { left: 88%; top: 13%; width: 0.12rem; height: 0.12rem; }
.stars-layer span:nth-child(9) { left: 14%; top: 34%; width: 0.13rem; height: 0.13rem; }
.stars-layer span:nth-child(10) { left: 49%; top: 31%; width: 0.12rem; height: 0.12rem; }
.stars-layer span:nth-child(11) { left: 73%; top: 36%; width: 0.1rem; height: 0.1rem; }
.stars-layer span:nth-child(12) { left: 92%; top: 38%; width: 0.12rem; height: 0.12rem; }

.moon {
  z-index: 3;
  top: 12%;
  right: 18%;
  width: clamp(3.5rem, 7vw, 7rem);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 34%, #efe3c8, #bfa66f 54%, rgba(191, 166, 111, 0.14) 70%);
  filter: blur(0.2px);
  opacity: var(--moon-opacity);
  box-shadow: 0 0 70px rgba(195, 164, 106, 0.24);
  transform: translateY(var(--moon-y)) scale(var(--moon-scale));
}

.cloud-layer {
  left: -10vw;
  right: -10vw;
  height: 25svh;
  opacity: var(--cloud-opacity);
  transform: translateX(var(--cloud-x));
  z-index: 5;
}

.cloud-back {
  top: 14svh;
  filter: blur(10px);
  opacity: calc(var(--cloud-opacity) * 0.68);
}

.cloud-front {
  top: 28svh;
  z-index: 12;
  filter: blur(14px);
}

.cloud-layer span,
.cloud-layer span::before,
.cloud-layer span::after {
  position: absolute;
  display: block;
  content: '';
  border-radius: 999px;
  background: rgba(202, 200, 184, 0.18);
}

.cloud-layer span {
  width: 25vw;
  height: 5.8rem;
}

.cloud-layer span::before {
  width: 58%;
  height: 115%;
  left: 16%;
  top: -45%;
}

.cloud-layer span::after {
  width: 44%;
  height: 88%;
  right: 8%;
  top: -30%;
}

.cloud-back span:nth-child(1) { left: 8%; top: 16%; }
.cloud-back span:nth-child(2) { left: 42%; top: 8%; transform: scale(1.18); }
.cloud-back span:nth-child(3) { right: 4%; top: 18%; transform: scale(0.86); }
.cloud-front span:nth-child(1) { left: 2%; top: 32%; transform: scale(1.25); }
.cloud-front span:nth-child(2) { left: 26%; top: 50%; transform: scale(0.88); }
.cloud-front span:nth-child(3) { right: 18%; top: 35%; transform: scale(1.12); }
.cloud-front span:nth-child(4) { right: -3%; top: 58%; transform: scale(0.94); }

.mountain-layer {
  left: 0;
  right: 0;
  bottom: 22svh;
  width: 100%;
  height: 58svh;
  z-index: 7;
  opacity: var(--mountain-opacity);
  transform: translateY(var(--mountain-y)) scale(var(--mountain-scale));
  transform-origin: center bottom;
}

.mountain-back {
  fill: #1c332d;
  filter: drop-shadow(0 -28px 80px rgba(195, 164, 106, 0.06));
  opacity: calc(var(--mountain-opacity) * 0.78);
}

.mountain-front {
  bottom: 14svh;
  fill: #12261f;
  z-index: 8;
}

.forest-layer {
  left: 0;
  right: 0;
  width: 100%;
  z-index: 14;
  opacity: var(--forest-opacity);
  transform: translateY(var(--forest-y));
  transform-origin: center bottom;
}

.forest-back {
  bottom: 13svh;
  height: 40svh;
  fill: #102a20;
  filter: blur(0.5px);
}

.forest-front {
  bottom: 7svh;
  height: 48svh;
  fill: #08140e;
}

.bird-flock {
  z-index: 15;
  inset: 0;
  opacity: var(--birds-opacity);
  transform: translate(calc(var(--scene-progress) * 80px), calc(var(--scene-progress) * -22px));
}

.bird-flock span {
  position: absolute;
  width: 1.2rem;
  height: 0.45rem;
}

.bird-flock span::before,
.bird-flock span::after {
  content: '';
  position: absolute;
  top: 0.18rem;
  width: 0.7rem;
  height: 1px;
  background: rgba(232, 222, 201, 0.56);
}

.bird-flock span::before {
  left: 0;
  transform: rotate(18deg);
}

.bird-flock span::after {
  right: 0;
  transform: rotate(-18deg);
}

.bird-flock span:nth-child(1) { left: 58%; top: 32%; transform: scale(0.65); }
.bird-flock span:nth-child(2) { left: 61%; top: 29%; transform: scale(0.45); }
.bird-flock span:nth-child(3) { left: 65%; top: 34%; transform: scale(0.52); }
.bird-flock span:nth-child(4) { left: 69%; top: 30%; transform: scale(0.36); }
.bird-flock span:nth-child(5) { left: 73%; top: 36%; transform: scale(0.46); }

.mist-layer {
  left: -12vw;
  right: -12vw;
  height: 16svh;
  z-index: 17;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232, 222, 201, 0.12), transparent 55%),
    radial-gradient(ellipse at 52% 48%, rgba(232, 222, 201, 0.1), transparent 60%),
    radial-gradient(ellipse at 82% 52%, rgba(232, 222, 201, 0.08), transparent 55%);
  filter: blur(18px);
  opacity: var(--mist-opacity);
}

.mist-one {
  bottom: 30svh;
  transform: translateX(var(--mist-one-x));
}

.mist-two {
  bottom: 19svh;
  transform: translateX(var(--mist-two-x));
}

.ocean-layer {
  left: 0;
  right: 0;
  bottom: 0;
  height: 42svh;
  z-index: 22;
  opacity: var(--ocean-opacity);
  transform: translateY(var(--ocean-y));
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 58, 55, 0.1), rgba(8, 26, 25, 0.94) 28%, #061212 100%),
    radial-gradient(ellipse at 55% 0%, rgba(195, 164, 106, 0.12), transparent 42%);
}

.wave {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 7rem;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(232, 222, 201, 0.16), transparent 64%);
}

.wave-one {
  top: 4svh;
  transform: translateX(var(--wave-one-x));
}

.wave-two {
  top: 12svh;
  opacity: 0.72;
  transform: translateX(var(--wave-two-x)) scaleY(0.7);
}

.wave-three {
  top: 22svh;
  opacity: 0.5;
  transform: translateX(var(--wave-three-x)) scaleY(0.52);
}

.whale-tail,
.otter,
.dorsal-fin {
  position: absolute;
  opacity: var(--animals-opacity);
  transform: translateY(var(--animal-y));
}

.whale-tail {
  left: 57%;
  top: 8svh;
  width: 4.4rem;
  height: 3.2rem;
}

.whale-tail span {
  position: absolute;
  top: 0.9rem;
  width: 2.8rem;
  height: 1.35rem;
  border-radius: 100% 12% 100% 18%;
  background: #07100e;
}

.whale-tail span:first-child {
  left: 0.35rem;
  transform: rotate(-28deg);
}

.whale-tail span:last-child {
  right: 0.35rem;
  transform: rotate(28deg) scaleX(-1);
}

.otter {
  left: 21%;
  top: 15svh;
  width: 5.8rem;
  height: 2.2rem;
  transform: translateY(var(--animal-y)) translateX(var(--otter-x));
}

.otter-body,
.otter-head {
  position: absolute;
  display: block;
  background: #09110e;
}

.otter-body {
  left: 0.7rem;
  bottom: 0.35rem;
  width: 4.8rem;
  height: 1.18rem;
  border-radius: 999px;
  transform: rotate(-5deg);
}

.otter-head {
  left: 0;
  bottom: 0.76rem;
  width: 1.35rem;
  height: 1.2rem;
  border-radius: 55% 45% 48% 52%;
}

.dorsal-fin {
  right: 19%;
  top: 13svh;
  width: 3rem;
  height: 1.7rem;
  background: #07100e;
  border-radius: 100% 0 100% 0;
  transform: translateY(var(--animal-y)) rotate(-8deg);
}

.island-copy {
  position: relative;
  z-index: 30;
  width: min(48rem, calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  padding-top: 16svh;
  text-align: center;
  opacity: var(--copy-opacity);
  transform: translateY(calc((1 - var(--copy-opacity)) * 28px));
}

.island-copy h2 {
  max-width: 11ch;
  margin: 0 auto;
  font-size: clamp(3.2rem, 7.5vw, 7.6rem);
  text-wrap: balance;
}

.island-copy p:not(.eyebrow) {
  max-width: 37rem;
  margin: 1.3rem auto 0;
  color: rgba(232, 222, 201, 0.84);
}

.island-hero {
  --scene-progress: 0;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --stars-opacity: 0.82;
  --stars-y: 0px;
  --cloud-opacity: 0.9;
  --cloud-x: 0px;
  --cloud-y: 0px;
  --sky-opacity: 1;
  --sky-y: 0px;
  --sky-scale: 1.03;
  --mountain-back-opacity: 1;
  --mountain-back-y: 0px;
  --mountain-back-scale: 1.03;
  --mountain-front-opacity: 1;
  --mountain-front-y: 0px;
  --mountain-front-scale: 1.035;
  --forest-opacity: 1;
  --forest-y: 0px;
  --forest-scale: 1.035;
  --ocean-opacity: 1;
  --ocean-y: 0px;
  --ocean-scale: 1.02;
  --wildlife-opacity: 0;
  --wildlife-x: 0px;
  --wildlife-y: 0px;
  --foreground-opacity: 0.78;
  --foreground-y: 0px;
  --foreground-scale: 1.025;
  --end-fade: 0;
  position: relative;
  min-height: 0;
  height: 520svh;
  overflow: visible;
  background: #050806;
}

.island-hero::before,
.island-hero::after {
  display: none;
}

.island-hero .island-sticky {
  position: sticky;
  min-height: 100svh;
  top: 0;
  padding: 7rem var(--gutter) 4rem;
}

.island-hero .island-scene {
  background:
    radial-gradient(circle at 70% 16%, rgba(195, 164, 106, 0.1), transparent 24rem),
    #050806;
}

.island-hero .island-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 44;
  pointer-events: none;
  background: #050806;
  opacity: var(--end-fade);
}

.scene-art {
  position: absolute;
  inset: -7%;
  width: 114%;
  height: 114%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  transform-origin: center center;
  will-change: transform, opacity, filter;
}

.art-backdrop {
  z-index: 1;
  opacity: 0.9;
  transform: scale(1.04);
  filter: saturate(0.95) contrast(1.08);
}

.art-sky {
  z-index: 2;
  opacity: var(--sky-opacity);
  transform: translate3d(0, var(--sky-y), 0) scale(var(--sky-scale));
  filter: saturate(0.9) contrast(1.06);
}

.art-stars {
  z-index: 3;
  opacity: var(--stars-opacity);
  transform: translate3d(0, var(--stars-y), 0) scale(1.035);
  mix-blend-mode: screen;
}

.art-clouds {
  z-index: 6;
  opacity: var(--cloud-opacity);
  transform: translate3d(var(--cloud-x), var(--cloud-y), 0) scale(1.055);
  filter: blur(0.2px) saturate(0.95);
}

.art-mountains-back {
  z-index: 9;
  opacity: var(--mountain-back-opacity);
  transform: translate3d(0, var(--mountain-back-y), 0) scale(var(--mountain-back-scale));
}

.art-mountains-front {
  z-index: 12;
  opacity: var(--mountain-front-opacity);
  transform: translate3d(0, var(--mountain-front-y), 0) scale(var(--mountain-front-scale));
}

.art-forest-back {
  z-index: 16;
  opacity: var(--forest-opacity);
  transform: translate3d(0, var(--forest-y), 0) scale(var(--forest-scale));
  filter: contrast(1.12);
}

.art-ocean {
  z-index: 20;
  opacity: var(--ocean-opacity);
  transform: translate3d(0, var(--ocean-y), 0) scale(var(--ocean-scale));
  filter: saturate(1.05) contrast(1.04);
}

.art-wildlife {
  z-index: 24;
  opacity: var(--wildlife-opacity);
  transform: translate3d(var(--wildlife-x), var(--wildlife-y), 0);
}

.art-foreground {
  z-index: 28;
  opacity: var(--foreground-opacity);
  transform: translate3d(0, var(--foreground-y), 0) scale(var(--foreground-scale));
  filter: saturate(0.9) contrast(1.12);
}

.scene-vignette {
  position: absolute;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 6, 0.9) 0%, rgba(3, 7, 6, 0.68) 30%, rgba(3, 7, 6, 0.18) 62%, rgba(3, 7, 6, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 7, 6, 0.24) 0%, rgba(3, 7, 6, 0.02) 42%, rgba(3, 7, 6, 0.92) 100%),
    radial-gradient(circle at 78% 20%, rgba(195, 164, 106, 0.12), transparent 24rem),
    radial-gradient(circle at 54% 68%, rgba(43, 161, 171, 0.18), transparent 28rem);
}

.island-hero-copy {
  position: relative;
  z-index: 50;
  width: min(46rem, calc(100vw - (var(--gutter) * 2)));
  opacity: var(--hero-copy-opacity);
  transform: translateY(var(--hero-copy-y));
  will-change: opacity, transform;
}

.island-hero-copy .eyebrow {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.island-hero-copy h1 {
  font-size: clamp(2.45rem, 5.05vw, 5.15rem);
  max-width: 14ch;
  text-wrap: balance;
}

.island-hero-copy .hero-lede {
  max-width: 36rem;
  color: rgba(232, 222, 201, 0.86);
}

@keyframes starsBreathe {
  from {
    opacity: 0.56;
    transform: translate3d(0, 0.05rem, 0) scale(1.015);
  }
  to {
    opacity: 0.9;
    transform: translate3d(0.08rem, -0.15rem, 0) scale(1.018);
  }
}

@keyframes marineHaze {
  from {
    opacity: 0.72;
    transform: translate3d(-0.55rem, 0.1rem, 0) scale(1.035);
  }
  to {
    opacity: 0.9;
    transform: translate3d(0.75rem, -0.18rem, 0) scale(1.038);
  }
}

@keyframes distantDrift {
  from {
    transform: translate3d(-0.12rem, -0.1rem, 0) scale(1.012);
  }
  to {
    transform: translate3d(0.14rem, -0.28rem, 0) scale(1.016);
  }
}

@keyframes oceanShimmer {
  from {
    opacity: 0.88;
    filter: saturate(0.94) brightness(0.96);
    transform: translate3d(0, 0.18rem, 0) scale(1.01);
  }
  to {
    opacity: 0.98;
    filter: saturate(1.08) brightness(1.04);
    transform: translate3d(0.18rem, -0.12rem, 0) scale(1.014);
  }
}

@keyframes wildlifeSurface {
  from {
    opacity: 0.24;
    transform: translate3d(-0.08rem, 0.12rem, 0);
  }
  to {
    opacity: 0.44;
    transform: translate3d(0.18rem, -0.16rem, 0);
  }
}

@keyframes foregroundBreath {
  from {
    transform: translate3d(0, 0.25rem, 0) scale(1.01);
  }
  to {
    transform: translate3d(-0.12rem, 0.05rem, 0) scale(1.014);
  }
}

@keyframes heroCopyRise {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cinematic-hero {
  --hero-progress: 0.02;
  --hero-copy-opacity: 1;
  --hero-copy-y: 0px;
  --hero-image-scale: 1.045;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-image-brightness: 0.86;
  --hero-frame-y: 0px;
  --hero-radius: 0px;
  --hero-frame-opacity: 0;
  --hero-letterbox: 0px;
  --hero-end-fade: 0;
  --hero-meta-opacity: 0;
  --hero-meta-y: 18px;
  --hero-story-opacity: 0;
  --hero-story-y: 34px;
  --hero-story-line-scale: 0.08;
  --hero-waterlight-opacity: 0.28;
  --hero-waterlight-x: 0px;
  --hero-waterlight-y: 0px;
  --hero-rail-scale: 0.04;
  position: relative;
  height: 285svh;
  min-height: 0;
  overflow: visible;
  background: #030504;
}

.cinematic-hero::before,
.cinematic-hero::after {
  display: none;
}

.cinematic-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 7rem var(--gutter) 4.25rem;
  overflow: hidden;
  isolation: isolate;
  background: #030504;
}

.cinematic-sticky::before,
.cinematic-sticky::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: 18;
  height: var(--hero-letterbox);
  pointer-events: none;
  background: #020403;
}

.cinematic-sticky::before {
  top: -1px;
}

.cinematic-sticky::after {
  bottom: -1px;
  box-shadow: 0 -24px 90px rgba(2, 4, 3, 0.62);
}

.cinematic-visual,
.cinematic-visual picture,
.cinematic-image,
.cinematic-waterlight,
.cinematic-grain,
.cinematic-vignette,
.cinematic-fade {
  position: absolute;
  inset: 0;
}

.cinematic-visual {
  z-index: 0;
  overflow: hidden;
  clip-path: inset(var(--hero-frame-y) 0px var(--hero-frame-y) 0px round 0);
  transform: translateZ(0);
  will-change: clip-path;
}

.cinematic-visual::before {
  content: '';
  position: absolute;
  inset: clamp(1rem, 2vw, 2rem);
  z-index: 10;
  border-top: 1px solid rgba(211, 178, 111, 0.28);
  border-bottom: 1px solid rgba(211, 178, 111, 0.28);
  opacity: var(--hero-frame-opacity);
  pointer-events: none;
}

.cinematic-image {
  width: 104%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(var(--hero-image-scale));
  filter: saturate(0.94) contrast(1.1) brightness(var(--hero-image-brightness));
  transform-origin: 52% 54%;
  will-change: transform, filter;
}

.cinematic-waterlight {
  top: auto;
  z-index: 3;
  height: 38%;
  opacity: var(--hero-waterlight-opacity);
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse at 52% 74%, rgba(219, 188, 123, 0.22), transparent 38%),
    linear-gradient(92deg, transparent 18%, rgba(195, 164, 106, 0.16) 50%, transparent 76%);
  transform: translate3d(var(--hero-waterlight-x), var(--hero-waterlight-y), 0);
  filter: blur(0.2px);
  pointer-events: none;
}

.cinematic-grain {
  z-index: 4;
  opacity: 0.12;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.28), transparent 0.08rem),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.18), transparent 0.07rem),
    radial-gradient(circle at 44% 76%, rgba(255, 255, 255, 0.18), transparent 0.05rem);
  background-size: 7px 7px, 11px 11px, 13px 13px;
  mix-blend-mode: soft-light;
}

.cinematic-vignette {
  z-index: 5;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 5, 4, 0.94) 0%, rgba(2, 5, 4, 0.76) 31%, rgba(2, 5, 4, 0.2) 61%, rgba(2, 5, 4, 0.42) 100%),
    linear-gradient(180deg, rgba(2, 5, 4, 0.38) 0%, rgba(2, 5, 4, 0.02) 38%, rgba(2, 5, 4, 0.92) 100%),
    radial-gradient(circle at 52% 55%, rgba(43, 92, 98, 0.16), transparent 31rem),
    radial-gradient(circle at 72% 16%, rgba(195, 164, 106, 0.14), transparent 26rem);
}

.cinematic-fade {
  z-index: 22;
  pointer-events: none;
  background: #030504;
  opacity: var(--hero-end-fade);
}

.cinematic-copy {
  position: relative;
  z-index: 12;
  width: min(48rem, calc(100vw - (var(--gutter) * 2)));
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
  will-change: opacity, transform;
}

.cinematic-copy > * {
  animation: cinematicLineIn 820ms cubic-bezier(0.2, 0.72, 0.18, 1) both;
}

.cinematic-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

.cinematic-copy > *:nth-child(3) {
  animation-delay: 180ms;
}

.cinematic-copy > *:nth-child(4) {
  animation-delay: 270ms;
}

.cinematic-copy > *:nth-child(5) {
  animation-delay: 360ms;
}

.cinematic-copy .eyebrow {
  max-width: 100%;
  margin-bottom: 0.95rem;
  color: rgba(215, 188, 126, 0.92);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.cinematic-brand {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.25vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(232, 222, 201, 0.92);
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.54);
}

.cinematic-copy h1 {
  max-width: 13.1ch;
  font-size: clamp(2.9rem, 5.45vw, 5.8rem);
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
}

.cinematic-copy .hero-lede {
  max-width: 35rem;
  color: rgba(232, 222, 201, 0.84);
  text-shadow: 0 18px 55px rgba(0, 0, 0, 0.62);
}

.cinematic-scroll-story {
  position: absolute;
  top: calc(clamp(7.8rem, 15svh, 11rem) + var(--hero-letterbox));
  left: var(--gutter);
  right: var(--gutter);
  z-index: 13;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(18rem, 0.52fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: end;
  opacity: var(--hero-story-opacity);
  transform: translate3d(0, var(--hero-story-y), 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.cinematic-scroll-story::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.4rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(211, 178, 111, 0.48), rgba(232, 222, 201, 0.2), transparent);
  transform: scaleX(var(--hero-story-line-scale));
  transform-origin: left center;
}

.cinematic-scroll-copy {
  max-width: 47rem;
}

.cinematic-scroll-copy .eyebrow {
  color: rgba(215, 188, 126, 0.92);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.58);
}

.cinematic-scroll-copy h2 {
  max-width: 13ch;
  margin-top: 0.85rem;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 26px 90px rgba(0, 0, 0, 0.72);
}

.cinematic-scroll-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 1.4rem;
  color: rgba(232, 222, 201, 0.78);
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  line-height: 1.55;
  text-shadow: 0 20px 62px rgba(0, 0, 0, 0.72);
}

.cinematic-proof-list {
  display: grid;
  gap: 1rem;
  max-width: 31rem;
  padding-bottom: 0.25rem;
}

.cinematic-proof-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 222, 201, 0.2);
}

.cinematic-proof-item span {
  color: rgba(211, 178, 111, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cinematic-proof-item p {
  margin: 0;
  color: rgba(232, 222, 201, 0.76);
  font-size: clamp(0.86rem, 1.05vw, 0.98rem);
  line-height: 1.5;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.7);
}

.cinematic-proof-item strong {
  display: block;
  margin-bottom: 0.18rem;
  color: rgba(232, 222, 201, 0.94);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.45vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.cinematic-meta {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: calc(clamp(3.2rem, 7svh, 5.6rem) + var(--hero-letterbox));
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 3rem);
  opacity: var(--hero-meta-opacity);
  transform: translate3d(0, var(--hero-meta-y), 0);
  pointer-events: none;
  will-change: opacity, transform;
}

.cinematic-meta span {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(232, 222, 201, 0.25);
  color: rgba(232, 222, 201, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cinematic-rail {
  position: absolute;
  right: var(--gutter);
  bottom: 1.25rem;
  z-index: 20;
  width: clamp(5.5rem, 12vw, 9rem);
  height: 1px;
  overflow: hidden;
  background: rgba(232, 222, 201, 0.18);
}

.cinematic-rail span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(195, 164, 106, 0.2), rgba(232, 222, 201, 0.82));
  transform: scaleX(var(--hero-rail-scale));
  transform-origin: left center;
}

@keyframes cinematicLineIn {
  from {
    opacity: 0;
    transform: translateY(1.05rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.75rem, 9vw, 8.75rem) var(--gutter);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.28fr 0.9fr 0.62fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
}

.cinematic-hero + .intro-grid {
  position: relative;
  z-index: 3;
  isolation: isolate;
  margin-top: -14svh;
  padding-top: clamp(6rem, 9vw, 8.5rem);
}

.cinematic-hero + .intro-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.96) 0%, #070a07 16rem, rgba(7, 10, 7, 0.82) 100%),
    radial-gradient(circle at 20% 0%, rgba(24, 56, 43, 0.42), transparent 30rem);
  box-shadow: 0 -1px 0 rgba(232, 222, 201, 0.08);
}

.cinematic-hero + .intro-grid > * {
  position: relative;
  z-index: 1;
}

.intro-copy {
  display: grid;
  gap: 1.1rem;
  padding-top: 0.6rem;
}

.visual-index,
.service-proof-reel,
.contact-moodboard {
  max-width: none;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  padding-inline: var(--gutter);
  background:
    linear-gradient(140deg, rgba(5, 8, 6, 0.96), rgba(15, 34, 25, 0.92)),
    radial-gradient(circle at 16% 14%, rgba(195, 164, 106, 0.13), transparent 28rem),
    radial-gradient(circle at 86% 74%, rgba(32, 88, 73, 0.2), transparent 30rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.visual-index {
  grid-template-columns: minmax(18rem, 0.38fr) minmax(0, 1fr);
  align-items: end;
}

.visual-index-copy,
.service-proof-copy,
.contact-moodboard-copy {
  display: grid;
  gap: 1.15rem;
}

.visual-index-copy h2,
.service-proof-copy h2,
.contact-moodboard-copy h2 {
  max-width: 9.5ch;
}

.visual-index-copy p:not(.eyebrow),
.service-proof-copy p:not(.eyebrow),
.contact-moodboard-copy p:not(.eyebrow) {
  max-width: 35rem;
}

.visual-index-rail,
.service-proof-grid,
.contact-moodboard-grid {
  display: grid;
  gap: clamp(0.8rem, 1.6vw, 1rem);
}

.visual-index-rail {
  grid-template-columns: 1.25fr 0.82fr;
  grid-template-rows: repeat(2, minmax(13rem, 18vw));
}

.service-proof-reel {
  grid-template-columns: minmax(18rem, 0.34fr) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(2.5rem, 5vw, 5.5rem);
  margin-top: -1px;
}

.service-proof-copy {
  align-self: start;
  max-width: 31rem;
}

.service-proof-copy h2 {
  max-width: 10.75ch;
  font-size: clamp(3.1rem, 5.4vw, 6rem);
}

.service-proof-copy p:not(.eyebrow) {
  max-width: 30rem;
}

.service-proof-grid {
  grid-template-columns: 0.9fr 1.05fr 0.9fr;
  align-items: stretch;
}

.production-system-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.95rem, 1.8vw, 1.35rem);
  align-items: stretch;
}

.production-system-media {
  position: relative;
  display: grid;
  gap: clamp(0.7rem, 1.4vw, 1rem);
  min-height: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.production-system-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #08100b;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.42);
}

.production-system-video-frame img,
.production-system-video-frame video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.media-panel > video,
.portfolio-cell > video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--position, center);
}

.production-system-media::after {
  display: none;
}

.production-system-media figcaption {
  position: static;
  z-index: 2;
  max-width: 46rem;
  color: rgba(232, 222, 201, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
  padding: 0.1rem 0 0.1rem 1rem;
  border-left: 1px solid rgba(195, 164, 106, 0.52);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.production-system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.3vw, 0.95rem);
  border: 0;
  background: transparent;
}

.production-system-list article {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 0.62rem;
  min-height: clamp(9.5rem, 12vw, 11rem);
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-bottom: 0;
  background:
    linear-gradient(135deg, rgba(7, 10, 7, 0.78), rgba(13, 30, 22, 0.58)),
    radial-gradient(circle at 100% 0%, rgba(195, 164, 106, 0.08), transparent 9rem);
}

.production-system-list span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.production-system-list h3 {
  max-width: 12rem;
  font-size: clamp(1.25rem, 1.75vw, 1.95rem);
  letter-spacing: -0.03em;
}

.production-system-list p {
  max-width: 22rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-moodboard {
  grid-template-columns: minmax(17rem, 0.35fr) minmax(0, 1fr);
  align-items: center;
}

.contact-moodboard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(15rem, 1fr) auto;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: rgba(232, 222, 201, 0.025);
  contain: paint;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.36);
}

.visual-card.large {
  grid-row: span 2;
}

.visual-card.tall {
  min-height: 0;
}

.visual-card img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: clamp(15rem, 20vw, 22rem);
  object-fit: cover;
}

.visual-card figcaption {
  position: relative;
  z-index: 3;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(7, 10, 7, 0.96), rgba(15, 34, 25, 0.88)),
    radial-gradient(circle at 90% 0%, rgba(195, 164, 106, 0.13), transparent 12rem);
}

.visual-card figcaption span {
  display: block;
  margin-bottom: 0.42rem;
  color: rgba(215, 188, 126, 0.92);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-card figcaption p {
  max-width: 21rem;
  color: rgba(232, 222, 201, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.benefit-strip {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(18rem, 0.74fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  padding-inline: var(--gutter);
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 0.96), rgba(13, 28, 20, 0.88)),
    radial-gradient(circle at 18% 10%, rgba(195,164,106,0.12), transparent 26rem),
    linear-gradient(135deg, rgba(40, 57, 48, 0.22), rgba(9, 14, 10, 0.05));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit-sticky {
  position: sticky;
  top: 8rem;
  align-self: start;
}

.benefit-sticky h2 {
  max-width: 8.5ch;
}

.benefit-list {
  display: grid;
}

.benefit-row {
  display: grid;
  grid-template-columns: 4rem minmax(0, 0.85fr) minmax(15rem, 0.6fr);
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-row:first-child {
  border-top: 1px solid var(--line);
}

.benefit-row span,
.process-steps span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.benefit-row h3 {
  font-size: clamp(1.8rem, 3vw, 3.35rem);
}

.split-story,
.service-block,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.82fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.media-stack {
  position: relative;
  min-height: 42rem;
}

.media-panel.tall {
  width: 70%;
  min-height: 36rem;
}

.media-panel.wide {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62%;
  min-height: 18rem;
}

.story-copy {
  display: grid;
  gap: 1.2rem;
}

.story-copy h2 {
  margin-bottom: 0.3rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.6rem;
  padding-bottom: 0.32rem;
  border-bottom: 1px solid var(--gold);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 220ms ease, color 220ms ease;
}

.section-heading {
  max-width: 58rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.compact {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 43rem;
  margin-top: 1.25rem;
}

.industry-marquee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border: 0;
  overflow: hidden;
}

.industry-tile {
  position: relative;
  overflow: hidden;
  min-height: clamp(16rem, 24vw, 19rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(232, 222, 201, 0.025);
  box-shadow: inset 0 0 0 1px rgba(232, 222, 201, 0.04);
  transition: box-shadow 220ms ease;
}

.industry-tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--tile-position, center);
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
  transform: scale(1.01);
  transition: transform 520ms ease, filter 520ms ease;
}

.industry-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(125deg, rgba(6, 13, 8, 0.82), rgba(6, 13, 8, 0.18));
  transition: opacity 220ms ease;
}

.industry-tile:hover {
  box-shadow: inset 0 0 0 1px rgba(202, 164, 95, 0.24);
}

.industry-tile:hover .industry-tile-media {
  filter: saturate(0.98) contrast(1.1) brightness(0.9);
  transform: scale(1.045);
}

.industry-tile:hover::before {
  opacity: 0.68;
}

.industry-tile span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3.45rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.industry-tile p {
  position: relative;
  z-index: 2;
  color: rgba(232, 222, 201, 0.82);
}

.portfolio-preview {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(16rem, 0.48fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-inline: var(--gutter);
  background:
    linear-gradient(130deg, rgba(10, 22, 16, 0.93), rgba(5, 8, 6, 0.96)),
    radial-gradient(circle at 80% 30%, rgba(195, 164, 106, 0.13), transparent 28rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.portfolio-copy {
  display: grid;
  gap: 1.25rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(13rem, 20vw);
  gap: 1rem;
}

.portfolio-cell.large {
  grid-row: span 2;
}

.proof-columns,
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-item,
.process-steps article {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: rgba(7, 10, 7, 0.7);
}

.proof-item span {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.95;
  color: var(--sand);
}

.faq-list {
  max-width: 58rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.7vw, 2.2rem);
  line-height: 1.05;
  color: var(--sand);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  float: right;
  color: var(--gold);
  font-family: var(--sans);
}

details[open] summary::after {
  content: '-';
}

details p {
  max-width: 48rem;
  padding: 0 0 1.5rem;
}

.final-cta {
  max-width: none;
  padding-inline: var(--gutter);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(195,164,106,0.2), transparent 25rem),
    linear-gradient(180deg, rgba(16,37,29,0.2), rgba(7,10,7,0.92));
}

.cta-inner {
  max-width: 58rem;
  margin: 0 auto;
}

.cta-inner p:not(.eyebrow) {
  max-width: 42rem;
  margin: 1.25rem auto 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem var(--gutter);
  border-top: 1px solid var(--line);
  background: #060806;
}

.site-footer p {
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.5rem;
  color: rgba(232, 222, 201, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 8rem var(--gutter) clamp(4.5rem, 8vw, 7rem);
}

.page-hero-inner {
  max-width: 68rem;
  transform: translate3d(0, var(--page-hero-copy-y), 0);
  opacity: var(--page-hero-copy-opacity);
  will-change: transform, opacity;
}

.page-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(2.65rem, 4.9vw, 5rem);
}

.services-hero h1 {
  max-width: 13.4ch;
}

.contact-hero h1 {
  max-width: 12.8ch;
}

.page-hero-rail {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 1.35rem;
  height: 1px;
  overflow: hidden;
  background: rgba(232, 222, 201, 0.16);
}

.page-hero-rail span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(195, 164, 106, 0.1), rgba(215, 188, 126, 0.9));
  transform: scaleX(var(--page-hero-rail));
  transform-origin: left center;
}

.service-menu {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.anchor-list a {
  padding: 0.82rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(232, 222, 201, 0.78);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.anchor-list a:hover {
  transform: translateY(-2px);
  color: var(--sand);
  background: rgba(195,164,106,0.08);
}

.services-list .section {
  padding-block: clamp(3.8rem, 7vw, 7rem);
}

.service-block {
  border-top: 1px solid var(--line);
}

.service-block.reverse .service-media {
  order: 2;
}

.service-block.reverse .service-copy {
  order: 1;
}

.service-media {
  min-height: clamp(24rem, 45vw, 41rem);
}

.service-copy {
  display: grid;
  gap: 1rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.deliverables li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(232, 222, 201, 0.78);
  font-size: 0.92rem;
}

.deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--gold);
}

.process-section,
.contact-trust {
  max-width: none;
  padding-inline: var(--gutter);
  background: rgba(232, 222, 201, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps {
  max-width: var(--max);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps h3 {
  margin: 2.5rem 0 0.8rem;
}

.contact-layout {
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 8rem;
  display: grid;
  gap: 1.2rem;
}

.direct-contact,
.service-area-note {
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.direct-contact span,
.service-area-note span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact a {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  line-height: 1.08;
  color: var(--sand);
  overflow-wrap: anywhere;
}

.inquiry-form {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(232, 222, 201, 0.04);
  box-shadow: var(--shadow);
}

.form-hidden {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label,
fieldset {
  min-width: 0;
}

label span,
legend {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(232, 222, 201, 0.76);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(232, 222, 201, 0.18);
  border-radius: 0;
  padding: 0.95rem 1rem;
  color: var(--sand);
  background: rgba(7, 10, 7, 0.54);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(195, 164, 106, 0.72);
  background: rgba(7, 10, 7, 0.78);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.services-needed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(232, 222, 201, 0.18);
}

.services-needed legend {
  padding: 0 0.45rem;
}

.services-needed label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.services-needed input {
  width: auto;
  accent-color: var(--gold);
}

.services-needed label span {
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(232, 222, 201, 0.78);
}

.inquiry-form .button {
  margin-top: 1.2rem;
  width: 100%;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.84rem;
}

.form-status {
  min-height: 1.25rem;
  margin: 0.9rem 0 0;
  color: rgba(232, 222, 201, 0.78);
  font-size: 0.84rem;
}

.trust-list {
  max-width: var(--max);
  margin: 0 auto;
  columns: 2;
  column-gap: clamp(2rem, 5vw, 5rem);
}

.trust-list p {
  break-inside: avoid;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.05;
  color: var(--sand);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

@media (max-width: 980px) {
  h1 {
    font-size: clamp(3rem, 12vw, 6.2rem);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 4.7rem var(--gutter) auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(7, 10, 7, 0.94);
    border: 1px solid var(--line);
    backdrop-filter: blur(22px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 0.9rem 0.35rem;
    margin: 0;
  }

  .primary-nav a[aria-current='page']:not(.nav-cta) {
    padding-inline: 0.8rem;
  }

  .primary-nav .nav-cta {
    margin-top: 0.45rem;
    text-align: center;
  }

  .hero-inner,
  .intro-grid,
  .benefit-strip,
  .split-story,
  .portfolio-preview,
  .visual-index,
  .service-proof-reel,
  .contact-moodboard,
  .production-system-panel,
  .service-block,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 6.5rem;
  }

  .hero-reel {
    min-height: auto;
  }

  .reel-frame {
    min-height: 28rem;
    transform: none;
  }

  .benefit-sticky,
  .contact-aside {
    position: static;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .media-stack {
    min-height: 32rem;
  }

  .industry-marquee,
  .visual-index-rail,
  .service-proof-grid,
  .contact-moodboard-grid,
  .proof-columns,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .visual-index-rail {
    grid-template-rows: none;
  }

  .visual-card.large {
    grid-row: auto;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cell.large {
    grid-row: auto;
  }

  .production-system-list {
    grid-template-columns: 1fr;
  }

  .service-block.reverse .service-media,
  .service-block.reverse .service-copy {
    order: initial;
  }

  .trust-list {
    columns: 1;
  }

  .island-scroll {
    height: 380svh;
  }

  .island-hero {
    min-height: 100svh;
  }

  .island-hero .island-sticky {
    padding-top: 7.5rem;
  }

  .island-hero-copy h1 {
    font-size: clamp(2.8rem, 10vw, 5.2rem);
  }

  .cinematic-hero {
    height: 255svh;
  }

  .cinematic-hero + .intro-grid {
    margin-top: -10svh;
    padding-top: clamp(5rem, 10vw, 6.5rem);
  }

  .cinematic-sticky {
    padding-top: 6.8rem;
  }

  .cinematic-copy {
    width: min(44rem, calc(100vw - (var(--gutter) * 2)));
  }

  .cinematic-scroll-story {
    top: calc(clamp(7.7rem, 13svh, 9.5rem) + var(--hero-letterbox));
    right: auto;
    grid-template-columns: 1fr;
    max-width: min(41rem, calc(100vw - (var(--gutter) * 2)));
    gap: 1.45rem;
  }

  .cinematic-scroll-copy h2 {
    max-width: 12.5ch;
    font-size: clamp(2.7rem, 8vw, 4.7rem);
  }

  .cinematic-scroll-copy p:not(.eyebrow) {
    max-width: 31rem;
  }

  .cinematic-proof-list {
    max-width: 34rem;
    gap: 0.75rem;
  }

  .cinematic-copy h1 {
    font-size: clamp(2.75rem, 8.6vw, 5.2rem);
    max-width: 12.8ch;
  }

  .cinematic-meta {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .cinematic-meta span:not(:first-child) {
    display: none;
  }

  .island-copy {
    padding-top: 9svh;
  }

  .island-copy h2 {
    font-size: clamp(2.8rem, 12vw, 5.6rem);
  }

  .mountain-layer {
    bottom: 24svh;
  }

  .mountain-front {
    bottom: 18svh;
  }

  .forest-back {
    bottom: 16svh;
  }

  .forest-front {
    bottom: 10svh;
  }

  .ocean-layer {
    height: 38svh;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 1rem;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-logo-frame {
    width: 2.75rem;
    height: 2.42rem;
    border-radius: 0.58rem;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .page-hero {
    padding-top: 7rem;
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4.2rem);
  }

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

  .button {
    width: 100%;
  }

  .cinematic-hero {
    height: 235svh;
  }

  .cinematic-hero + .intro-grid {
    margin-top: -7svh;
    padding-top: 4.25rem;
  }

  .cinematic-sticky {
    align-items: center;
    padding: 6.6rem 1rem 3.4rem;
  }

  .cinematic-image {
    width: 118%;
    height: 110%;
    object-position: 56% center;
  }

  .cinematic-vignette {
    background:
      linear-gradient(90deg, rgba(2, 5, 4, 0.92) 0%, rgba(2, 5, 4, 0.72) 54%, rgba(2, 5, 4, 0.32) 100%),
      linear-gradient(180deg, rgba(2, 5, 4, 0.48) 0%, rgba(2, 5, 4, 0.08) 36%, rgba(2, 5, 4, 0.92) 100%),
      radial-gradient(circle at 50% 26%, rgba(195, 164, 106, 0.14), transparent 20rem);
  }

  .cinematic-copy {
    width: calc(100vw - 2rem);
  }

  .cinematic-copy .eyebrow {
    max-width: 20rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .cinematic-brand {
    font-size: 1.12rem;
  }

  .cinematic-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 10.6vw, 3.45rem);
  }

  .cinematic-copy .hero-lede {
    max-width: 21.5rem;
    font-size: 0.98rem;
  }

  .cinematic-scroll-story {
    top: auto;
    right: 1rem;
    bottom: calc(5.9rem + var(--hero-letterbox));
    left: 1rem;
    max-width: none;
    gap: 1rem;
  }

  .cinematic-scroll-story::before {
    bottom: -1rem;
  }

  .cinematic-scroll-copy h2 {
    max-width: 12.4ch;
    font-size: clamp(2.15rem, 10vw, 3.15rem);
  }

  .cinematic-scroll-copy p:not(.eyebrow) {
    max-width: 22rem;
    margin-top: 1rem;
    font-size: 0.96rem;
  }

  .cinematic-proof-list {
    display: none;
  }

  .cinematic-meta {
    display: none;
  }

  .cinematic-rail {
    right: 1rem;
    bottom: 1.05rem;
    width: 5.5rem;
  }

  .reel-caption,
  .deliverables,
  .form-grid,
  .services-needed {
    grid-template-columns: 1fr;
  }

  .media-stack {
    min-height: 27rem;
  }

  .media-panel.tall {
    width: 82%;
    min-height: 24rem;
  }

  .media-panel.wide {
    width: 68%;
    min-height: 13rem;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .island-scroll {
    height: 330svh;
  }

  .island-hero {
    min-height: 100svh;
  }

  .island-hero .island-sticky {
    align-items: center;
    padding-top: 7.3rem;
    padding-bottom: 4.5rem;
  }

  .island-hero-copy {
    width: calc(100vw - 2rem);
  }

  .island-hero-copy .eyebrow {
    max-width: 21rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .island-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
    max-width: 12.5ch;
  }

  .island-hero-copy .hero-lede {
    font-size: 0.98rem;
    max-width: 21rem;
    overflow-wrap: break-word;
  }

  .scene-vignette {
    background:
      linear-gradient(90deg, rgba(3, 7, 6, 0.9) 0%, rgba(3, 7, 6, 0.66) 56%, rgba(3, 7, 6, 0.28) 100%),
      linear-gradient(180deg, rgba(3, 7, 6, 0.54) 0%, rgba(3, 7, 6, 0.14) 42%, rgba(3, 7, 6, 0.9) 100%),
      radial-gradient(circle at 52% 22%, rgba(195, 164, 106, 0.12), transparent 18rem);
  }

  .scene-art {
    inset: -9%;
    width: 118%;
    height: 118%;
  }

  .island-copy {
    width: calc(100% - 2rem);
    padding-top: 2rem;
  }

  .island-copy h2 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .island-copy p:not(.eyebrow) {
    font-size: 0.95rem;
  }

  .cloud-layer span {
    width: 44vw;
    height: 4.4rem;
  }

  .whale-tail {
    left: 55%;
    transform: scale(0.75) translateY(var(--animal-y));
  }

  .otter {
    left: 10%;
    transform: translateY(var(--animal-y)) translateX(var(--otter-x)) scale(0.78);
  }

  .dorsal-fin {
    right: 12%;
    transform: translateY(var(--animal-y)) rotate(-8deg) scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .island-scroll {
    height: auto;
  }

  .island-hero {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .island-sticky {
    position: relative;
    min-height: 100svh;
  }

  .cinematic-hero {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .cinematic-sticky {
    position: relative;
    min-height: 100svh;
  }

  .cinematic-visual {
    clip-path: none;
  }

  .cinematic-copy {
    opacity: 1;
    transform: none;
  }

  .cinematic-scroll-story {
    display: none;
  }

  .cinematic-meta,
  .cinematic-rail {
    display: none;
  }

  .island-copy {
    opacity: 1;
    transform: none;
  }
}
