:root {
  color-scheme: light;
  --ink: #111514;
  --ink-soft: #1a201e;
  --paper: #f2f1eb;
  --paper-deep: #e4e5de;
  --frost: #cbd8d8;
  --accent: #c9ff63;
  --accent-dark: #8eb637;
  --white: #ffffff;
  --muted: #6f7672;
  --line: rgba(17, 21, 20, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shell: min(1440px, calc(100vw - 80px));
  --header-height: 84px;
  --radius-lg: 42px;
  --radius-md: 26px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --font-sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.social-dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
}

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

.ui-icon {
  width: 1em;
  height: 1em;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon-play {
  fill: currentColor;
  stroke: none;
}

figure,
h1,
h2,
h3,
p {
  margin-top: 0;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  will-change: transform;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 900;
  width: min(1500px, calc(100% - 40px));
  height: var(--header-height);
  padding-inline: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid transparent;
  border-radius: 0 0 22px 22px;
  color: var(--white);
  transition: height 0.45s var(--ease-out), background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(15, 19, 18, 0.82);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 43px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  transition: transform 0.4s var(--ease-out), color 0.4s ease, background 0.4s ease;
}

.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
  background: var(--accent);
  color: var(--ink);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  content: "";
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  margin-left: 10px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--ink);
}

.site-nav .nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.site-nav .nav-cta span {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.site-nav .nav-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--white);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out);
}

.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 26px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 72px) 0 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 22%, rgba(99, 127, 121, 0.25), transparent 34%),
    linear-gradient(135deg, #111514 0%, #171d1b 60%, #0d1110 100%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  content: "";
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-orb-one {
  top: 16%;
  right: 4%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 255, 99, 0.15);
  box-shadow: inset 0 0 90px rgba(201, 255, 99, 0.04);
}

.hero-orb-two {
  bottom: -180px;
  left: 22%;
  width: 480px;
  height: 480px;
  background: rgba(43, 70, 63, 0.2);
  filter: blur(90px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  max-width: 950px;
  margin-bottom: 34px;
  font-size: clamp(4.25rem, 8.2vw, 9rem);
  font-weight: 750;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.hero h1 em,
.section-heading h2 em,
.film-copy h2 em,
.contact-copy h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero h1 em {
  color: var(--accent);
}

.hero-line {
  display: block;
  padding-right: 0.08em;
  overflow: hidden;
}

.hero-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.15s var(--ease-out);
}

.is-ready .hero-line:first-child > span { transition-delay: 0.1s; }
.is-ready .hero-line:nth-child(2) > span { transition-delay: 0.2s; }
.is-ready .hero-line > span { transform: translateY(0); }

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), background 0.3s ease, box-shadow 0.35s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(201, 255, 99, 0.12);
}

.button-accent:hover {
  background: var(--white);
  box-shadow: 0 18px 44px rgba(201, 255, 99, 0.18);
}

.text-link {
  position: relative;
  padding-block: 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform-origin: left;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transition: transform 0.35s var(--ease-out);
}

.text-link:hover::after {
  transform: scaleX(0.45);
}

.hero-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}

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

.is-ready .hero-copy .eyebrow { transition-delay: 0.05s; }
.is-ready .hero-lead { transition-delay: 0.38s; }
.is-ready .hero-actions { transition-delay: 0.5s; }

.hero-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0;
  justify-self: end;
  opacity: 0;
  overflow: visible;
  transition: opacity 0.7s ease 0.25s;
}

.is-ready .hero-visual {
  opacity: 1;
}

.hero-image-wrap {
  position: relative;
  isolation: isolate;
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--frost);
  clip-path: inset(100% 0 0 0 round var(--radius-lg));
  transition: clip-path 1.4s var(--ease-out) 0.25s;
}

.is-ready .hero-image-wrap {
  clip-path: inset(0 0 0 0 round var(--radius-lg));
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 9, 8, 0.32));
  content: "";
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.72s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0) scale(1.075);
  transition: transform 0.18s ease-out;
  will-change: transform;
}

.hero-slider-nav {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  background: rgba(10, 15, 14, 0.28);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(4, 10, 8, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visual-index {
  min-width: 56px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-slider-button {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, transform 0.3s var(--ease-out);
}

.hero-slider-button:hover {
  transform: scale(1.06);
  background: var(--accent);
  color: var(--ink);
}

.hero-slider-button:active {
  transform: scale(0.94);
}

.hero-slider-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-slider-toggle {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 50% 50% 0;
}

.slider-icon-play {
  display: none;
}

.hero-slider-toggle.is-paused .slider-icon-pause {
  display: none;
}

.hero-slider-toggle.is-paused .slider-icon-play {
  display: block;
}

.hero-visual figcaption {
  width: 100%;
  padding: 13px 1px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition-delay: 0.7s;
}

.availability {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(201, 255, 99, 0.09);
  animation: availability-pulse 2.2s ease-out infinite;
}

@keyframes availability-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 255, 99, 0.08); }
  50% { box-shadow: 0 0 0 9px rgba(201, 255, 99, 0); }
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.scroll-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: scroll-arrow-bob 1.55s var(--ease-out) infinite;
}

.scroll-cue:hover .scroll-arrow {
  border-color: var(--accent);
  background: rgba(201, 255, 99, 0.12);
}

@keyframes scroll-arrow-bob {
  0%, 100% { transform: translateY(-2px); opacity: 0.62; }
  50% { transform: translateY(3px); opacity: 1; }
}

/* Running discipline line */
.marquee {
  position: relative;
  z-index: 5;
  padding-block: 15px;
  overflow: hidden;
  background: var(--accent);
  color: var(--ink);
  border-block: 1px solid var(--ink);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 24s linear infinite;
}

.marquee-group {
  min-width: 100vw;
  padding-right: 28px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
}

.marquee-group span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee-group i {
  font-style: normal;
  font-size: 9px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Shared section typography */
.section-pad {
  padding-block: clamp(110px, 12vw, 190px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 56px;
  align-items: start;
}

.section-kicker {
  color: var(--muted);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.48);
}

.section-heading h2,
.film-copy h2,
.contact-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(3.15rem, 6.1vw, 7.2rem);
  font-weight: 720;
  letter-spacing: -0.073em;
  line-height: 0.93;
}

.section-heading h2 em,
.film-copy h2 em,
.contact-copy h2 em {
  font-weight: 400;
}

.section-heading > div:last-child > p,
.film-copy > p,
.contact-copy > p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.work-intro {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

/* Pinned image story */
.scroll-story {
  position: relative;
  height: 430svh;
  background: var(--paper);
}

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

.story-frame {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #bdccce;
  box-shadow: none;
}

.story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 63%;
  opacity: 0;
  transform: none;
  will-change: opacity;
}

.story-image:first-child,
.story-image.is-active {
  opacity: 1;
}

.story-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(235, 242, 241, 0.94) 0%, rgba(235, 242, 241, 0.52) 32%, transparent 62%),
    linear-gradient(180deg, rgba(230, 239, 238, 0.4), transparent 30%, rgba(7, 13, 12, 0.18));
  pointer-events: none;
}

.story-topline {
  position: absolute;
  top: 34px;
  right: 42px;
  left: 42px;
  z-index: 2;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 21, 20, 0.24);
  color: rgba(17, 21, 20, 0.62);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.story-chapters {
  position: absolute;
  top: 16%;
  left: clamp(34px, 7vw, 116px);
  z-index: 2;
  width: min(560px, 46vw);
  height: 270px;
}

.story-chapter {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(34px);
  transition: visibility 0s linear 0.6s, opacity 0.55s ease, transform 0.7s var(--ease-out);
}

.story-chapter.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.story-chapter > p {
  margin-bottom: 18px;
  color: rgba(17, 21, 20, 0.55);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-chapter h3 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4.2vw, 5.5rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.story-chapter > span {
  display: block;
  max-width: 420px;
  color: rgba(17, 21, 20, 0.62);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
}

.story-rail {
  position: absolute;
  top: 50%;
  right: 42px;
  z-index: 2;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.story-rail span {
  width: 3px;
  height: 34px;
  border-radius: 99px;
  background: rgba(17, 21, 20, 0.18);
  transition: height 0.4s var(--ease-out), background 0.4s ease;
}

.story-rail span.is-active {
  height: 58px;
  background: var(--ink);
}

.story-scroll-hint {
  position: absolute;
  right: 42px;
  bottom: 32px;
  z-index: 2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-scroll-hint span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

/* Film project */
.film-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.film-section::before {
  position: absolute;
  top: -240px;
  right: -120px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(201, 255, 99, 0.12);
  border-radius: 50%;
  content: "";
}

.project-label {
  margin-bottom: clamp(70px, 9vw, 130px);
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-label p {
  margin: 0;
}

.project-label .section-kicker {
  margin: 0;
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(52px, 8vw, 130px);
  align-items: center;
}

.film-copy h2 {
  font-size: clamp(3rem, 5.3vw, 6.4rem);
}

.film-copy > p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1rem;
}

.tag-list {
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-player {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0a0c0b;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.film-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.film-player::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 8, 7, 0.12), rgba(4, 8, 7, 0.38));
  content: "";
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.film-player.is-playing::after {
  opacity: 0;
}

.video-launch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  padding: 10px 18px 10px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out), background 0.25s ease;
}

.video-launch:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: var(--accent);
}

.film-player.is-playing .video-launch {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  pointer-events: none;
}

.play-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.play-icon .ui-icon {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.video-launch > span:last-child {
  display: grid;
  min-width: 90px;
  text-align: left;
  line-height: 1.2;
}

.video-launch strong {
  font-size: 12px;
}

.video-launch small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.film-player figcaption {
  position: absolute;
  top: 22px;
  right: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

.gallery-callout {
  margin-top: clamp(80px, 11vw, 160px);
  padding: clamp(26px, 3vw, 42px) 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-decoration: none;
  transition: padding-inline 0.4s var(--ease-out), border-color 0.3s ease;
}

.gallery-callout:hover {
  padding-inline: 20px;
  border-color: var(--accent);
}

.gallery-callout > span:first-child {
  display: grid;
}

.gallery-callout small {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-callout strong {
  font-size: clamp(1.45rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.callout-arrow {
  width: clamp(58px, 6vw, 86px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 22px;
  transition: transform 0.4s var(--ease-out), color 0.3s ease, background 0.3s ease;
}

.gallery-callout:hover .callout-arrow {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--ink);
}

/* Services and local availability */
.services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper-deep);
}

.services-section::before {
  position: absolute;
  top: -260px;
  right: -220px;
  z-index: -1;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 99, 0.32), rgba(201, 255, 99, 0) 68%);
  content: "";
  pointer-events: none;
}

.services-heading {
  margin-bottom: clamp(64px, 8vw, 112px);
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-row {
  padding: clamp(28px, 3.2vw, 48px) 8px;
  display: grid;
  grid-template-columns: 54px minmax(220px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
  gap: clamp(18px, 3vw, 56px);
  border-bottom: 1px solid var(--line);
  transition: padding-inline 0.4s var(--ease-out), background 0.3s ease;
}

.service-row:hover {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.38);
}

.service-index {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.service-row h3 {
  min-width: 0;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4.2rem);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.service-row p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
}

.services-cta {
  margin-top: clamp(48px, 6vw, 82px);
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius-md);
  background: var(--accent);
}

.services-cta > span {
  display: grid;
}

.services-cta small {
  margin-bottom: 6px;
  color: rgba(17, 21, 20, 0.56);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-cta strong {
  font-size: clamp(1.55rem, 3vw, 3rem);
  letter-spacing: -0.045em;
}

.services-cta-link {
  min-height: 54px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), background 0.3s ease;
}

.services-cta-link:hover {
  transform: translateY(-3px);
  background: var(--ink-soft);
}

/* Social media */
.social-section {
  position: relative;
  isolation: isolate;
  padding-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #0d1210;
  background-size: 72px 72px, 72px 72px, auto;
  color: var(--white);
}

.social-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
}

.social-glow-one {
  top: 4%;
  right: 8%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201, 255, 99, 0.2), transparent 68%);
}

.social-glow-two {
  bottom: 3%;
  left: -12%;
  width: min(44vw, 660px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(91, 136, 127, 0.2), transparent 70%);
}

.social-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(620px, 1.24fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
}

.social-copy {
  max-width: 570px;
}

.social-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(3.3rem, 5.7vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.social-copy h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
}

.social-copy > p {
  max-width: 540px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(1rem, 1.28vw, 1.13rem);
}

.social-tags {
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.social-tags li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-status {
  max-width: 460px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 255, 99, 0.22);
  border-radius: 18px;
  background: rgba(201, 255, 99, 0.065);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}

.social-status:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 255, 99, 0.58);
  background: rgba(201, 255, 99, 0.11);
}

.social-status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(201, 255, 99, 0.1), 0 0 24px rgba(201, 255, 99, 0.5);
}

.social-status > span:nth-child(2) {
  min-width: 0;
  display: grid;
}

.social-status strong {
  font-size: 13px;
}

.social-status small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-status-arrow {
  margin-left: auto;
  font-size: 20px;
  transition: transform 0.35s var(--ease-out);
}

.social-status:hover .social-status-arrow {
  transform: translate(3px, -3px);
}

.social-copy .social-more {
  margin: 10px 0 0 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.social-stage {
  position: relative;
  min-height: 720px;
  perspective: 1200px;
  outline: none;
}

.social-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(33vw, 500px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 255, 99, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(201, 255, 99, 0.025), 0 0 0 72px rgba(201, 255, 99, 0.018);
  content: "";
  pointer-events: none;
}

.social-stage:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 12px;
  border-radius: var(--radius-lg);
}

.social-card {
  --card-x: 0px;
  --card-y: 0px;
  --card-rotate: 0deg;
  position: absolute;
  z-index: 1;
  width: clamp(220px, 17vw, 275px);
  padding: 10px;
  transform: translate3d(var(--card-x), var(--card-y), 0) rotate(var(--card-rotate));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(24, 31, 28, 0.94);
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.55s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.social-card:hover {
  z-index: 8;
  transform: translate3d(var(--card-x), calc(var(--card-y) - 12px), 0) rotate(0deg) scale(1.035);
  border-color: rgba(201, 255, 99, 0.58);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.52);
}

.social-card:focus-within {
  z-index: 8;
  border-color: rgba(201, 255, 99, 0.58);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.52);
}

.social-card-post {
  --card-rotate: -8deg;
  top: 24%;
  left: 0;
}

.social-card-reel {
  --card-rotate: 1.5deg;
  top: 2%;
  left: 35%;
  z-index: 3;
  width: clamp(235px, 18.5vw, 298px);
}

.social-card-carousel {
  --card-rotate: 8deg;
  top: 31%;
  right: 0;
  z-index: 2;
}

.social-card header,
.social-card footer {
  padding: 5px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.social-card header {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card header strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: inherit;
}

.social-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #202724;
  color: inherit;
  text-align: left;
}

.social-photo-trigger {
  cursor: zoom-in;
}

.social-photo-trigger:focus-visible {
  outline-offset: -4px;
}

.social-card-reel .social-card-media {
  aspect-ratio: 9 / 14;
}

.social-card-media::after {
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(5, 8, 7, 0.68));
  content: "";
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.social-card-media img,
.social-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-card-media img {
  transition: transform 1s var(--ease-out), filter 0.5s ease;
}

.social-card-post img,
.social-card-carousel img {
  object-position: center;
}

.social-card-reel img {
  object-position: center;
}

.social-card-reel video {
  display: block;
  background: #0b0f0d;
  object-position: center;
}

.social-card-carousel img {
  object-position: center;
}

.social-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.social-card-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 14, 12, 0.58);
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  transition: opacity 0.3s ease;
}

.social-card-action {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-height: 34px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 14, 12, 0.64);
  color: rgba(255, 255, 255, 0.88);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-card-action .ui-icon {
  width: 13px;
  height: 13px;
}

.social-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out), background 0.25s ease;
}

.social-play .ui-icon {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

.social-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--white);
}

.social-card-reel.is-playing .social-card-media::after,
.social-card-reel.is-playing .social-card-badge {
  opacity: 0;
}

.social-card-reel.is-playing .social-play {
  transform: translate(-50%, -50%) scale(0.72);
  opacity: 0;
  pointer-events: none;
}

.social-card footer {
  padding-top: 10px;
}

.social-card footer strong {
  font-size: 12px;
}

.social-card footer span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.social-photo-dialog {
  width: min(980px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--white);
}

.social-photo-dialog::backdrop {
  background: rgba(5, 8, 7, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.social-photo-dialog[open] {
  animation: social-viewer-in 0.5s var(--ease-out) both;
}

@keyframes social-viewer-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.social-photo-viewer {
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  background: #111614;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.social-photo-viewer > header {
  min-height: 74px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.social-photo-viewer > header > span {
  min-width: 0;
  display: grid;
}

.social-photo-viewer header small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-photo-viewer header strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-photo-close {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.25s ease, color 0.25s ease;
}

.social-photo-close:hover {
  transform: rotate(7deg) scale(1.05);
  background: var(--accent);
  color: var(--ink);
}

.social-photo-close .ui-icon {
  width: 18px;
  height: 18px;
}

.social-photo-viewer figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #090c0b;
}

.social-photo-viewer figure img {
  width: 100%;
  height: min(74dvh, 820px);
  object-fit: contain;
}

.social-photo-viewer figcaption {
  min-height: 50px;
  padding: 15px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.social-ticker {
  position: relative;
  z-index: 3;
  margin-top: clamp(70px, 8vw, 120px);
  padding-block: 15px;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--accent);
  color: var(--ink);
}

.social-ticker-track {
  width: max-content;
  display: flex;
  animation: marquee 21s linear infinite;
}

.social-ticker-track > div {
  min-width: 100vw;
  padding-right: 34px;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
}

.social-ticker span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-ticker i {
  font-size: 9px;
  font-style: normal;
}

/* Collaborations */
.collab-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.collab-section::before {
  position: absolute;
  top: -320px;
  left: -260px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(201, 255, 99, 0.18);
  content: "";
  filter: blur(90px);
  pointer-events: none;
}

.collab-heading {
  position: relative;
  margin-bottom: clamp(70px, 8vw, 120px);
}

.collab-card {
  position: relative;
  padding: 12px;
  display: grid;
  grid-template-columns: minmax(560px, 1.16fr) minmax(390px, 0.84fr);
  gap: 12px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 35px 100px rgba(17, 21, 20, 0.15);
}

.collab-media {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.collab-image {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 16px);
  background: #dce5e5;
}

.collab-image-main {
  grid-row: 1 / -1;
}

.collab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.5s ease;
}

.collab-image-main img {
  object-position: center;
}

.collab-image:hover img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.collab-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(13, 18, 16, 0.62);
  color: rgba(255, 255, 255, 0.78);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-align: center;
  backdrop-filter: blur(12px);
}

.collab-copy {
  padding: clamp(34px, 4vw, 68px);
  display: flex;
  flex-direction: column;
}

.collab-brandline {
  margin-bottom: clamp(54px, 7vw, 100px);
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.collab-brandline span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.collab-company-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  text-decoration: none;
}

.collab-company-link strong {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.16em;
}

.collab-company-link > span {
  color: var(--accent);
  font-size: 16px;
  transition: transform 0.35s var(--ease-out);
}

.collab-company-link:hover > span {
  transform: translate(3px, -3px);
}

.collab-copy h3 {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 4.2vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.collab-copy > p {
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

.collab-facts {
  margin: auto 0 42px;
  padding-block: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.15);
}

.collab-facts > div {
  min-width: 0;
  padding-inline: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.collab-facts > div:first-child {
  padding-left: 0;
}

.collab-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.collab-facts dt {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.collab-facts dd {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collab-link {
  min-height: 78px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 22px;
  background: var(--accent);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}

.collab-link:hover {
  transform: translateY(-4px);
  background: var(--white);
}

.collab-link > span:first-child {
  display: grid;
}

.collab-link small {
  margin-bottom: 4px;
  color: rgba(17, 21, 20, 0.56);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collab-link strong {
  font-size: 14px;
}

.collab-link > span:last-child {
  font-size: 22px;
  transition: transform 0.35s var(--ease-out);
}

.collab-link:hover > span:last-child {
  transform: rotate(45deg);
}

/* About */
.about-section {
  background: var(--paper);
}

.about-heading {
  margin-bottom: clamp(52px, 7vw, 96px);
}

.about-snapshot {
  margin-bottom: clamp(30px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.about-snapshot article {
  min-width: 0;
  padding: clamp(22px, 2.7vw, 38px) clamp(18px, 3vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  border-right: 1px solid var(--line);
}

.about-snapshot article:first-child {
  padding-left: 0;
}

.about-snapshot article:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-snapshot span {
  grid-row: span 2;
  padding-top: 5px;
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.about-snapshot small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-snapshot strong {
  margin-top: 5px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.about-grid > * {
  min-width: 0;
}

.age-card,
.about-card {
  min-height: 340px;
  padding: clamp(26px, 3vw, 44px);
  border-radius: var(--radius-md);
}

.age-card {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 696px;
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #26312d;
}

.age-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(6, 11, 9, 0.42));
  content: "";
  pointer-events: none;
}

.about-card .card-number {
  color: rgba(17, 21, 20, 0.55);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.age-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 50%;
  transition: transform 0.8s var(--ease-out), filter 0.5s ease;
}

.age-card:hover .age-portrait {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.profile-tab {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  max-width: calc(100% - 36px);
  padding: 9px 14px 9px 9px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(14, 20, 18, 0.74);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(4, 10, 8, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}

.profile-tab-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.profile-tab-copy {
  min-width: 0;
}

.profile-tab-copy strong,
.profile-tab-copy small {
  display: block;
}

.profile-tab-copy strong {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
}

.profile-tab-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.age-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  border-radius: 20px;
  background: rgba(201, 255, 99, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(4, 10, 8, 0.2);
  backdrop-filter: blur(12px);
}

.age-panel > p {
  margin: 0;
  align-self: start;
  color: rgba(17, 21, 20, 0.58);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.age-value {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.age-value strong {
  font-size: clamp(4.3rem, 6vw, 6.8rem);
  font-weight: 720;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.age-value span {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-card {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.45s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
}

.about-card-motivation {
  border-color: rgba(17, 21, 20, 0.04);
  background:
    radial-gradient(circle at 88% 5%, rgba(201, 255, 99, 0.14), transparent 34%),
    var(--ink);
  color: var(--white);
}

.about-card-post {
  grid-column: span 4;
}

.about-card-setup {
  grid-column: span 3;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(17, 21, 20, 0.28);
  background: rgba(255, 255, 255, 0.68);
}

.about-card-motivation:hover {
  border-color: rgba(201, 255, 99, 0.26);
  background:
    radial-gradient(circle at 88% 5%, rgba(201, 255, 99, 0.2), transparent 38%),
    #19201e;
}

.about-card .card-number {
  margin-bottom: auto;
}

.about-card-motivation .card-number {
  color: rgba(255, 255, 255, 0.5);
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3vw, 3rem);
  letter-spacing: -0.05em;
  overflow-wrap: break-word;
  hyphens: auto;
}

.about-card-post h3,
.about-card-setup h3 {
  font-size: clamp(1.55rem, 2.35vw, 2.65rem);
  line-height: 1;
}

.about-card > p:not(.card-number) {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-card-motivation > p:not(.card-number) {
  color: rgba(255, 255, 255, 0.62);
}

.about-chip-list {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.about-chip-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-card-motivation .about-chip-list li {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.about-journey {
  margin-top: 16px;
  padding: clamp(30px, 4.5vw, 64px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 96% 0, rgba(201, 255, 99, 0.16), transparent 30%),
    var(--ink);
  color: var(--white);
}

.about-journey header {
  margin-bottom: clamp(38px, 6vw, 76px);
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 1.52fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.about-journey header p {
  margin: 9px 0 0;
  color: var(--accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-journey header h3 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 5.3rem);
  font-weight: 690;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.about-journey ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.about-journey li {
  min-width: 0;
  min-height: 210px;
  padding: 26px clamp(18px, 2.2vw, 34px) 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: opacity 0.5s ease, transform 0.65s var(--ease-out);
}

.about-journey li:first-child {
  padding-left: 0;
}

.about-journey li:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-journey li > span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.about-journey li strong {
  margin-top: 32px;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  letter-spacing: -0.035em;
}

.about-journey li p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.js .about-journey:not(.is-visible) li {
  opacity: 0;
  transform: translateY(18px);
}

.about-journey li:nth-child(2) { transition-delay: 0.06s; }
.about-journey li:nth-child(3) { transition-delay: 0.12s; }
.about-journey li:nth-child(4) { transition-delay: 0.18s; }

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  background: #151a18;
  color: var(--white);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.7px, transparent 0.7px);
  background-size: 17px 17px;
  content: "";
  pointer-events: none;
}

.contact-orb {
  position: absolute;
  bottom: -420px;
  left: -260px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: rgba(201, 255, 99, 0.12);
  filter: blur(80px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(3.35rem, 6.2vw, 7.5rem);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.54);
}

.mail-link {
  margin-top: 44px;
  padding-bottom: 8px;
  display: inline-flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.mail-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-form {
  padding: clamp(28px, 4.5vw, 62px);
  display: grid;
  gap: 30px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0 14px;
  resize: vertical;
  border: 0;
  border-bottom: 1px solid rgba(17, 21, 20, 0.22);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9a9e9b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.contact-form textarea {
  min-height: 130px;
}

.form-trap {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.submit-button {
  flex: 0 0 auto;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

#contact-status {
  margin: 0;
  font-size: 12px;
}

#contact-status.is-error { color: #b53636; }
#contact-status.is-success { color: #477521; }

/* Footer and utilities */
.site-footer {
  padding-block: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #151a18;
  color: rgba(255, 255, 255, 0.46);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  text-decoration: none;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-brand span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 8px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  transform: translateY(20px) scale(0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(17, 21, 20, 0.86);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease, visibility 0.3s ease, color 0.25s ease, background 0.25s ease;
}

.back-to-top.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--ink);
}

.back-to-top .ui-icon {
  width: 18px;
  height: 18px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.8s ease, transform 1s var(--ease-out);
}

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

.about-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.about-grid [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.about-grid [data-reveal]:nth-child(4) { transition-delay: 0.18s; }

/* Tablet */
@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 1100px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.5vw, 7rem);
  }

  .film-grid,
  .contact-grid {
    gap: 60px;
  }

  .social-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .social-copy {
    max-width: 760px;
  }

  .social-stage {
    width: min(780px, 100%);
    justify-self: center;
  }

  .collab-card {
    grid-template-columns: minmax(460px, 1.1fr) minmax(330px, 0.9fr);
  }

  .collab-media {
    min-height: 620px;
  }

  .collab-copy {
    padding: 34px;
  }

  .age-card { min-height: 616px; }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
    --radius-lg: 32px;
  }

  .site-header {
    width: calc(100% - 24px);
    padding-inline: 16px;
  }

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

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 23px;
    transform: translateX(-50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 23px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 12px;
    right: 12px;
    left: 12px;
    min-height: min(560px, calc(100svh - 24px));
    padding: 112px 28px 34px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    transform: translateY(-20px) scale(0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(16, 21, 19, 0.98);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.45s var(--ease-out), opacity 0.35s ease, visibility 0.35s ease;
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--white);
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 650;
    letter-spacing: -0.05em;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin: 20px 0 0;
    padding: 16px 20px;
    justify-content: space-between;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    letter-spacing: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 15vw, 8rem);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(74vw, 560px);
    justify-self: end;
  }

  .hero-bottom {
    position: relative;
    bottom: auto;
    margin-top: 70px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2 {
    max-width: 820px;
  }

  .story-chapters {
    width: min(620px, 68vw);
  }

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

  .film-copy {
    max-width: 720px;
  }

  .film-player {
    width: 100%;
  }

  .contact-copy {
    max-width: 780px;
  }

  .social-stage {
    min-height: 690px;
  }

  .collab-card {
    grid-template-columns: 1fr;
  }

  .collab-media {
    min-height: 560px;
  }

  .collab-copy {
    min-height: 600px;
    padding: clamp(38px, 7vw, 68px);
  }

  .service-row {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px 18px;
  }

  .service-index {
    grid-column: 1;
    grid-row: 1;
  }

  .service-row h3 {
    grid-column: 2;
    grid-row: 1;
  }

  .service-row p {
    grid-column: 2;
    grid-row: 2;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-snapshot article {
    padding-inline: 22px;
  }

  .about-snapshot article:first-child {
    padding-left: 0;
  }

  .about-snapshot article:last-child {
    padding-right: 0;
  }

  .age-card,
  .about-card-wide {
    grid-column: 1 / -1;
  }

  .age-card {
    grid-row: auto;
    min-height: 440px;
  }

  .about-card-post,
  .about-card-setup {
    grid-column: span 1;
  }

  .about-journey header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-journey header p {
    margin-top: 0;
  }

  .about-journey ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-journey li,
  .about-journey li:first-child,
  .about-journey li:last-child {
    padding: 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-journey li:nth-child(even) {
    border-right: 0;
  }

  .about-journey li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

/* Mobile */
@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 24px;
    --radius-md: 22px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .brand-mark {
    width: 39px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 120px 0 64px;
  }

  .hero::after {
    background-size: 48px 48px;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
    letter-spacing: 0.13em;
  }

  .hero h1 {
    margin-bottom: 26px;
    font-size: clamp(3.65rem, 18vw, 6.5rem);
    letter-spacing: -0.078em;
    line-height: 0.85;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-visual {
    width: 100%;
  }

  .hero-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .hero-slider-nav {
    top: 12px;
    right: 12px;
  }

  .hero-slider-button {
    width: 32px;
    height: 32px;
  }

  .visual-index {
    min-width: 50px;
    font-size: 9px;
  }

  .hero-bottom {
    margin-top: 48px;
  }

  .scroll-cue > span:first-child {
    display: none;
  }

  .marquee-group {
    padding-right: 20px;
    gap: 20px;
  }

  .section-pad {
    padding-block: 92px;
  }

  .section-heading h2,
  .film-copy h2,
  .contact-copy h2 {
    font-size: clamp(3rem, 15vw, 5.2rem);
    line-height: 0.92;
  }

  .section-heading > div:last-child > p,
  .film-copy > p,
  .contact-copy > p {
    font-size: 1rem;
  }

  .social-section {
    background-size: 48px 48px, 48px 48px, auto;
  }

  .social-copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .social-copy > p {
    font-size: 1rem;
  }

  .social-tags {
    margin-bottom: 30px;
  }

  .social-status {
    padding: 14px 15px;
  }

  .social-stage {
    width: calc(100% + 16px);
    min-height: 0;
    margin-right: -16px;
    padding: 34px 18px 52px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    perspective: none;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }

  .social-stage::-webkit-scrollbar {
    display: none;
  }

  .social-stage::before {
    display: none;
  }

  .social-card,
  .social-card-post,
  .social-card-reel,
  .social-card-carousel {
    position: relative;
    inset: auto;
    width: auto;
    flex: 0 0 min(78vw, 290px);
    transform: none !important;
    scroll-snap-align: start;
  }

  .social-card:hover {
    transform: translateY(-6px) !important;
  }

  .social-photo-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
  }

  .social-photo-viewer {
    padding: 7px;
    border-radius: 25px;
  }

  .social-photo-viewer > header {
    min-height: 64px;
    padding: 7px 7px 7px 12px;
  }

  .social-photo-close {
    width: 44px;
    height: 44px;
  }

  .social-photo-viewer figure {
    border-radius: 19px;
  }

  .social-photo-viewer figure img {
    height: 68dvh;
  }

  .social-ticker-track > div {
    min-width: 720px;
  }

  .collab-card {
    padding: 8px;
    border-radius: 28px;
  }

  .collab-media {
    min-height: 500px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 8px;
  }

  .collab-image {
    border-radius: 20px;
  }

  .collab-image-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .collab-image-top {
    grid-column: 1;
    grid-row: 2;
  }

  .collab-image-bottom {
    grid-column: 2;
    grid-row: 2;
  }

  .collab-image figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px 8px;
    font-size: 7px;
  }

  .collab-copy {
    min-height: 0;
    padding: 34px 18px 18px;
  }

  .collab-brandline {
    margin-bottom: 44px;
  }

  .collab-copy h3 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .collab-facts {
    margin-top: 8px;
    margin-bottom: 30px;
    padding-block: 20px;
  }

  .collab-facts > div {
    padding-inline: 10px;
  }

  .collab-facts dt {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .collab-facts dd {
    font-size: 7px;
  }

  .collab-link {
    min-height: 72px;
    padding: 14px 16px;
  }

  .collab-link strong {
    font-size: 12px;
  }

  .service-row {
    padding: 25px 0;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 11px;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .service-index {
    grid-column: 1;
    grid-row: 1;
  }

  .service-row h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .service-row p {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .services-cta-link {
    width: 100%;
    justify-content: space-between;
  }

  .scroll-story {
    height: 380svh;
  }

  .story-pin {
    padding: 0;
  }

  .story-image {
    object-position: 50% 62%;
  }

  .story-shade {
    background: linear-gradient(180deg, rgba(232, 241, 240, 0.94) 0%, rgba(232, 241, 240, 0.54) 38%, transparent 65%, rgba(5, 10, 9, 0.16));
  }

  .story-topline {
    top: 24px;
    right: 22px;
    left: 22px;
  }

  .story-chapters {
    top: 13%;
    left: 22px;
    width: calc(100% - 64px);
    height: 230px;
  }

  .story-chapter h3 {
    max-width: 340px;
    font-size: clamp(2.2rem, 11vw, 3.6rem);
  }

  .story-chapter > span {
    max-width: 320px;
    font-size: 0.9rem;
  }

  .story-rail {
    right: 20px;
  }

  .story-rail span {
    height: 24px;
  }

  .story-rail span.is-active {
    height: 40px;
  }

  .story-scroll-hint {
    right: 20px;
    bottom: 22px;
  }

  .project-label {
    align-items: flex-end;
    gap: 20px;
  }

  .project-label > p:last-child {
    max-width: 130px;
    text-align: right;
  }

  .film-grid {
    gap: 50px;
  }

  .film-player {
    border-radius: 22px;
  }

  .video-launch {
    padding-right: 12px;
  }

  .play-icon {
    width: 38px;
    height: 38px;
  }

  .film-player figcaption {
    top: 14px;
    right: 16px;
    left: 16px;
  }

  .gallery-callout {
    gap: 20px;
  }

  .gallery-callout small {
    font-size: 8px;
  }

  .gallery-callout strong {
    font-size: 1.25rem;
  }

  .callout-arrow {
    width: 56px;
    flex: 0 0 auto;
  }

  .about-heading {
    margin-bottom: 44px;
  }

  .about-snapshot {
    margin-bottom: 34px;
    grid-template-columns: 1fr;
  }

  .about-snapshot article,
  .about-snapshot article:first-child,
  .about-snapshot article:last-child {
    padding: 19px 0;
    grid-template-columns: 32px minmax(0, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-snapshot article:last-child {
    border-bottom: 0;
  }

  .about-snapshot strong {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

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

  .age-card,
  .about-card,
  .about-card-post,
  .about-card-setup {
    grid-column: 1;
  }

  .age-card {
    grid-row: auto;
    min-height: 560px;
  }

  .age-portrait {
    object-position: 50% 50%;
  }

  .profile-tab {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 12px 8px 8px;
    gap: 9px;
  }

  .profile-tab-mark {
    width: 34px;
    height: 34px;
  }

  .profile-tab-copy strong {
    font-size: 13px;
  }

  .profile-tab-copy small {
    font-size: 8px;
  }

  .age-panel {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px 18px;
  }

  .age-value strong {
    font-size: clamp(4.8rem, 24vw, 7rem);
  }

  .about-card {
    min-height: 300px;
    padding: 28px 24px;
  }

  .about-card-motivation {
    min-height: 360px;
  }

  .about-journey {
    padding: 30px 24px;
  }

  .about-journey header {
    margin-bottom: 32px;
  }

  .about-journey header h3 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .about-journey ol {
    grid-template-columns: 1fr;
  }

  .about-journey li,
  .about-journey li:first-child,
  .about-journey li:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-journey li:last-child {
    border-bottom: 0;
  }

  .about-journey li > span {
    margin-bottom: 22px;
  }

  .about-journey li strong {
    margin-top: 0;
  }

  .contact-grid {
    gap: 58px;
  }

  .contact-form {
    padding: 28px 20px;
    gap: 26px;
    border-radius: 24px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
    justify-content: space-between;
  }

  .mail-link {
    font-size: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 390px) {
  .brand-copy strong {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .availability {
    max-width: 180px;
  }

  .story-topline span:first-child {
    max-width: 170px;
  }

  .mail-link {
    font-size: 10px;
  }
}

/* Motion accessibility */
@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;
  }

  .hero-line > span,
  .hero-reveal,
  .hero-visual,
  .hero-image-wrap,
  .js [data-reveal] {
    transform: none;
    opacity: 1;
    clip-path: none;
  }

  .hero-image-wrap img {
    transform: scale(1.02);
  }

  .marquee-track {
    transform: none;
  }

  .social-ticker-track {
    transform: none;
  }

  .scroll-story {
    height: auto;
    padding: 8px 0 80px;
  }

  .story-pin {
    position: relative;
    height: auto;
    padding: 0;
  }

  .story-frame {
    height: min(760px, 82svh);
    min-height: 560px;
    transform: none !important;
  }

  .story-image {
    display: none;
  }

  .story-image:first-child {
    display: block;
    opacity: 1 !important;
    transform: none !important;
  }

  .story-chapter:not(:first-child),
  .story-rail,
  .story-scroll-hint {
    display: none;
  }

  .js .about-journey:not(.is-visible) li {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .button,
  .nav-cta,
  .menu-toggle,
  .back-to-top,
  .video-launch {
    border: 2px solid currentColor;
  }

  .social-photo-trigger,
  .social-play,
  .social-photo-close {
    border: 2px solid currentColor;
  }
}
