@font-face {
  font-family: "League Spartan";
  src: url("assets/league-spartan-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

/* Fotoduell: neues Originalformat direkt unter dem Home-Einstieg */
.photo-duel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(110px, 11vw, 180px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 214, 46, 0.15), transparent 30rem),
    radial-gradient(circle at 86% 78%, rgba(111, 132, 114, 0.24), transparent 34rem),
    #20232a;
}

.photo-duel::before {
  content: "DUELL";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);
  font-size: clamp(12rem, 30vw, 34rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.photo-duel__glow {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 16%;
  width: 32vw;
  aspect-ratio: 1;
  background: rgba(255, 214, 46, 0.13);
  border-radius: 50%;
  filter: blur(90px);
}

.photo-duel__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(56px, 8vw, 132px);
}

.photo-duel__visual {
  position: relative;
  min-height: clamp(620px, 66vw, 820px);
  display: grid;
  place-items: center;
}

.photo-duel__poster-wrap {
  position: relative;
  z-index: 3;
  width: min(78%, 470px);
  padding: 12px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.photo-duel__poster-wrap::before,
.photo-duel__poster-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -19px;
  border: 1px solid rgba(255, 214, 46, 0.34);
  border-radius: 40px;
  transform: rotate(4deg);
}

.photo-duel__poster-wrap::after {
  inset: -36px;
  border-color: rgba(255, 255, 255, 0.1);
  transform: rotate(-3deg);
}

.photo-duel__poster {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  will-change: transform;
}

.photo-duel__stamp {
  position: absolute;
  z-index: 6;
  top: 7%;
  right: 4%;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.photo-duel__float {
  position: absolute;
  z-index: 5;
  width: clamp(116px, 12vw, 168px);
  aspect-ratio: 941 / 1672;
  background-size: cover;
  background-position: center;
  border: 8px solid var(--paper);
  border-bottom-width: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  will-change: transform;
}

.photo-duel__float--one {
  top: 10%;
  left: -1%;
  background-image: url("assets/fotoduell-spreewald.jpg");
  transform: rotate(-10deg);
}

.photo-duel__float--two {
  right: -1%;
  bottom: 6%;
  background-image: url("assets/fotoduell-swinemuende.jpg");
  transform: rotate(8deg);
}

.photo-duel__flash {
  position: absolute;
  z-index: 4;
  top: 49%;
  left: 51%;
  width: 150px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 214, 46, 0.22) 22%, transparent 68%);
  border-radius: 50%;
  mix-blend-mode: screen;
  animation: duelFlash 3.8s ease-in-out infinite;
}

@keyframes duelFlash {
  0%, 68%, 100% { opacity: 0.12; transform: translate(-50%, -50%) scale(0.7); }
  74% { opacity: 0.82; transform: translate(-50%, -50%) scale(1.25); }
  82% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.7); }
}

.photo-duel__copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.photo-duel__copy .display {
  margin: 18px 0 28px;
  font-size: clamp(4.5rem, 8vw, 8.7rem);
}

.photo-duel__lead {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--white) !important;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 650;
  line-height: 1.2;
}

.photo-duel__copy > p:not(.eyebrow):not(.photo-duel__lead) {
  max-width: 650px;
  color: var(--muted);
}

.photo-duel__facts {
  display: grid;
  gap: 0;
  margin: 38px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.photo-duel__facts span {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-duel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.photo-duel__known {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo-duel__known > span {
  margin-right: 2px;
}

.photo-duel__press {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px 7px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 220ms ease, filter 220ms ease;
}

.photo-duel__press:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.photo-duel__press--tag24 {
  background: #d7171f;
}

.photo-duel__press--morgenpost {
  color: #17212b;
  background: #f2f0e9;
  border-radius: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  letter-spacing: -0.03em;
  text-transform: none;
}

@media (max-width: 1080px) {
  .photo-duel__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .photo-duel__visual {
    min-height: 620px;
  }

  .focus-rider {
    width: 76px;
  }
}

@media (max-width: 820px) {
  .photo-duel {
    padding: 94px 0 110px;
  }

  .photo-duel__grid {
    grid-template-columns: 1fr;
  }

  .photo-duel__visual {
    min-height: 700px;
    order: 2;
  }

  .photo-duel__copy {
    order: 1;
  }

  .photo-duel__poster-wrap {
    width: min(68%, 420px);
  }

  .photo-duel__float--one {
    left: 2%;
  }

  .photo-duel__float--two {
    right: 1%;
  }

  .person-portrait {
    min-height: 540px;
  }

  .focus-rider {
    width: 68px;
    border-radius: 17px;
  }

  .focus-rider img {
    border-radius: 13px;
  }

  .focus-rider span {
    font-size: 0.56rem;
  }
}

@media (max-width: 560px) {
  .photo-duel__visual {
    min-height: 570px;
  }

  .photo-duel__poster-wrap {
    width: min(72%, 330px);
    padding: 8px;
    border-radius: 24px;
  }

  .photo-duel__poster {
    border-radius: 16px;
  }

  .photo-duel__stamp {
    top: 2%;
    right: 0;
    width: 88px;
  }

  .photo-duel__float {
    width: 112px;
    border-width: 6px;
    border-bottom-width: 19px;
  }

  .photo-duel__copy .display {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .photo-duel__meta {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-duel__meta .button {
    width: 100%;
  }

  .person-portrait {
    min-height: 470px;
  }

  .person-portrait img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 21px;
  }

  .person-portrait__index {
    top: 23px;
    left: 23px;
    width: 44px;
    height: 44px;
  }

  .person-portrait__caption {
    right: 22px;
    bottom: 22px;
  }

  .focus-rider {
    width: 54px;
    padding: 3px 3px 5px;
    border-radius: 13px;
    box-shadow: 0 10px 24px rgba(31, 34, 41, 0.26), 0 0 0 3px rgba(255, 214, 46, 0.13);
  }

  .focus-rider img {
    border-radius: 10px;
  }

  .focus-rider span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-duel__poster,
  .photo-duel__float {
    transform: none !important;
  }

  .photo-duel__flash,
  .focus-rider {
    display: none;
  }
}

/* Separate, aufgeräumte Projektgalerien aus den Selected Stories. */
.project-gallery-page {
  background: #20232a;
}

.project-gallery-hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + clamp(56px, 8vw, 110px)) 0 clamp(72px, 9vw, 126px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 211, 27, .12), transparent 28rem),
    radial-gradient(circle at 16% 82%, rgba(111, 132, 114, .2), transparent 34rem),
    #20232a;
}

.project-gallery-hero::before {
  content: "STORY";
  position: absolute;
  right: -3vw;
  bottom: -4vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.045);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(9rem, 24vw, 29rem);
  font-weight: 900;
  line-height: .7;
  letter-spacing: -.08em;
}

.project-gallery-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: clamp(48px, 8vw, 130px);
}

.project-gallery-back {
  display: inline-flex;
  margin-bottom: clamp(38px, 6vw, 76px);
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.project-gallery-back:hover,
.project-gallery-back:focus-visible {
  color: var(--yellow);
  border-color: rgba(255,211,27,.5);
  transform: translateX(-4px);
}

.project-gallery-hero__copy .eyebrow {
  margin-bottom: 16px;
}

.project-gallery-hero__copy .display {
  font-size: clamp(4rem, 8.2vw, 9.2rem);
}

.project-gallery-hero__lead {
  max-width: 51ch;
  margin: 28px 0 0;
  color: rgba(255,255,255,.7);
  font-size: clamp(1.02rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}

.project-gallery-hero__visual {
  position: relative;
  margin: 0;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(26px, 4vw, 54px);
  background: rgba(255,255,255,.06);
  box-shadow: 0 42px 110px rgba(0,0,0,.42);
  transform: rotate(2deg);
}

.project-gallery-hero__visual::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: calc(clamp(26px, 4vw, 54px) - 10px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  pointer-events: none;
}

.project-gallery-hero__visual img {
  display: block;
  width: 100%;
  height: clamp(470px, 57vw, 720px);
  border-radius: calc(clamp(26px, 4vw, 54px) - 10px);
  object-fit: cover;
}

.project-gallery-hero--fitness .project-gallery-hero__visual img {
  object-position: center;
}

.project-gallery-hero__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(28,30,38,.78);
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-gallery-work,
.project-video-section {
  padding: clamp(88px, 10vw, 150px) 0;
  color: #252830;
  background: #f4f1e8;
}

.project-video-section {
  color: #fff;
  background: #2b2e36;
}

.project-gallery-heading,
.project-video-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.project-gallery-heading > p,
.project-video-copy > p:last-child {
  max-width: 50ch;
  margin: 0;
  color: #66686d;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.project-video-copy > p:last-child {
  margin-top: 24px;
  color: rgba(255,255,255,.68);
}

.project-masonry {
  columns: 3 280px;
  column-gap: clamp(14px, 2vw, 28px);
}

.project-shot {
  position: relative;
  break-inside: avoid;
  margin: 0 0 clamp(14px, 2vw, 28px);
  overflow: hidden;
  border-radius: clamp(18px, 2vw, 30px);
  background: #252830;
  box-shadow: 0 20px 55px rgba(37,40,48,.12);
}

.project-shot img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .5s ease;
}

.project-shot figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  color: #fff;
  background: rgba(28,30,38,.74);
  backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}

.project-shot:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.project-shot:hover figcaption,
.project-shot:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.project-shot--panorama {
  margin-bottom: 0;
  border-radius: clamp(24px, 4vw, 52px);
}

.project-shot--panorama img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.project-video-grid {
  align-items: center;
  margin-bottom: 0;
}

.project-video-frame {
  position: relative;
  width: min(100%, 610px);
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: clamp(26px, 4vw, 48px);
  background: #17191f;
  box-shadow: 0 40px 90px rgba(0,0,0,.36);
}

.project-video-frame video {
  display: block;
  width: 100%;
  max-height: 76svh;
  aspect-ratio: 9 / 16;
  border-radius: calc(clamp(26px, 4vw, 48px) - 10px);
  background: #0f1014;
  object-fit: contain;
}

.project-video-badge {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(28,30,38,.86);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.project-video-badge::first-letter {
  color: #ef4964;
}

.project-gallery-cta {
  padding: clamp(70px, 9vw, 130px) 0;
  color: #fff;
  background: #20232a;
}

.project-gallery-cta__box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
  padding: clamp(34px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: clamp(28px, 4vw, 52px);
  background: radial-gradient(circle at 85% 20%, rgba(255,211,27,.18), transparent 24rem), #2b2e36;
}

.project-gallery-cta__box .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.project-gallery-cta__box h2 {
  max-width: 15ch;
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.7rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .project-gallery-hero {
    min-height: 0;
    padding-top: calc(var(--header-h) + 46px);
  }

  .project-gallery-hero__grid,
  .project-gallery-heading,
  .project-video-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .project-gallery-back {
    margin-bottom: 38px;
  }

  .project-gallery-hero__copy .display {
    font-size: clamp(3.45rem, 14vw, 6.8rem);
  }

  .project-gallery-hero__visual {
    width: min(100%, 680px);
    margin-inline: auto;
    transform: rotate(0);
  }

  .project-gallery-hero__visual img {
    height: clamp(390px, 92vw, 650px);
  }

  .project-gallery-heading,
  .project-video-grid {
    align-items: start;
    margin-bottom: 46px;
  }

  .project-gallery-cta__box {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 620px) {
  .project-gallery-hero {
    padding-bottom: 66px;
  }

  .project-gallery-hero__visual {
    padding: 7px;
    border-radius: 25px;
  }

  .project-gallery-hero__visual img {
    height: min(116vw, 560px);
    border-radius: 19px;
  }

  .project-gallery-hero--realestate .project-gallery-hero__visual img {
    height: 72vw;
  }

  .project-gallery-hero__visual figcaption {
    right: 18px;
    bottom: 17px;
    max-width: calc(100% - 36px);
  }

  .project-gallery-work,
  .project-video-section {
    padding: 72px 0;
  }

  .project-masonry {
    columns: 1;
  }

  .project-shot figcaption {
    opacity: 1;
    transform: none;
  }

  .project-video-frame {
    padding: 7px;
    border-radius: 26px;
  }

  .project-video-frame video {
    max-height: 74svh;
    border-radius: 20px;
  }

  .project-video-badge {
    top: 18px;
    left: 18px;
  }
}

@font-face {
  font-family: "League Spartan";
  src: url("assets/league-spartan-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("assets/league-spartan-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "League Spartan";
  src: url("assets/league-spartan-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --ink: #252830;
  --ink-2: #353a45;
  --ink-3: #474d59;
  --sage: #6f846f;
  --sage-dark: #536a58;
  --sage-pale: #a8b5a6;
  --yellow: #ffd62e;
  --paper: #f2f1ec;
  --white: #fffdf7;
  --muted: #c5c8cf;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(8, 11, 15, 0.28);
  --max: 1240px;
  --header-h: 82px;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 12%, rgba(111, 132, 111, 0.14), transparent 35rem),
    var(--ink);
  font-family: "League Spartan", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 9998;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.container {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 44px), 860px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10001;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 0.2s;
}

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

.scroll-progress {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 18px rgba(255, 214, 46, 0.8);
}

.cursor-glow {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 214, 46, 0.1), transparent 66%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.4s;
}

body.pointer-active .cursor-glow {
  opacity: 1;
}

.page-wipe {
  position: fixed;
  z-index: 10002;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-100%);
  transition: transform 0.65s var(--ease);
}

.page-wipe__logo {
  display: block;
  width: min(72vw, 470px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(31, 34, 41, 0.26));
}

body.is-leaving .page-wipe {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 50%;
  width: min(calc(100% - 28px), 1340px);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(35, 38, 46, 0.75);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(22px) saturate(135%);
  transform: translateX(-50%);
  transition: top 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.site-header.is-scrolled {
  top: 8px;
  background: rgba(31, 34, 41, 0.9);
  border-color: rgba(255, 214, 46, 0.22);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  line-height: 1;
}

.brand__logo {
  display: block;
  width: 152px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
}

.site-nav__link {
  position: relative;
  padding: 12px 2px 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--white);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 23px;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 214, 46, 0.18);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: box-shadow 0.3s, background 0.3s;
}

.header-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: inherit;
  transform: translateY(105%);
  transition: transform 0.4s var(--ease);
}

.header-cta span,
.button span {
  position: relative;
  z-index: 1;
}

.header-cta:hover::before,
.button:hover::before {
  transform: translateY(0);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button--ghost::before {
  background: rgba(255, 255, 255, 0.12);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.button--dark::before {
  background: var(--ink-2);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle::before,
.nav-toggle::after {
  content: "";
}

.menu-open .nav-toggle span {
  opacity: 0;
}

.menu-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

.display {
  margin: 0;
  font-size: clamp(3.5rem, 8.4vw, 8.8rem);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.display--medium {
  font-size: clamp(3.3rem, 6.5vw, 7rem);
}

.display--small {
  font-size: clamp(2.8rem, 5.1vw, 5.5rem);
}

.yellow {
  color: var(--yellow);
}

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

.section {
  position: relative;
  padding: clamp(96px, 12vw, 180px) 0;
}

.section--sage {
  color: var(--white);
  background: var(--sage);
}

.section--paper {
  color: var(--ink);
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 36px;
  margin-bottom: clamp(50px, 8vw, 100px);
}

.section-head p {
  margin: 0 0 0 auto;
  max-width: 460px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.section--paper .section-head p,
.section--sage .section-head p {
  color: currentColor;
  opacity: 0.78;
}

.home-hero {
  position: relative;
  height: 175vh;
  --hero-p: 0;
}

.home-hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #20232a;
}

.home-hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: calc(0.94 - var(--hero-p) * 0.2);
  filter: saturate(calc(0.9 + var(--hero-p) * 0.3)) contrast(1.03);
  transform: scale(calc(1 + var(--hero-p) * 0.08));
  transition: filter 0.1s linear;
}

.home-hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 25, 31, 0.36), rgba(23, 25, 31, 0.08) 38%, rgba(23, 25, 31, 0.62)),
    radial-gradient(circle at 50% 48%, transparent 0, rgba(22, 24, 30, 0.2) 65%);
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  width: min(52vw, 870px);
  padding-top: 66px;
  text-align: center;
  opacity: calc(1 - var(--hero-p) * 0.78);
  transform: translateY(calc(var(--hero-p) * -80px)) scale(calc(1 - var(--hero-p) * 0.1));
}

.home-hero__copy .display {
  font-size: clamp(4.4rem, 8vw, 9rem);
  text-shadow: 0 15px 45px rgba(0, 0, 0, 0.32);
}

.hero-gold-trace .gold-trace-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-gold-trace .gold-trace-letter {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.hero-gold-trace .gold-trace-letter::after {
  content: attr(data-glyph);
  position: absolute;
  z-index: 2;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 218, 62, 0);
  text-stroke: 1px rgba(255, 218, 62, 0);
  text-shadow: none;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.035);
  transform-origin: center;
}

.hero-gold-trace.is-tracing .gold-trace-letter::after {
  animation: hero-gold-letter-trace 820ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
  animation-delay: calc(300ms + var(--trace-i) * 76ms);
}

@keyframes hero-gold-letter-trace {
  0% {
    opacity: 0;
    -webkit-text-stroke-color: rgba(255, 218, 62, 0);
    text-stroke-color: rgba(255, 218, 62, 0);
    filter: drop-shadow(0 0 0 rgba(255, 214, 46, 0));
    transform: scale(1.065);
  }

  24% {
    opacity: 1;
    -webkit-text-stroke: 2px #fff3a4;
    text-stroke: 2px #fff3a4;
    filter: drop-shadow(0 0 5px #fff2a0) drop-shadow(0 0 15px rgba(255, 214, 46, 0.95));
  }

  64% {
    opacity: 1;
    -webkit-text-stroke: 2.4px #ffd62e;
    text-stroke: 2.4px #ffd62e;
    filter: drop-shadow(0 0 8px #ffd62e) drop-shadow(0 0 24px rgba(255, 190, 24, 0.92));
    transform: scale(1.018);
  }

  100% {
    opacity: 0.42;
    -webkit-text-stroke: 1.15px #ffd62e;
    text-stroke: 1.15px #ffd62e;
    filter: drop-shadow(0 0 5px rgba(255, 214, 46, 0.72));
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gold-trace .gold-trace-letter::after {
    opacity: 0.35;
    -webkit-text-stroke: 1px #ffd62e;
    text-stroke: 1px #ffd62e;
    filter: drop-shadow(0 0 4px rgba(255, 214, 46, 0.55));
    transform: none;
    animation: none;
  }
}

.home-hero__lead {
  max-width: 620px;
  margin: 28px auto 34px;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--yellow), transparent);
  animation: cue 1.7s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

.ticker {
  position: relative;
  z-index: 3;
  padding: 24px 0 20px;
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg) scale(1.02);
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 38px;
  animation: ticker 28s linear infinite;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 38px;
  white-space: nowrap;
  font-size: clamp(1.4rem, 2.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.ticker__item::after {
  content: "✦";
  font-size: 0.8em;
}

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

.problem-scene {
  position: relative;
  height: 220vh;
  min-height: 1450px;
}

.problem-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 10vh, 130px) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.problem-copy p:not(.eyebrow) {
  max-width: 550px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.problem-orbit {
  --orbit-world-p: 0;
  position: relative;
  min-height: 590px;
  border-radius: 50%;
}

.orbit-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 214, 46, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.2);
  opacity: var(--orbit-world-p);
  transform: scale(0.82);
  transition: opacity 0.2s linear;
}

.problem-orbit::before,
.problem-orbit::after {
  content: "";
  position: absolute;
  inset: 13%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  opacity: var(--orbit-world-p);
  transition: opacity 0.2s linear;
}

.problem-orbit::after {
  inset: 31%;
  border-style: solid;
  border-color: rgba(255, 214, 46, 0.2);
}

.orbit-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 178px;
  height: 178px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 214, 46, 0.08), 0 25px 70px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(38, 42, 50, 0.22);
  border-radius: 50%;
}

.orbit-burst {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.orbit-burst span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--burst-size, 3px);
  height: var(--burst-size, 3px);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 214, 46, 0.38);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.18);
  will-change: transform, opacity;
}

.orbit-burst span:nth-child(3n) {
  width: 2px;
  height: 7px;
  border-radius: 999px;
}

.orbit-burst span:nth-child(4n) {
  width: 5px;
  height: 2px;
  background: var(--paper);
  border-radius: 999px;
  box-shadow: none;
}

.orbit-burst span:nth-child(5n) {
  width: 3px;
  height: 3px;
  background: var(--sage-pale);
  box-shadow: 0 0 7px rgba(168, 181, 166, 0.34);
}

.orbit-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transform-origin: 50% 50%;
  white-space: nowrap;
  will-change: transform, opacity;
}

.orbit-title__word {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  color: #fff;
  font-size: clamp(3.35rem, 5.8vw, 5.75rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.orbit-title__word--small {
  color: var(--yellow);
  font-size: clamp(0.92rem, 1.65vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
}

.orbit-title__letter {
  display: inline-block;
  transform-origin: 50% 55%;
  will-change: transform, opacity;
}

.orbit-title__crack {
  position: absolute;
  z-index: 2;
  top: 51%;
  left: 50%;
  width: 3px;
  height: 58px;
  background: #20242b;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 214, 46, 0.24);
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 58% 30%, 100% 48%, 40% 72%, 70% 100%, 0 100%, 35% 70%, 0 48%, 45% 28%);
  transform-origin: 50% 0;
  will-change: transform, opacity;
}

.orbit-title__crack--one {
  --crack-rotation: 19deg;
  margin: -27px 0 0 -72px;
  transform: rotate(var(--crack-rotation)) scaleY(var(--crack-p, 0));
}

.orbit-title__crack--two {
  --crack-rotation: -16deg;
  height: 66px;
  margin: -31px 0 0 19px;
  transform: rotate(var(--crack-rotation)) scaleY(var(--crack-p, 0));
}

.orbit-title__crack--three {
  --crack-rotation: 51deg;
  height: 38px;
  margin: -8px 0 0 -18px;
  transform: rotate(var(--crack-rotation)) scaleY(var(--crack-p, 0));
}

.orbit-chip {
  position: absolute;
  z-index: 3;
  max-width: 220px;
  padding: 15px 20px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  line-height: 1.1;
  animation: float 5s ease-in-out infinite;
}

.orbit-chip:nth-of-type(1) { top: 12%; left: 6%; }
.orbit-chip:nth-of-type(2) { top: 6%; right: 2%; animation-delay: -1.1s; }
.orbit-chip:nth-of-type(3) { right: -3%; bottom: 18%; animation-delay: -2.2s; }
.orbit-chip:nth-of-type(4) { bottom: 7%; left: 7%; animation-delay: -3.4s; }

@keyframes float {
  50% { transform: translateY(-14px) rotate(1deg); }
}

.problem-scene .orbit-voice {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.problem-scene .orbit-voice--right {
  flex-direction: row-reverse;
}

.problem-scene .orbit-voice--one {
  top: 6%;
  left: -1%;
}

.problem-scene .orbit-voice--two {
  top: 8%;
  right: -2%;
}

.problem-scene .orbit-voice--three {
  right: -5%;
  bottom: 10%;
}

.problem-scene .orbit-voice--four {
  bottom: 7%;
  left: 0;
}

.problem-scene .orbit-person {
  --skin: #e9b18e;
  --hair: #403128;
  --shirt: #718a77;
  position: relative;
  width: 78px;
  height: 98px;
  flex: 0 0 auto;
  opacity: 0;
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.28));
  transform: translate3d(0, 28px, 0) scale(0.28) rotate(-4deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.problem-scene .orbit-person::before {
  content: "";
  position: absolute;
  inset: 10px -3px 0;
  background: rgba(255, 214, 46, 0.13);
  border: 1px solid rgba(255, 214, 46, 0.3);
  border-radius: 50%;
}

.problem-scene .orbit-person__body {
  position: absolute;
  z-index: 1;
  right: 4px;
  bottom: 0;
  left: 4px;
  height: 46px;
  background: var(--shirt);
  border: 2px solid rgba(31, 34, 41, 0.75);
  border-radius: 34px 34px 12px 12px;
  box-shadow: inset 0 -9px 0 rgba(0, 0, 0, 0.1);
}

.problem-scene .orbit-person__neck {
  position: absolute;
  z-index: 2;
  top: 52px;
  left: 50%;
  width: 18px;
  height: 20px;
  background: var(--skin);
  border-right: 2px solid rgba(31, 34, 41, 0.7);
  border-left: 2px solid rgba(31, 34, 41, 0.7);
  transform: translateX(-50%);
}

.problem-scene .orbit-person__head {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 50%;
  width: 48px;
  height: 52px;
  background: var(--skin);
  border: 2px solid rgba(31, 34, 41, 0.78);
  border-radius: 46% 46% 48% 48% / 40% 40% 58% 58%;
  transform: translateX(-50%);
}

.problem-scene .orbit-person__head::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -3px;
  left: -3px;
  height: 24px;
  background: var(--hair);
  border-radius: 58% 58% 35% 35%;
  clip-path: polygon(0 0, 100% 0, 100% 62%, 84% 48%, 70% 74%, 55% 52%, 37% 76%, 20% 48%, 0 70%);
}

.problem-scene .orbit-person__head::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 12px;
  width: 5px;
  height: 4px;
  background: #26313c;
  border-radius: 50%;
  box-shadow: 17px 0 #26313c, 9px 12px 0 -1px rgba(116, 57, 49, 0.62);
}

.problem-scene .orbit-person--two {
  --skin: #9c6549;
  --hair: #17191f;
  --shirt: #d8a741;
}

.problem-scene .orbit-person--two .orbit-person__head::before {
  top: -8px;
  height: 30px;
  border-radius: 50% 50% 30% 30%;
}

.problem-scene .orbit-person--three {
  --skin: #f0c5a5;
  --hair: #d4a55e;
  --shirt: #6684a6;
}

.problem-scene .orbit-person--three .orbit-person__head::before {
  right: -7px;
  left: -7px;
  height: 43px;
  border-radius: 55% 55% 46% 46%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 83% 75%, 76% 34%, 60% 61%, 45% 35%, 25% 66%, 18% 100%, 0 100%);
}

.problem-scene .orbit-person--four {
  --skin: #c98d6d;
  --hair: #7d3d28;
  --shirt: #956b88;
}

.problem-scene .orbit-person--four .orbit-person__head::before {
  top: -9px;
  height: 31px;
  border-radius: 52% 60% 35% 35%;
}

.problem-scene .orbit-chip {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  max-width: 180px;
  opacity: 0;
  animation: none;
  transform: translate3d(0, 18px, 0) scale(0.76);
  transform-origin: 0 75%;
  will-change: transform, opacity;
}

.problem-scene .orbit-voice--right .orbit-chip {
  transform-origin: 100% 75%;
}

.problem-scene .orbit-chip::after {
  content: "";
  position: absolute;
  top: 55%;
  left: -7px;
  width: 16px;
  height: 16px;
  background: var(--paper);
  transform: translateY(-50%) rotate(45deg);
}

.problem-scene .orbit-voice--right .orbit-chip::after {
  right: -7px;
  left: auto;
}

@keyframes orbit-person-pop {
  0% { opacity: 0; transform: translate3d(0, 28px, 0) scale(0.28) rotate(-4deg); }
  68% { opacity: 1; transform: translate3d(0, -5px, 0) scale(1.08) rotate(1deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(0); }
}

@keyframes orbit-bubble-pop {
  0% { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.76); }
  72% { opacity: 1; transform: translate3d(0, -3px, 0) scale(1.04); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes orbit-core-burst {
  0%, 24% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  52% { opacity: 1; transform: translate(-50%, -50%) scale(1.34); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.12); }
}

@keyframes orbit-particle-burst {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(0) scale(0.16); }
  24% { opacity: 1; }
  72% { opacity: 1; }
  100% { opacity: 0.72; transform: translate(calc(-50% + var(--burst-x)), calc(-50% + var(--burst-y))) rotate(var(--burst-r)) scale(1); }
}

@keyframes orbit-title-reveal {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.82); }
  70% { opacity: 1; transform: translate(-50%, -50%) scale(1.045); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes orbit-letter-break {
  0% { transform: translate3d(0, 0, 0) rotate(0); }
  72% { transform: translate3d(var(--letter-x), var(--letter-y), 0) rotate(var(--letter-r)) scale(1.045); }
  100% { transform: translate3d(var(--letter-x), var(--letter-y), 0) rotate(var(--letter-r)); }
}

@keyframes orbit-crack-reveal {
  0% { opacity: 0; filter: brightness(2); transform: rotate(var(--crack-rotation)) scaleY(0); }
  42% { opacity: 1; filter: brightness(1.4); }
  100% { opacity: 0.92; filter: none; transform: rotate(var(--crack-rotation)) scaleY(1); }
}

.work-scene {
  position: relative;
  height: 220vh;
  min-height: 1450px;
}

.work-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(90px, 10vh, 130px) 0;
}

.work-scene .problem-copy p:not(.eyebrow) {
  color: #5d626b;
}

.work-orbit {
  --work-world-p: 0;
  isolation: isolate;
  background:
    linear-gradient(145deg, #343a45, #252a32 72%);
  border-color: rgba(38, 42, 50, 0.12);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.28), 0 35px 80px rgba(38, 42, 50, 0.18);
}

.work-orbit::before,
.work-orbit::after {
  content: none;
}

.work-backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 214, 46, 0.2), transparent 39%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 85px rgba(0, 0, 0, 0.24);
  opacity: 0.42;
  transform: scale(0.91);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.work-ring {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 214, 46, 0.48);
  border-radius: 50%;
  opacity: 0.62;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.work-ring--outer {
  width: 78%;
  aspect-ratio: 1;
}

.work-ring--middle {
  width: 56%;
  aspect-ratio: 1;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.18);
}

.work-ring--inner {
  width: 34%;
  aspect-ratio: 1;
  border-style: dotted;
  border-color: rgba(255, 214, 46, 0.34);
}

.work-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 178px;
  height: 178px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(255, 214, 46, 0.09), 0 0 58px rgba(255, 214, 46, 0.18), 0 25px 70px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.work-core::before {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(38, 42, 50, 0.22);
  border-radius: 50%;
}

.work-burst {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.work-burst span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--burst-size, 3px);
  height: var(--burst-size, 3px);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 214, 46, 0.4);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.18);
  will-change: transform, opacity;
}

.work-burst span:nth-child(3n) {
  width: 2px;
  height: 7px;
  border-radius: 999px;
}

.work-burst span:nth-child(4n) {
  width: 5px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: none;
}

.work-burst span:nth-child(5n) {
  width: 3px;
  height: 3px;
  background: var(--sage-pale);
}

.work-eyes {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  gap: 34px;
  opacity: 0;
  filter: drop-shadow(0 0 16px rgba(255, 214, 46, 0.68));
  transform: translate(-50%, -50%) scale(0.62);
  transform-origin: 50% 50%;
  will-change: transform, opacity, filter;
}

.work-eye {
  position: relative;
  width: 86px;
  height: 46px;
  overflow: hidden;
  background: var(--white);
  border: 3px solid var(--yellow);
  border-radius: 76% 18% 76% 18% / 78% 20% 78% 20%;
  box-shadow: inset 0 0 20px rgba(255, 214, 46, 0.24), 0 0 26px rgba(255, 214, 46, 0.34);
  transform: rotate(2deg);
}

.work-eye--right {
  border-radius: 18% 76% 18% 76% / 20% 78% 20% 78%;
  transform: rotate(-2deg);
}

.work-eye::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  background: #242830;
  border: 7px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 214, 46, 0.86);
  transform: translate(-50%, -50%);
}

.work-eye::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 31px;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
}

.work-title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  transform-origin: 50% 50%;
  white-space: nowrap;
  will-change: transform, opacity;
}

.work-title span {
  color: var(--yellow);
  font-size: clamp(0.92rem, 1.65vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.24em;
}

.work-title strong {
  color: var(--white);
  font-size: clamp(3rem, 5.15vw, 5.2rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.work-action {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: none;
}

.work-action--right {
  flex-direction: row-reverse;
}

.work-action--listen {
  top: 4%;
  left: -1%;
}

.work-action--understand {
  top: 5%;
  right: -3%;
}

.work-action--design {
  right: -5%;
  bottom: 7%;
}

.work-action--deliver {
  bottom: 4%;
  left: -2%;
}

.work-character {
  --skin: #e6ad89;
  --hair: #4c3124;
  --shirt: #718a77;
  position: relative;
  width: 90px;
  height: 116px;
  flex: 0 0 auto;
  opacity: 0;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.3));
  transform: translate3d(0, 30px, 0) scale(0.25) rotate(-4deg);
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}

.work-character::before {
  content: "";
  position: absolute;
  inset: 12px -2px -1px;
  background: rgba(255, 214, 46, 0.12);
  border: 1px solid rgba(255, 214, 46, 0.28);
  border-radius: 50%;
}

.work-character__body {
  position: absolute;
  z-index: 1;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 54px;
  background: var(--shirt);
  border: 2px solid rgba(31, 34, 41, 0.78);
  border-radius: 34px 34px 12px 12px;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.11);
}

.work-character__neck {
  position: absolute;
  z-index: 2;
  top: 56px;
  left: 50%;
  width: 18px;
  height: 20px;
  background: var(--skin);
  border-right: 2px solid rgba(31, 34, 41, 0.72);
  border-left: 2px solid rgba(31, 34, 41, 0.72);
  transform: translateX(-50%);
}

.work-character__head {
  position: absolute;
  z-index: 4;
  top: 15px;
  left: 50%;
  width: 48px;
  height: 54px;
  background: var(--skin);
  border: 2px solid rgba(31, 34, 41, 0.8);
  border-radius: 46% 46% 48% 48% / 40% 40% 58% 58%;
  transform: translateX(-50%);
}

.work-character__head::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -3px;
  left: -3px;
  height: 25px;
  background: var(--hair);
  border-radius: 58% 58% 35% 35%;
  clip-path: polygon(0 0, 100% 0, 100% 62%, 84% 48%, 70% 74%, 55% 52%, 37% 76%, 20% 48%, 0 70%);
}

.work-character__head::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 12px;
  width: 5px;
  height: 4px;
  background: #26313c;
  border-radius: 50%;
  box-shadow: 17px 0 #26313c, 9px 12px 0 -1px rgba(116, 57, 49, 0.6);
}

.work-character__arm {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  width: 14px;
  height: 48px;
  background: var(--skin);
  border: 2px solid rgba(31, 34, 41, 0.76);
  border-radius: 999px;
  transform-origin: 50% 90%;
}

.work-character__arm--left {
  left: 8px;
  transform: rotate(14deg);
}

.work-character__arm--right {
  right: 8px;
  transform: rotate(-14deg);
}

.work-prop {
  position: absolute;
  z-index: 6;
  display: block;
}

.work-character--listen .work-character__arm--right {
  right: 15px;
  bottom: 42px;
  transform: rotate(-55deg);
}

.work-prop--listen {
  top: 25px;
  right: -7px;
  width: 29px;
  height: 29px;
  border: 3px solid var(--yellow);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
  animation: listen-waves 1.5s ease-in-out infinite;
}

.work-prop--listen::before,
.work-prop--listen::after {
  content: "";
  position: absolute;
  border: 2px solid var(--yellow);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
}

.work-prop--listen::before {
  inset: 5px;
}

.work-prop--listen::after {
  inset: 11px;
  background: var(--yellow);
}

.work-character--understand {
  --skin: #9d674c;
  --hair: #171a20;
  --shirt: #c89a38;
}

.work-character--understand .work-character__head::before {
  top: -9px;
  height: 31px;
  border-radius: 52% 52% 32% 32%;
}

.work-character--understand .work-character__arm--left {
  left: 15px;
  bottom: 36px;
  transform: rotate(49deg);
}

.work-prop--understand {
  top: -7px;
  left: 50%;
  width: 27px;
  height: 27px;
  background: var(--yellow);
  border: 2px solid #242830;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 214, 46, 0.11), 0 0 25px rgba(255, 214, 46, 0.66);
  transform: translateX(-50%);
  animation: idea-glow 1.7s ease-in-out infinite;
}

.work-prop--understand::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 7px;
  width: 9px;
  height: 10px;
  background: #69717d;
  border: 2px solid #242830;
  border-radius: 2px 2px 5px 5px;
}

.work-prop--understand::after {
  content: "✦";
  position: absolute;
  top: -15px;
  left: 31px;
  color: var(--yellow);
  font-size: 0.8rem;
}

.work-character--design {
  --skin: #efc2a1;
  --hair: #d4a45b;
  --shirt: #6984a4;
}

.work-character--design .work-character__head::before {
  right: -7px;
  left: -7px;
  height: 42px;
  border-radius: 55% 55% 45% 45%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 84% 76%, 76% 34%, 61% 61%, 46% 35%, 25% 67%, 17% 100%, 0 100%);
}

.work-character--design .work-character__arm--left {
  left: 4px;
  transform: rotate(-34deg);
}

.work-character--design .work-character__arm--right {
  right: 4px;
  transform: rotate(34deg);
}

.work-prop--design {
  right: -4px;
  bottom: 4px;
  width: 49px;
  height: 54px;
  background: #f6f4ed;
  border: 3px solid #252a32;
  border-radius: 5px;
  box-shadow: inset 0 -11px 0 #d8dfdb;
}

.work-prop--design::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 9px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 13px 0 #718a77, 26px 0 #6684a6, 0 17px 0 2px #343a45, 16px 17px 0 2px #343a45;
}

.work-prop--design::after {
  content: "";
  position: absolute;
  top: -9px;
  right: -5px;
  width: 6px;
  height: 44px;
  background: var(--yellow);
  border: 2px solid #252a32;
  border-radius: 999px;
  transform: rotate(24deg);
  animation: pencil-move 1.8s ease-in-out infinite;
}

.work-character--deliver {
  --skin: #cb8d6c;
  --hair: #763b28;
  --shirt: #8c6984;
}

.work-character--deliver .work-character__head::before {
  top: -9px;
  height: 31px;
  border-radius: 52% 60% 35% 35%;
}

.work-character--deliver .work-character__arm--left {
  left: 6px;
  transform: rotate(-33deg);
}

.work-character--deliver .work-character__arm--right {
  right: 6px;
  transform: rotate(33deg);
}

.work-prop--deliver {
  bottom: 1px;
  left: -7px;
  width: 56px;
  height: 45px;
  background: #c89558;
  border: 3px solid #252a32;
  border-radius: 4px;
  box-shadow: inset 0 6px 0 rgba(255, 255, 255, 0.12);
  animation: package-ready 1.9s ease-in-out infinite;
}

.work-prop--deliver::before {
  content: "";
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: 21px;
  width: 9px;
  background: #e3bb75;
  border-right: 2px solid rgba(37, 42, 50, 0.45);
  border-left: 2px solid rgba(37, 42, 50, 0.45);
}

.work-prop--deliver::after {
  content: "✓";
  position: absolute;
  top: 7px;
  right: 5px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid #252a32;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.work-chip {
  position: relative;
  min-width: 126px;
  padding: 13px 17px 14px;
  opacity: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 17px;
  box-shadow: 0 17px 38px rgba(0, 0, 0, 0.27);
  transform: translate3d(0, 18px, 0) scale(0.76);
  transform-origin: 0 70%;
  will-change: transform, opacity;
}

.work-action--right .work-chip {
  transform-origin: 100% 70%;
}

.work-chip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -7px;
  width: 14px;
  height: 14px;
  background: var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.work-action--right .work-chip::after {
  right: -7px;
  left: auto;
}

.work-chip small,
.work-chip strong {
  display: block;
}

.work-chip small {
  margin-bottom: 3px;
  color: #6a716d;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.work-chip strong {
  font-size: 1.02rem;
  line-height: 1;
}

@keyframes work-character-pop {
  0% { opacity: 0; transform: translate3d(0, 30px, 0) scale(0.25) rotate(-4deg); }
  68% { opacity: 1; transform: translate3d(0, -5px, 0) scale(1.08) rotate(1deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(0); }
}

@keyframes work-eyes-flash {
  0% { opacity: 0; filter: drop-shadow(0 0 0 rgba(255, 214, 46, 0)); transform: translate(-50%, -50%) scale(0.62); }
  28% { opacity: 1; filter: drop-shadow(0 0 25px rgba(255, 214, 46, 0.92)); transform: translate(-50%, -50%) scale(1.08); }
  58% { opacity: 1; filter: drop-shadow(0 0 16px rgba(255, 214, 46, 0.72)); transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; filter: drop-shadow(0 0 34px rgba(255, 214, 46, 0.2)); transform: translate(-50%, -50%) scale(1.14); }
}

@keyframes work-chip-pop {
  0% { opacity: 0; transform: translate3d(0, 18px, 0) scale(0.76); }
  72% { opacity: 1; transform: translate3d(0, -3px, 0) scale(1.04); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes listen-waves {
  50% { opacity: 0.48; transform: rotate(45deg) scale(1.12); }
}

@keyframes idea-glow {
  50% { box-shadow: 0 0 0 10px rgba(255, 214, 46, 0.06), 0 0 34px rgba(255, 214, 46, 0.86); transform: translateX(-50%) translateY(-3px); }
}

@keyframes pencil-move {
  50% { transform: translate(-3px, 3px) rotate(18deg); }
}

@keyframes package-ready {
  50% { transform: translateY(-3px); }
}

.manifesto {
  overflow: hidden;
}

.manifesto__statement {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(3.6rem, 8.2vw, 9.2rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.manifesto__statement .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.manifesto__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 90px;
}

.value-card {
  min-height: 310px;
  padding: 30px;
  color: var(--white);
  background: rgba(36, 40, 48, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.value-card__num {
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.value-card h3 {
  margin: 72px 0 14px;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.system-story {
  position: relative;
  height: 330vh;
  background: #1e2128;
}

.system-story__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.system-story__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  transform: scale(calc(1.04 + var(--story-p, 0) * 0.06));
}

.system-story__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(25, 28, 34, 0.78), rgba(25, 28, 34, 0.04) 38%, rgba(25, 28, 34, 0.86) 90%),
    linear-gradient(90deg, rgba(25, 28, 34, 0.86), rgba(25, 28, 34, 0.06) 52%, rgba(25, 28, 34, 0.3));
}

.system-story__copy {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 44px), var(--max));
  height: 100%;
  margin: auto;
}

.story-intro {
  position: absolute;
  top: 11%;
  left: 0;
  width: min(620px, 52vw);
}

.story-steps {
  position: absolute;
  right: 0;
  bottom: 7%;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: clamp(14px, 1.8vw, 26px);
}

.story-steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: calc(100% + 22px);
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 214, 46, 0.08), var(--yellow), rgba(255, 214, 46, 0.08));
  box-shadow: 0 0 22px rgba(255, 214, 46, 0.36);
  transform: rotate(-2deg);
  transform-origin: right center;
}

.story-step {
  position: relative;
  z-index: 1;
  min-height: 215px;
  padding: clamp(22px, 2vw, 30px);
  overflow: hidden;
  opacity: 0;
  background: rgba(27, 31, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  transform: translate3d(0, 60px, 0) scale(0.92);
  transition:
    background 0.42s var(--ease),
    border-color 0.42s var(--ease),
    box-shadow 0.42s var(--ease);
  will-change: transform, opacity;
}

.story-step:nth-child(2) {
  margin-bottom: 28px;
}

.story-step:nth-child(3) {
  margin-bottom: 56px;
}

.story-step::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), rgba(255, 214, 46, 0));
  opacity: 0.24;
  transition: opacity 0.4s var(--ease);
}

.story-step::after {
  content: "→";
  position: absolute;
  right: 20px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.14);
  font-size: 2rem;
  font-weight: 800;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.story-step:last-child::after {
  content: "✓";
}

.story-step.is-active {
  background: rgba(42, 47, 55, 0.96);
  border-color: rgba(255, 214, 46, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 214, 46, 0.12);
}

.story-step.is-active::before {
  opacity: 1;
}

.story-step.is-active::after {
  color: var(--yellow);
  transform: translateX(4px);
}

.story-step span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.story-step h3 {
  max-width: 310px;
  margin: 22px 0 10px;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.story-step p {
  max-width: 330px;
  margin: 0;
  padding-right: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  line-height: 1.48;
}

.horizontal-scene {
  height: 350vh;
  background: var(--paper);
  --reel-x: 0px;
}

.horizontal-scene__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--ink);
}

.horizontal-scene__top {
  position: absolute;
  z-index: 2;
  top: clamp(90px, 12vh, 130px);
  left: max(22px, calc((100vw - var(--max)) / 2));
}

.horizontal-track {
  position: absolute;
  top: 34%;
  left: max(22px, calc((100vw - var(--max)) / 2));
  display: flex;
  gap: 24px;
  width: max-content;
  padding-right: 9vw;
  transform: translate3d(var(--reel-x), 0, 0);
  will-change: transform;
}

.case-card {
  position: relative;
  width: min(76vw, 900px);
  height: min(54vh, 570px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(29, 31, 38, 0.24);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.5s;
}

.case-card:hover img {
  transform: scale(1.045);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 22, 27, 0.88));
}

.case-card__copy {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.case-card__copy span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3.8vw, 4.5rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.case-card--wide-title h3 {
  max-width: 560px;
  font-size: clamp(1.9rem, 3.15vw, 3.65rem);
  line-height: 0.92;
}

.case-card p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cta-band {
  overflow: hidden;
  text-align: center;
}

.cta-band::before {
  content: "2";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.08);
  font-size: min(72vw, 780px);
  font-weight: 800;
  line-height: 0.7;
  transform: translate(-50%, -50%);
}

.cta-band .container {
  position: relative;
  z-index: 2;
}

.cta-band p {
  max-width: 650px;
  margin: 28px auto 34px;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
}

.subpage-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 110px) 0 110px;
  overflow: hidden;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 214, 46, 0.16), transparent 24%),
    radial-gradient(circle at 28% 64%, rgba(111, 132, 111, 0.2), transparent 32%),
    linear-gradient(135deg, #20232a, #343943);
}

.subpage-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -26vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 214, 46, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255, 255, 255, 0.01), 0 0 0 16vw rgba(255, 255, 255, 0.01);
}

.subpage-hero__inner {
  position: relative;
  z-index: 2;
}

.subpage-hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
}

.hero-index {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 100px;
  color: var(--yellow);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.08em;
  opacity: 0.18;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  perspective: 1200px;
}

.service-card {
  position: relative;
  isolation: isolate;
  min-height: 410px;
  padding: 32px;
  overflow: hidden;
  background: #dddcd5;
  border: 1px solid rgba(38, 42, 50, 0.13);
  border-radius: 32px;
  box-shadow: 0 26px 65px rgba(31, 33, 39, 0.14);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease), filter 0.45s var(--ease);
  will-change: transform, opacity;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card::before {
  content: attr(data-card-number);
  position: absolute;
  z-index: 0;
  right: -0.04em;
  bottom: -0.23em;
  color: currentColor;
  opacity: 0.055;
  font-size: clamp(9rem, 18vw, 17rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.34;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 85% 15%, rgba(255, 214, 46, 0.32), transparent 28%);
  background-size: 42px 42px, 42px 42px, auto;
  mask-image: linear-gradient(145deg, #000, transparent 72%);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(255, 214, 46, 0.52);
  box-shadow: 0 34px 90px rgba(31, 33, 39, 0.23), 0 0 0 1px rgba(255, 214, 46, 0.08);
  filter: saturate(1.05);
}

.service-card:nth-child(1),
.service-card:nth-child(4) {
  grid-column: span 7;
}

.service-card:nth-child(2),
.service-card:nth-child(3) {
  grid-column: span 5;
}

.service-card:nth-child(1) {
  color: var(--white);
  background:
    radial-gradient(circle at 87% 17%, rgba(255, 214, 46, 0.18), transparent 22%),
    linear-gradient(145deg, #788e79, #5f7664);
}

.service-card:nth-child(2) {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(168, 181, 166, 0.2), transparent 24%),
    linear-gradient(145deg, #3c424d, #292e37);
}

.service-card:nth-child(3) {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.36), transparent 22%),
    linear-gradient(145deg, #ffdf53, var(--yellow));
}

.service-card:nth-child(4) {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 15%, rgba(111, 132, 111, 0.3), transparent 25%),
    linear-gradient(145deg, #515865, #393f49);
}

.service-card:nth-child(3)::after {
  opacity: 0.24;
  background:
    linear-gradient(rgba(37, 40, 48, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 40, 48, 0.11) 1px, transparent 1px),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.62), transparent 26%);
  background-size: 42px 42px, 42px 42px, auto;
}

.service-card__num {
  display: flex;
  align-items: center;
  gap: 12px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card__num::after {
  content: "";
  width: 54px;
  height: 2px;
  background: currentColor;
  opacity: 0.34;
}

.service-card h3 {
  max-width: 650px;
  margin: 112px 0 18px;
  font-size: clamp(2.15rem, 3.75vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.82;
}

.service-card__icon {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  box-shadow: 0 18px 35px rgba(20, 23, 28, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 1.8rem;
  transform: rotate(3deg);
  transition: transform 0.48s var(--ease), box-shadow 0.48s var(--ease);
}

.service-card__icon::before,
.service-card__icon::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-card__icon::before {
  width: 58px;
  height: 58px;
  border: 1px dashed rgba(37, 40, 48, 0.26);
}

.service-card__icon::after {
  right: 9px;
  bottom: 9px;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(255, 214, 46, 0.17);
}

.service-card__icon span {
  z-index: 2;
  display: grid;
  place-items: center;
}

.service-card:nth-child(3) .service-card__icon {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(37, 40, 48, 0.4);
}

.service-card:nth-child(3) .service-card__icon::before {
  border-color: rgba(255, 255, 255, 0.26);
}

.service-card:hover .service-card__icon {
  transform: rotate(0) translateY(-5px) scale(1.04);
  box-shadow: 0 24px 44px rgba(20, 23, 28, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.service-card__tags span {
  padding: 7px 12px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:nth-child(3) .service-card__tags span {
  background: rgba(37, 40, 48, 0.07);
  border-color: rgba(37, 40, 48, 0.25);
}

.service-card.is-service-active .service-card__icon--video span {
  animation: service-video 1.35s ease-in-out infinite;
}

.service-card.is-service-active .service-card__icon--photo::before {
  animation: service-lens 2.2s linear infinite;
}

.service-card.is-service-active .service-card__icon--strategy span {
  animation: service-strategy 1.4s ease-in-out infinite;
}

.service-card.is-service-active .service-card__icon--system span {
  animation: service-system 1.5s ease-in-out infinite;
}

@keyframes service-video {
  50% { transform: scale(1.14); }
}

@keyframes service-lens {
  to { transform: rotate(360deg); }
}

@keyframes service-strategy {
  50% { transform: translate(5px, -5px); }
}

@keyframes service-system {
  50% { transform: translateY(-4px) rotate(5deg); }
}

.process-journey {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 34%, rgba(111, 132, 111, 0.16), transparent 30rem),
    radial-gradient(circle at 90% 78%, rgba(255, 214, 46, 0.07), transparent 26rem);
}

.process-status {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin: 0 auto clamp(62px, 8vw, 100px);
  padding: 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 60px rgba(0, 0, 0, 0.18);
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-weight: 700;
}

.process-status span,
.process-status strong {
  padding: 11px 20px;
  text-align: center;
}

.process-status i {
  color: var(--yellow);
  font-size: 1.5rem;
  font-style: normal;
  animation: process-arrow 1.7s ease-in-out infinite;
}

.process-status strong {
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
}

.process-status b {
  display: inline-grid;
  width: 22px;
  height: 22px;
  margin-left: 4px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
}

.process-list {
  --process-p: 0;
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 24px;
  padding: 22px 0 22px 102px;
}

.process-list::before,
.process-list::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 70px;
  bottom: 70px;
  left: 31px;
  width: 3px;
  border-radius: 999px;
  transform-origin: top;
}

.process-list::before {
  background: rgba(255, 255, 255, 0.12);
}

.process-list::after {
  background: linear-gradient(var(--yellow), #f3b92e);
  box-shadow: 0 0 18px rgba(255, 214, 46, 0.55);
  transform: scaleY(var(--process-p));
}

.process-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 82px minmax(220px, 0.78fr) minmax(310px, 1.22fr);
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  min-height: 210px;
  padding: 28px clamp(26px, 3vw, 42px);
  opacity: 0.18;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(37, 40, 48, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transform: translate3d(-80px, 30px, 0) scale(0.96);
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  will-change: transform, opacity;
}

.process-row:nth-child(even) {
  transform: translate3d(80px, 30px, 0) scale(0.96);
}

.process-row.is-active {
  background:
    linear-gradient(125deg, rgba(111, 132, 111, 0.25), rgba(255, 214, 46, 0.06)),
    rgba(42, 46, 55, 0.96);
  border-color: rgba(255, 214, 46, 0.56);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 214, 46, 0.08);
}

.process-row__num {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: -102px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border: 2px solid rgba(255, 214, 46, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--ink), 0 14px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  transition: color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
}

.process-row.is-active .process-row__num {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-50%) scale(1.1);
}

.process-row__icon {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  background: rgba(111, 132, 111, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease);
}

.process-row.is-active .process-row__icon {
  background: rgba(255, 214, 46, 0.12);
  transform: translateY(-5px) rotate(-2deg) scale(1.05);
}

.process-row__icon i,
.process-row__icon i::before,
.process-row__icon i::after {
  position: absolute;
  display: block;
  content: "";
}

.process-row__icon i {
  top: 50%;
  left: 50%;
}

.process-row__icon--meet i {
  width: 35px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 8px;
  transform: translate(-65%, -65%);
}

.process-row__icon--meet i::before {
  right: -15px;
  bottom: -15px;
  width: 29px;
  height: 20px;
  background: #37413c;
  border: 3px solid currentColor;
  border-radius: 7px;
}

.process-row__icon--meet i::after {
  bottom: -7px;
  left: 5px;
  width: 9px;
  height: 9px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: rotate(-28deg);
}

.process-row__icon--plan i {
  width: 39px;
  height: 43px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}

.process-row__icon--plan i::before {
  top: 8px;
  right: 7px;
  left: 7px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 9px currentColor, 0 18px currentColor;
}

.process-row__icon--plan i::after {
  top: -7px;
  left: 9px;
  width: 15px;
  height: 8px;
  background: var(--yellow);
  border: 3px solid #30353d;
  border-radius: 5px;
}

.process-row__icon--shoot i {
  width: 45px;
  height: 31px;
  background: currentColor;
  border-radius: 7px;
  transform: translate(-50%, -50%);
}

.process-row__icon--shoot i::before {
  top: 6px;
  left: 13px;
  width: 15px;
  height: 15px;
  background: #30353d;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.process-row__icon--shoot i::after {
  top: -8px;
  left: 7px;
  width: 15px;
  height: 9px;
  background: currentColor;
  border-radius: 4px 4px 0 0;
}

.process-row__icon--ready i {
  width: 45px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 5px;
  transform: translate(-50%, calc(-50% + 4px));
}

.process-row__icon--ready i::before {
  top: -10px;
  left: -3px;
  width: 21px;
  height: 10px;
  background: currentColor;
  border-radius: 5px 5px 0 0;
}

.process-row__icon--ready i::after {
  content: "✓";
  top: 3px;
  right: -8px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid #30353d;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.process-row.is-active h3 {
  color: var(--yellow);
  transform: translateX(4px);
}

.process-row p {
  max-width: 560px;
  margin: 0 0 0 auto;
  color: var(--muted);
}

.process-row.is-active .process-row__icon--meet i {
  animation: process-talk 1.5s ease-in-out infinite;
}

.process-row.is-active .process-row__icon--shoot i {
  animation: process-camera 1.8s ease-in-out infinite;
}

.process-row.is-active .process-row__icon--ready i::after {
  animation: process-check 1.4s ease-in-out infinite;
}

@keyframes process-arrow {
  50% { transform: translateX(6px); }
}

@keyframes process-talk {
  50% { transform: translate(-65%, calc(-65% - 3px)); }
}

@keyframes process-camera {
  15%, 25% { filter: brightness(1.7); transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes process-check {
  50% { transform: scale(1.12) rotate(5deg); }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.package-card {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: border-color 0.35s var(--ease), box-shadow 0.45s var(--ease), background-color 0.35s var(--ease);
}

.package-card:hover {
  border-color: rgba(255, 214, 46, 0.42);
  box-shadow: 0 32px 82px rgba(8, 11, 15, 0.36);
}

.package-card:nth-child(2) {
  top: -28px;
  color: var(--ink);
  background: var(--yellow);
}

.package-card__label {
  display: flex;
  justify-content: space-between;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 54px 0 4px;
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.package-price {
  margin: 24px 0 36px;
  font-size: clamp(2.5rem, 4vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.package-price small {
  font-size: 1rem;
  letter-spacing: 0;
  opacity: 0.6;
}

.package-price__from {
  display: inline-block;
  margin-right: 0.08em;
  font-size: 0.34em;
  font-weight: 850;
  letter-spacing: 0.11em;
  line-height: 1;
  opacity: 0.7;
  text-transform: uppercase;
  transform: translateY(-0.55em);
}

.package-list {
  display: grid;
  gap: 13px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 24px;
  opacity: 0.84;
}

.package-list li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: currentColor;
}

.package-button {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 7px 8px 7px 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.package-button__arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 1.15rem;
  transition: transform 0.32s var(--ease), background-color 0.3s;
}

.package-button:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.package-button:hover .package-button__arrow {
  background: var(--sage-pale);
  transform: translate3d(2px, -2px, 0);
}

.package-button:active {
  filter: brightness(0.94);
}

.package-button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.package-card:nth-child(2):hover {
  border-color: rgba(37, 40, 48, 0.35);
  box-shadow: 0 34px 86px rgba(8, 11, 15, 0.28);
}

.package-card:nth-child(2) .package-button {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.package-card:nth-child(2) .package-button:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.package-card:nth-child(2) .package-button:focus-visible {
  outline-color: var(--ink);
}

.package-journey .packages-grid {
  position: relative;
  z-index: 2;
}

.package-journey .package-card::before {
  position: absolute;
  z-index: 4;
  bottom: -7px;
  left: 50%;
  width: 15px;
  aspect-ratio: 1;
  content: "";
  background: #b9bdc5;
  border: 4px solid var(--ink-2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(185, 189, 197, 0.12);
  opacity: 0;
  transform: translateX(-50%) scale(0.25);
  transition: opacity 0.38s var(--ease), transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-journey .package-card:nth-child(2)::before {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 214, 46, 0.16), 0 0 22px rgba(255, 214, 46, 0.35);
  transition-delay: 0.12s;
}

.package-journey .package-card:nth-child(3)::before {
  transition-delay: 0.22s;
}

.package-journey--active .package-card::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.package-connector {
  position: relative;
  z-index: 1;
  width: calc(100% - 24px);
  height: clamp(190px, 19vw, 250px);
  margin: 0 auto;
  pointer-events: none;
}

.package-connector svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.package-connector__path {
  fill: none;
  stroke: #b9bdc5;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 5px 9px rgba(13, 15, 19, 0.2));
}

.package-connector__path--growth {
  stroke: var(--yellow);
  stroke-width: 6;
  filter: drop-shadow(0 0 10px rgba(255, 214, 46, 0.34));
}

.package-connector.is-visible .package-connector__path--start {
  animation: package-line-draw 1.14s cubic-bezier(0.65, 0, 0.35, 1) 0.04s forwards;
}

.package-connector.is-visible .package-connector__path--growth {
  animation: package-line-draw 1.14s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}

.package-connector.is-visible .package-connector__path--maximum {
  animation: package-line-draw 1.14s cubic-bezier(0.65, 0, 0.35, 1) 0.26s forwards;
}

.package-connector__meet {
  position: absolute;
  z-index: 3;
  bottom: -10px;
  left: 50%;
  width: 22px;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 6px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 214, 46, 0.13), 0 0 28px rgba(255, 214, 46, 0.35);
  opacity: 0;
  transform: translateX(-50%) scale(0.2);
}

.package-connector.is-visible .package-connector__meet {
  animation: package-meet-pop 0.62s cubic-bezier(0.16, 1, 0.3, 1) 1.16s forwards;
}

.custom-package {
  position: relative;
  min-height: 270px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(250px, 330px);
  align-items: center;
  gap: clamp(24px, 4vw, 62px);
  overflow: hidden;
  margin-top: 0;
  padding: clamp(24px, 3vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 50%, rgba(255, 214, 46, 0.15), transparent 18rem),
    radial-gradient(circle at 85% 0%, rgba(111, 132, 114, 0.22), transparent 24rem),
    linear-gradient(120deg, #20232b, #17191f 72%);
  border: 1px solid rgba(255, 214, 46, 0.32);
  border-radius: clamp(26px, 3vw, 42px);
  box-shadow: 0 30px 90px rgba(10, 12, 16, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.965);
  transition: opacity 0.6s var(--ease), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}

.custom-package.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-package::before {
  position: absolute;
  z-index: -1;
  top: -55%;
  bottom: -55%;
  left: -14%;
  width: 24%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 214, 46, 0.1), transparent);
  opacity: 0;
  transform: skewX(-18deg) translateX(-260%);
}

.custom-package.is-visible::before {
  animation: custom-package-sweep 1.25s var(--ease) 0.45s both;
}

.custom-package::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 82%, transparent);
  pointer-events: none;
}

.custom-package__visual {
  position: relative;
  width: 210px;
  aspect-ratio: 1;
  place-self: center;
}

.custom-package__orbit {
  position: absolute;
  border: 1px dashed rgba(255, 214, 46, 0.55);
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-24deg) scale(0.72);
  transition: opacity 0.65s var(--ease), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-package__orbit--outer {
  inset: 5px;
}

.custom-package__orbit--inner {
  inset: 35px;
  border-color: rgba(255, 255, 255, 0.2);
  border-style: solid;
}

.custom-package.is-visible .custom-package__orbit {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.custom-package.is-visible .custom-package__orbit--outer {
  animation: custom-package-orbit 18s linear 1.1s infinite;
}

.custom-package.is-visible .custom-package__orbit--inner {
  animation: custom-package-orbit-reverse 14s linear 1.1s infinite;
}

.custom-package__core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 7px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 214, 46, 0.08), 0 18px 42px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45) rotate(-14deg);
  transition: opacity 0.5s var(--ease) 0.16s, transform 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.16s;
}

.custom-package.is-visible .custom-package__core {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.custom-package__core span {
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.custom-package__core strong {
  margin-top: -2px;
  font-size: 1.3rem;
  letter-spacing: -0.07em;
}

.custom-package__chip {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(36, 39, 47, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(12px) scale(0.8);
  transition: opacity 0.45s var(--ease), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-package__chip--photo {
  top: 22px;
  left: 13px;
  transition-delay: 0.36s;
}

.custom-package__chip--video {
  top: 53px;
  right: -4px;
  transition-delay: 0.48s;
}

.custom-package__chip--social {
  right: 21px;
  bottom: 16px;
  transition-delay: 0.6s;
}

.custom-package.is-visible .custom-package__chip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-package__spark {
  position: absolute;
  z-index: 4;
  width: 7px;
  aspect-ratio: 1;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 214, 46, 0.75);
  opacity: 0;
}

.custom-package__spark--one { top: 17px; right: 53px; }
.custom-package__spark--two { right: 8px; bottom: 66px; width: 4px; }
.custom-package__spark--three { bottom: 31px; left: 32px; width: 5px; }

.custom-package.is-visible .custom-package__spark {
  animation: custom-package-spark 2.5s ease-in-out calc(0.5s + var(--spark-delay, 0s)) infinite;
}

.custom-package__spark--two { --spark-delay: 0.4s; }
.custom-package__spark--three { --spark-delay: 0.8s; }

.custom-package__copy {
  position: relative;
  z-index: 2;
}

.custom-package__copy .eyebrow {
  margin: 0 0 9px;
}

.custom-package__copy h3 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.5rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.custom-package__copy h3 span {
  color: var(--yellow);
}

.custom-package__copy > p:last-of-type {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.69);
  line-height: 1.55;
}

.custom-package__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.custom-package__options span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.custom-package__button {
  position: relative;
  z-index: 3;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 13px 12px 22px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.custom-package__button > span {
  display: grid;
  gap: 5px;
}

.custom-package__button small {
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  opacity: 0.65;
  text-transform: uppercase;
}

.custom-package__button strong {
  font-size: clamp(0.98rem, 1.4vw, 1.2rem);
  line-height: 1.05;
}

.custom-package__button i {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  font-style: normal;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.4s var(--ease);
}

.custom-package__button:hover,
.custom-package__button:focus-visible {
  color: var(--white);
  background: var(--ink-2);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.38);
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
  transform: translateY(-3px);
}

.custom-package__button:hover i,
.custom-package__button:focus-visible i {
  color: var(--ink);
  background: var(--yellow);
  transform: translate(3px, -2px) rotate(7deg);
}

@keyframes custom-package-sweep {
  0% { opacity: 0; transform: skewX(-18deg) translateX(-260%); }
  22% { opacity: 1; }
  100% { opacity: 0; transform: skewX(-18deg) translateX(620%); }
}

@keyframes package-line-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes package-meet-pop {
  0% { opacity: 0; transform: translateX(-50%) scale(0.2); }
  65% { opacity: 1; transform: translateX(-50%) scale(1.18); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes custom-package-orbit {
  to { transform: rotate(360deg); }
}

@keyframes custom-package-orbit-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes custom-package-spark {
  0%, 100% { opacity: 0.18; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.35); }
}

@media (max-width: 1080px) {
  .package-connector {
    height: 205px;
  }

  .custom-package {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .custom-package__visual {
    width: 180px;
  }

  .custom-package__button {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: end;
  }
}

@media (max-width: 720px) {
  .package-connector {
    width: calc(100% - 8px);
    height: 170px;
  }

  .package-connector__path {
    stroke-width: 4;
  }

  .package-connector__path--growth {
    stroke-width: 5;
  }

  .custom-package {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 24px;
    text-align: center;
  }

  .custom-package__visual {
    width: 170px;
  }

  .custom-package__copy > p:last-of-type {
    margin-inline: auto;
  }

  .custom-package__options {
    justify-content: center;
  }

  .custom-package__button {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
    text-align: left;
  }
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  text-align: left;
}

.faq-question::after {
  content: "+";
  color: var(--yellow);
  font-size: 2rem;
  transition: transform 0.35s;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 30px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.crew-hero {
  min-height: 100vh;
  padding-top: 120px;
  background: #1f2229;
}

.crew-hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.crew-hero::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(29, 32, 39, 0.2), rgba(29, 32, 39, 0.86));
}

.crew-hero .subpage-hero__inner {
  text-align: center;
}

.crew-hero .subpage-hero__lead {
  margin-inline: auto;
}

.crew-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  --crew-card-left-x: -48vw;
  --crew-card-right-x: 48vw;
  --crew-card-left-y: 28px;
  --crew-card-right-y: 28px;
  --crew-card-left-r: -1deg;
  --crew-card-right-r: 1deg;
  --crew-card-opacity: 0;
}

.person-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.person-card--walk-left,
.person-card--walk-right {
  opacity: var(--crew-card-opacity);
  will-change: transform, opacity;
  transform-origin: bottom center;
}

.person-card--walk-left::after,
.person-card--walk-right::after {
  content: "";
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 50%;
  width: 54px;
  height: 5px;
  background: var(--yellow);
  border-radius: 999px 999px 0 0;
  box-shadow: 0 0 18px rgba(255, 214, 46, 0.62);
  opacity: var(--crew-card-opacity);
  transform: translateX(-50%) scaleX(var(--crew-card-opacity));
  transform-origin: 50% 100%;
}

.person-card--walk-left {
  transform: translate3d(var(--crew-card-left-x), var(--crew-card-left-y), 0) rotate(var(--crew-card-left-r));
}

.person-card--walk-right {
  transform: translate3d(var(--crew-card-right-x), var(--crew-card-right-y), 0) rotate(var(--crew-card-right-r));
}

.person-portrait {
  position: relative;
  min-height: 620px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse at var(--portrait-light-x, 50%) 38%, rgba(255, 214, 46, 0.24), rgba(146, 139, 76, 0.11) 28%, transparent 59%),
    linear-gradient(180deg, rgba(20, 22, 27, 0.08), rgba(20, 22, 27, 0.22)),
    url("assets/portrait-stage-home.jpg") center / cover no-repeat,
    #20232a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.person-portrait::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 25, 31, 0.2), transparent 34%, rgba(23, 25, 31, 0.45)),
    radial-gradient(circle at var(--portrait-light-x, 50%) 43%, transparent 24%, rgba(22, 24, 30, 0.08) 58%, rgba(18, 20, 25, 0.34) 100%);
}

.person-portrait::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: auto;
  bottom: -24px;
  left: 50%;
  width: 68%;
  height: 92px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 48%, transparent 72%);
  border-radius: 50%;
  opacity: var(--portrait-shadow-opacity, 0.16);
  filter: blur(5px);
  transform: translateX(-50%) scaleX(var(--portrait-shadow-scale, 0.82));
  transition: opacity 120ms linear;
  will-change: transform, opacity;
}

.person-portrait img {
  position: absolute;
  z-index: 1;
  top: auto;
  bottom: -1px;
  left: 50%;
  width: 88%;
  height: 91%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.34));
  transform: translateX(-50%) translateY(var(--portrait-rise, 14px)) scale(var(--portrait-scale, 0.94));
  transform-origin: 50% 100%;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.person-portrait--anne {
  --portrait-light-x: 47%;
  --portrait-scale: 0.94;
  --portrait-hover-scale: 0.955;
}

.person-portrait--toni {
  --portrait-light-x: 53%;
  --portrait-scale: 0.94;
  --portrait-hover-scale: 0.955;
}

.person-card:hover .person-portrait img {
  transform: translateX(-50%) translateY(0) scale(var(--portrait-hover-scale, 0.955));
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.28)) saturate(1.05) contrast(1.02);
}

.person-portrait__index,
.person-portrait__caption {
  position: absolute;
  z-index: 4;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(37, 42, 50, 0.22);
  box-shadow: 0 12px 30px rgba(24, 27, 33, 0.22);
}

.person-portrait__index {
  top: 34px;
  left: 34px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.person-portrait__caption {
  right: 32px;
  bottom: 32px;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.person-card__body {
  padding: 34px;
}

.person-role {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.person-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.person-card p {
  color: var(--muted);
}

.facts-section {
  isolation: isolate;
  overflow: visible;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 214, 46, 0.12), transparent 25rem),
    radial-gradient(circle at 88% 70%, rgba(37, 42, 50, 0.2), transparent 30rem),
    var(--sage);
}

.facts-section > .container {
  position: relative;
  z-index: 3;
}

.focus-connector {
  position: absolute;
  z-index: 2;
  top: -160px;
  left: 0;
  width: 100%;
  height: 480px;
  pointer-events: none;
}

.focus-connector svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 1;
  will-change: opacity;
}

.focus-connector__path {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 7px rgba(255, 214, 46, 0.46));
  will-change: stroke-dashoffset;
}

.focus-connector__start {
  fill: var(--yellow);
  stroke: rgba(37, 42, 50, 0.34);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(255, 214, 46, 0.58));
}

.focus-connector__meet {
  fill: var(--yellow);
  stroke: var(--sage);
  stroke-width: 7;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.35);
  filter: drop-shadow(0 0 15px rgba(255, 214, 46, 0.8));
  will-change: transform, opacity;
}

.focus-rider {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: clamp(88px, 7.8vw, 124px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 15px 16px rgba(31, 34, 41, 0.34)) drop-shadow(0 0 8px rgba(255, 214, 46, 0.2));
  opacity: 0;
  transform: translate3d(-150px, -150px, 0) translate(-50%, -54%) scale(0.7);
  transform-origin: 50% 84%;
  will-change: transform, opacity;
}

.focus-rider img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

.focus-rider span {
  display: none;
}

.facts-section .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.facts-section .section-head > div {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: 18px 34px;
}

.facts-section .section-head > div::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, var(--sage) 52%, rgba(105, 125, 109, 0.94) 72%, transparent 100%);
  border-radius: 48%;
}

.facts-section .section-head .eyebrow {
  justify-content: center;
}

.facts-section .section-head > p {
  max-width: 620px;
  margin: 0 auto;
}

.focus-word {
  position: relative;
  display: inline-flex;
  justify-content: center;
  min-width: 7.1em;
  min-height: 0.86em;
}

.focus-word.is-enhanced .focus-letter {
  display: inline-block;
  opacity: 0;
  transform: translate3d(var(--focus-x), var(--focus-y), 0) rotate(var(--focus-r)) scale(0.62);
  transform-origin: 50% 70%;
  will-change: transform, opacity;
}

.focus-word.is-enhanced .focus-letter--space {
  width: 0.3em;
}

.facts {
  counter-reset: fact-card;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fact {
  counter-increment: fact-card;
  position: relative;
  min-height: 164px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  column-gap: clamp(16px, 1.8vw, 25px);
  row-gap: 18px;
  overflow: hidden;
  padding: 22px 22px 24px;
  background: linear-gradient(145deg, rgba(48, 54, 63, 0.92), rgba(37, 42, 50, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 21px;
  box-shadow: 0 18px 48px rgba(28, 33, 38, 0.14);
  opacity: 0;
  transform: translate3d(var(--fact-x), 42px, 0) rotate(var(--fact-r)) scale(0.95);
  transition:
    opacity 0.72s var(--ease),
    transform 0.82s var(--ease),
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: var(--fact-delay);
}

.facts.is-visible .fact {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.fact::before {
  content: "0" counter(fact-card);
  position: absolute;
  top: 18px;
  right: 19px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fact::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), rgba(255, 214, 46, 0.08));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.75s var(--ease);
  transition-delay: calc(0.28s + var(--fact-delay));
}

.facts.is-visible .fact::after {
  transform: scaleX(1);
}

.fact:hover {
  background: linear-gradient(145deg, rgba(53, 59, 68, 0.98), rgba(37, 42, 50, 0.84));
  border-color: rgba(255, 214, 46, 0.42);
  box-shadow: 0 24px 58px rgba(28, 33, 38, 0.23);
}

.fact__label {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact strong {
  display: inline-block;
  color: var(--yellow);
  font-size: clamp(3rem, 4vw, 4.3rem);
  line-height: 0.78;
  letter-spacing: -0.075em;
  opacity: 0;
  transform: translateY(12px) scale(0.72);
  transform-origin: 0 70%;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.18, 0.82, 0.2, 1.18);
  transition-delay: calc(0.18s + var(--fact-delay));
}

.facts.is-visible .fact strong {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fact__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.25;
}

.contact-hero {
  min-height: 72vh;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 130px;
}

.contact-aside h2 {
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.contact-details a,
.contact-details p {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-details strong {
  min-width: 82px;
  color: var(--white);
}

.contact-form {
  padding: clamp(26px, 5vw, 56px);
  color: var(--ink);
  background: var(--paper);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(38, 42, 50, 0.28);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 2px 0 var(--sage-dark);
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  font-size: 0.88rem;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--sage-dark);
}

.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 54% 52%, rgba(255, 214, 46, 0.13), transparent 18%),
    #303640;
  background-size: 52px 52px, 52px 52px, auto, auto;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 3px;
  background: rgba(168, 181, 166, 0.22);
  transform: rotate(-18deg);
  transform-origin: left;
}

.map-card::before { top: 25%; left: -10%; }
.map-card::after { top: 74%; left: -10%; transform: rotate(12deg); }

.map-pin {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 55%;
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border: 8px solid var(--paper);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
  transform: translate(-50%, -60%) rotate(-45deg);
}

.map-card__label {
  position: absolute;
  z-index: 3;
  top: calc(50% + 48px);
  left: 55%;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
  font-weight: 700;
  white-space: nowrap;
}

.map-card__city {
  position: absolute;
  right: 5%;
  bottom: -0.12em;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.legal-hero {
  min-height: 52vh;
}

.legal-content {
  color: var(--ink);
  background: var(--paper);
}

.legal-content h2 {
  margin: 58px 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #53575f;
}

.legal-note {
  padding: 20px;
  background: rgba(255, 214, 46, 0.2);
  border-left: 4px solid var(--yellow);
  border-radius: 12px;
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 130px 0 80px;
  text-align: center;
}

.thanks p {
  max-width: 620px;
  margin: 26px auto 34px;
  color: var(--muted);
  font-size: 1.25rem;
}

.site-footer {
  position: relative;
  z-index: 4;
  padding: 80px 0 28px;
  color: var(--white);
  background: #181a20;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 0.8fr;
  gap: 42px;
}

.footer-brand p {
  max-width: 330px;
  color: var(--muted);
}

.footer-brand .brand {
  min-width: 0;
}

.footer-brand .brand__logo {
  width: min(100%, 250px);
  max-height: none;
  margin-bottom: 12px;
}

.footer-title {
  margin: 8px 0 24px;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.footer-links a {
  width: fit-content;
  transition: color 0.25s, transform 0.25s;
}

.footer-links a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

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

.reveal.reveal--left {
  transform: translateX(-54px);
}

.reveal.reveal--right {
  transform: translateX(54px);
}

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

[data-split] .split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.8em) rotate(2deg);
  transition: opacity 0.65s var(--ease), transform 0.75s var(--ease);
  transition-delay: calc(var(--word-i) * 45ms);
}

[data-split].is-visible .split-word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

@media (max-width: 1080px) {
  .problem-scene {
    height: auto;
    min-height: 0;
  }

  .problem-stage {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 100px 0;
  }

  .work-scene {
    height: auto;
    min-height: 0;
  }

  .work-stage {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 100px 0;
  }

  .site-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .home-hero__copy {
    width: 60vw;
  }

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

  .problem-orbit {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .problem-orbit.is-visible {
    --orbit-world-p: 1;
  }

  .problem-orbit.is-visible .orbit-backdrop {
    transform: scale(1);
    transition: opacity 0.5s ease 0.68s, transform 0.8s var(--ease) 0.68s;
  }

  .problem-orbit.is-visible::before,
  .problem-orbit.is-visible::after {
    transition: opacity 0.5s ease 0.68s;
  }

  .problem-orbit.is-visible .orbit-core {
    animation: orbit-core-burst 1.08s var(--ease) 0.12s forwards;
  }

  .problem-orbit.is-visible .orbit-burst span {
    animation: orbit-particle-burst 0.95s var(--ease) forwards;
    animation-delay: calc(0.24s + var(--burst-i) * 0.0035s);
  }

  .problem-orbit.is-visible .orbit-title {
    animation: orbit-title-reveal 0.7s var(--ease) 1.08s forwards;
  }

  .problem-orbit.is-visible .orbit-title__letter {
    animation: orbit-letter-break 0.56s cubic-bezier(0.18, 0.78, 0.24, 1) forwards;
    animation-delay: calc(1.62s + var(--letter-i) * 0.012s);
  }

  .problem-orbit.is-visible .orbit-title__crack {
    animation: orbit-crack-reveal 0.42s ease-out 1.67s forwards;
  }

  .problem-scene .problem-orbit.is-visible .orbit-person {
    animation: orbit-person-pop 0.64s var(--ease) forwards;
    animation-delay: calc(2.18s + var(--voice-index) * 0.31s);
  }

  .problem-scene .problem-orbit.is-visible .orbit-chip {
    animation: orbit-bubble-pop 0.56s var(--ease) forwards;
    animation-delay: calc(2.36s + var(--voice-index) * 0.31s);
  }

  .work-orbit.is-visible {
    --work-world-p: 1;
  }

  .work-orbit.is-visible .work-backdrop {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.55s ease 0.62s, transform 0.85s var(--ease) 0.62s;
  }

  .work-orbit.is-visible .work-core {
    animation: orbit-core-burst 1.08s var(--ease) 0.12s forwards;
  }

  .work-orbit.is-visible .work-burst span {
    animation: orbit-particle-burst 0.95s var(--ease) forwards;
    animation-delay: calc(0.24s + var(--burst-i) * 0.0035s);
  }

  .work-orbit.is-visible .work-eyes {
    animation: work-eyes-flash 1.2s var(--ease) 1.12s forwards;
  }

  .work-orbit.is-visible .work-title {
    animation: orbit-title-reveal 0.7s var(--ease) 2.25s forwards;
  }

  .work-orbit.is-visible .work-character {
    animation: work-character-pop 0.64s var(--ease) forwards;
    animation-delay: calc(2.86s + var(--action-index) * 0.31s);
  }

  .work-orbit.is-visible .work-chip {
    animation: work-chip-pop 0.56s var(--ease) forwards;
    animation-delay: calc(3.03s + var(--action-index) * 0.31s);
  }

  .story-intro {
    top: 10%;
    width: min(520px, 52vw);
  }

  .story-steps {
    top: auto;
    right: 0;
    bottom: 6%;
    left: 0;
    width: auto;
  }

  .story-step {
    min-height: 230px;
    padding: 22px;
  }

  .service-card:nth-child(n) {
    grid-column: span 6;
  }

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

  .package-card:nth-child(2) {
    top: 0;
  }

  .package-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 520px;
  }

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

  .focus-connector {
    top: -90px;
    height: 310px;
  }

  .focus-connector__path {
    stroke-width: 3;
  }

  .contact-aside {
    position: relative;
    top: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  body {
    font-size: 17px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: var(--header-h);
    padding: 0 10px 0 18px;
    border-radius: 20px;
  }

  .brand {
    min-width: auto;
  }

  .site-header .brand__logo {
    width: 128px;
    max-height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 430px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 90px 34px 44px;
    background: rgba(31, 34, 41, 0.98);
    box-shadow: -30px 0 70px rgba(0, 0, 0, 0.35);
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
  }

  .menu-open .site-nav {
    transform: translateX(0);
  }

  .site-nav__link {
    width: 100%;
    padding: 16px 0;
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .home-hero {
    height: 135vh;
  }

  .home-hero__stage {
    min-height: 640px;
  }

  .home-hero__art {
    object-position: center;
  }

  .home-hero__copy {
    width: calc(100% - 44px);
    padding-top: 55px;
  }

  .home-hero__copy .display {
    font-size: clamp(3.3rem, 15vw, 5.5rem);
  }

  .home-hero__lead {
    max-width: 500px;
    margin-top: 22px;
  }

  .section {
    padding: 90px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
    margin-bottom: 48px;
  }

  .section-head p {
    margin-left: 0;
  }

  .manifesto__cards,
  .crew-grid {
    grid-template-columns: 1fr;
  }

  .system-story {
    height: auto;
  }

  .system-story__stage {
    position: relative;
    height: auto;
    min-height: 0;
    display: block;
    padding: 90px 0;
  }

  .system-story__visual {
    position: relative;
    height: 54vw;
    min-height: 340px;
    border-radius: 26px;
  }

  .system-story__stage::after {
    background: linear-gradient(180deg, rgba(30, 33, 40, 0.08), #1e2128 62%);
  }

  .system-story__copy {
    position: relative;
    height: auto;
    margin-top: -90px;
  }

  .story-intro,
  .story-steps {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .story-steps {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    margin-top: 36px;
  }

  .story-step {
    position: relative;
    min-height: 0;
    margin-bottom: 0;
    opacity: 1;
    transform: none;
  }

  .story-step:nth-child(n) {
    margin-bottom: 0;
  }

  .story-steps::before {
    display: none;
  }

  .horizontal-scene {
    height: auto;
    padding: 90px 0;
  }

  .horizontal-scene__sticky {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .horizontal-scene__top {
    position: relative;
    top: auto;
    left: auto;
    width: min(calc(100% - 28px), var(--max));
    margin: 0 auto 42px;
  }

  .horizontal-track {
    position: relative;
    top: auto;
    left: auto;
    width: min(calc(100% - 28px), var(--max));
    display: grid;
    margin: auto;
    padding: 0;
    transform: none;
  }

  .case-card {
    width: 100%;
    height: 62vw;
    min-height: 420px;
  }

  .subpage-hero {
    min-height: 82vh;
    padding-bottom: 80px;
  }

  .hero-index {
    bottom: 46px;
  }

  .service-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .process-row {
    grid-template-columns: 74px 1fr;
    min-height: 0;
  }

  .process-row p {
    grid-column: 2;
    margin-left: 0;
  }

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

  .package-card:nth-child(3) {
    grid-column: auto;
  }

  .person-portrait {
    min-height: 520px;
  }

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

@media (max-width: 560px) {
  .display {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .home-hero__art {
    width: 165%;
    max-width: none;
    left: -32.5%;
    opacity: 0.68;
  }

  .home-hero__copy .eyebrow {
    justify-content: center;
  }

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

  .button {
    width: 100%;
  }

  .problem-orbit {
    min-height: 550px;
  }

  .orbit-core,
  .work-core {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }

  .orbit-burst,
  .work-burst {
    transform: scale(0.78);
  }

  .orbit-title {
    gap: 5px;
  }

  .orbit-title__word {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
  }

  .orbit-title__word--small {
    font-size: 0.82rem;
  }

  .work-title strong {
    font-size: clamp(2.25rem, 10.5vw, 3rem);
  }

  .work-title span {
    font-size: 0.82rem;
  }

  .work-eyes {
    gap: 22px;
  }

  .work-eye {
    width: 68px;
    height: 39px;
  }

  .work-eye::before {
    width: 21px;
    height: 21px;
    border-width: 6px;
  }

  .work-eye::after {
    top: 9px;
    left: 25px;
    width: 6px;
    height: 6px;
  }

  .orbit-chip {
    max-width: 150px;
    padding: 11px 14px;
    font-size: 0.78rem;
  }

  .problem-scene .orbit-voice--one {
    top: 1%;
    left: -8px;
  }

  .problem-scene .orbit-voice--two {
    top: 23%;
    right: -8px;
  }

  .problem-scene .orbit-voice--three {
    right: -8px;
    bottom: 22%;
  }

  .problem-scene .orbit-voice--four {
    bottom: 1%;
    left: -8px;
  }

  .problem-scene .orbit-person {
    width: 68px;
    height: 88px;
  }

  .problem-scene .orbit-person__body {
    right: 3px;
    left: 3px;
    height: 40px;
  }

  .problem-scene .orbit-person__neck {
    top: 46px;
    width: 16px;
    height: 18px;
  }

  .problem-scene .orbit-person__head {
    top: 12px;
    width: 42px;
    height: 46px;
  }

  .problem-scene .orbit-person__head::after {
    top: 24px;
    left: 10px;
    box-shadow: 15px 0 #26313c, 8px 11px 0 -1px rgba(116, 57, 49, 0.62);
  }

  .problem-scene .orbit-chip {
    max-width: 132px;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .work-action--listen {
    top: 0;
    left: -10px;
  }

  .work-action--understand {
    top: 23%;
    right: -10px;
  }

  .work-action--design {
    right: -10px;
    bottom: 21%;
  }

  .work-action--deliver {
    bottom: 0;
    left: -10px;
  }

  .work-chip {
    min-width: 108px;
    padding: 11px 13px 12px;
  }

  .work-chip strong {
    font-size: 0.9rem;
  }

  .manifesto__statement {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
  }

  .manifesto__cards {
    margin-top: 50px;
  }

  .case-card {
    height: 120vw;
    min-height: 470px;
  }

  .case-card__copy {
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: block;
  }

  .case-card p {
    margin-top: 14px;
  }

  .bento {
    display: block;
  }

  .service-card {
    min-height: 340px;
    margin-bottom: 14px;
  }

  .service-card h3 {
    margin-top: 100px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-row p {
    grid-column: auto;
  }

  .process-status {
    gap: 5px;
    padding: 7px;
    font-size: 0.76rem;
  }

  .process-status span,
  .process-status strong {
    padding: 9px 7px;
  }

  .process-status i {
    font-size: 1rem;
  }

  .process-status b {
    width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }

  .process-list {
    gap: 16px;
    padding-left: 52px;
  }

  .process-list::before,
  .process-list::after {
    top: 55px;
    bottom: 55px;
    left: 19px;
  }

  .process-row {
    padding: 22px;
    border-radius: 22px;
  }

  .process-row__num {
    left: -52px;
    width: 42px;
    height: 42px;
    box-shadow: 0 0 0 5px var(--ink), 0 10px 24px rgba(0, 0, 0, 0.28);
    font-size: 0.9rem;
  }

  .process-row__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }

  .package-card {
    min-height: 590px;
    padding: 26px;
  }

  .person-portrait {
    min-height: 470px;
    background-size: auto, auto, cover, auto;
    background-position: center;
  }

  .person-card__body {
    padding: 26px;
  }

  .facts,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 142px;
    padding: 20px;
  }

  .focus-connector {
    top: -46px;
    height: 220px;
  }

  .focus-word {
    min-width: 0;
  }

  .fact__copy {
    margin: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 6px;
  }
}

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

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

  .reveal,
  [data-split] .split-word {
    opacity: 1;
    transform: none;
  }
}

/* Contact, location and legal pages */
.contact-hero .subpage-hero__lead {
  margin-bottom: 32px;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 22%, rgba(111, 132, 111, 0.18), transparent 28rem),
    var(--ink);
}

.contact-layout,
.location-card {
  width: min(calc(100% - 44px), var(--max));
  margin-inline: auto;
}

.contact-aside h2 span,
.location-copy h2 span {
  color: var(--yellow);
}

.contact-aside > p:not(.eyebrow):not(.contact-note) {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.15rem;
}

.contact-links {
  display: grid;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.contact-links > * {
  display: grid;
  gap: 3px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-links small {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 1.16rem;
  line-height: 1.35;
}

.contact-note {
  margin-top: 28px;
  padding: 17px 18px;
  color: var(--ink);
  background: var(--sage-pale);
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.contact-form {
  position: relative;
}

.form-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
  padding-bottom: 18px;
  color: var(--sage-dark);
  border-bottom: 1px solid rgba(38, 42, 50, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form > label,
.form-grid label {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(38, 42, 50, 0.3);
  border-radius: 0;
  outline: 0;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 2px 0 var(--sage-dark);
}

.contact-form .check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 28px;
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form .check input {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--sage-dark);
  box-shadow: none;
}

.contact-form .check a {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.form-status {
  margin: 12px 0 0;
  color: var(--sage-dark);
  text-align: center;
}

.form-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.location-section {
  padding-top: 0;
  background: var(--ink);
}

.location-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 570px;
  overflow: hidden;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 74px);
}

.location-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.location-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.location-address {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 28px;
  color: #fff;
  font-style: normal;
}

.location-address__pin {
  position: relative;
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: transparent;
  background: var(--yellow);
  border-radius: 50% 50% 50% 10px;
  box-shadow: 0 0 0 8px rgba(255, 214, 46, 0.1);
  transform: rotate(-45deg);
  font-size: 1.1rem;
  font-weight: 800;
}

.location-address__pin::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(38, 42, 50, 0.24);
  border-radius: inherit;
}

.location-address__pin::after {
  content: "2";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotate(45deg);
  color: var(--ink);
}

.location-address small,
.location-address strong {
  display: block;
}

.location-address small {
  margin-bottom: 4px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-address strong {
  font-size: 1rem;
  line-height: 1.35;
}

.text-link {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 3px;
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.map-art {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #303640;
}

.map-experience {
  position: relative;
  min-width: 0;
  min-height: 570px;
  overflow: hidden;
  isolation: isolate;
  background: #303640;
}

.map-experience > .map-art,
.map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.map-experience > .map-art {
  transition: opacity 0.65s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-frame {
  z-index: 2;
  border: 0;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.72) contrast(1.05);
  transform: scale(1.025);
  transition: opacity 0.65s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-consent {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  left: clamp(18px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 24px;
  padding: clamp(20px, 3vw, 30px);
  color: #fff;
  background: rgba(38, 42, 50, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.map-consent__copy small,
.map-consent__copy strong {
  display: block;
}

.map-consent__copy small {
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-consent__copy strong {
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.map-consent__copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
  line-height: 1.4;
}

.map-consent > a {
  grid-column: 1 / -1;
  width: fit-content;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-load-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 13px;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(255, 214, 46, 0.2);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease;
}

.map-load-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.map-load-button__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: #fff;
}

.map-loading {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: none;
  padding: 11px 16px;
  color: #fff;
  background: rgba(38, 42, 50, 0.88);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  font-size: 0.78rem;
  font-weight: 700;
}

.map-route-float {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  font-size: 0.78rem;
  font-weight: 800;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.map-experience.is-loading .map-consent {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}

.map-experience.is-loading .map-loading {
  display: block;
}

.map-experience.is-loaded > .map-art {
  opacity: 0;
  transform: scale(1.05);
}

.map-experience.is-loaded .map-frame {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.map-experience.is-loaded .map-consent,
.map-experience.is-loaded .map-loading {
  display: none;
}

.map-experience.is-loaded .map-route-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background:
    linear-gradient(31deg, transparent 46%, rgba(168, 181, 166, 0.4) 47%, rgba(168, 181, 166, 0.4) 48%, transparent 49%),
    linear-gradient(111deg, transparent 36%, rgba(168, 181, 166, 0.25) 37%, rgba(168, 181, 166, 0.25) 38%, transparent 39%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 50px 50px, 50px 50px;
}

.map-river {
  position: absolute;
  top: 45%;
  left: -10%;
  width: 125%;
  height: 34px;
  border: solid rgba(168, 181, 166, 0.48);
  border-width: 9px 0 0;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.map-art .map-pin {
  top: 47%;
  left: 54%;
}

.map-art .map-pin span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  transform: rotate(45deg);
  font-weight: 800;
}

.map-label {
  position: absolute;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-label--one { top: 19%; left: 18%; }
.map-label--two { top: 51%; right: 13%; color: var(--sage-pale); }
.map-label--three { right: 7%; bottom: 7%; font-size: clamp(3.8rem, 8vw, 8rem); letter-spacing: -0.06em; opacity: 0.12; text-transform: none; }

.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 150px 22px 100px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(111, 132, 111, 0.35), transparent 30rem),
    var(--ink);
}

.thanks-page p {
  max-width: 620px;
  margin: 28px auto 34px;
  color: var(--muted);
  font-size: 1.2rem;
}

.thanks-orb {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(255, 214, 46, 0.08);
  font-size: 2rem;
  font-weight: 800;
}

.legal-page {
  min-height: 100vh;
  padding: 180px max(22px, calc((100vw - 900px) / 2)) 120px;
  color: var(--ink);
  background: var(--paper);
}

.legal-page > h1 {
  margin: 0 0 60px;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.legal-copy section {
  padding: 28px 0;
  border-top: 1px solid rgba(38, 42, 50, 0.18);
}

.legal-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.legal-copy p {
  margin: 0;
  color: #53575f;
}

.legal-copy p + p {
  margin-top: 1em;
}

.legal-copy a {
  text-decoration: underline;
}

.legal-copy .legal-note {
  margin-top: 40px;
  padding: 20px;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .form-head {
    display: grid;
  }

  .location-card {
    width: min(calc(100% - 28px), var(--max));
    border-radius: 24px;
  }

  .location-copy {
    padding: 30px 24px 40px;
  }

  .map-art {
    min-height: 390px;
  }

  .map-experience {
    min-height: 500px;
  }

  .map-consent {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 16px;
    border-radius: 20px;
  }

  .map-load-button {
    justify-content: center;
    width: 100%;
  }

  .map-consent > a {
    grid-column: 1;
  }

  .map-label--three {
    font-size: 3.7rem;
  }

  .legal-page {
    padding-top: 145px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-story {
    height: auto;
  }

  .system-story__stage {
    position: relative;
  }

  .story-step {
    opacity: 1;
    transform: none;
  }

  .process-list {
    --process-p: 1;
  }

  .process-row {
    opacity: 1;
    transform: none;
  }

  .problem-scene {
    height: auto;
    min-height: 0;
  }

  .problem-stage {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 100px 0;
  }

  .problem-scene .orbit-person,
  .problem-scene .orbit-chip {
    opacity: 1;
    transform: none;
  }

  .problem-orbit {
    --orbit-world-p: 1;
  }

  .orbit-backdrop {
    transform: scale(1);
  }

  .orbit-core,
  .orbit-burst {
    display: none;
  }

  .orbit-title {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .orbit-title__letter {
    transform: none !important;
  }

  .orbit-title__crack {
    display: none;
  }

  .work-scene {
    height: auto;
    min-height: 0;
  }

  .work-stage {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 100px 0;
  }

  .work-backdrop {
    opacity: 1;
    transform: scale(1);
  }

  .work-core,
  .work-burst,
  .work-eyes {
    display: none;
  }

  .work-title {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .work-character,
  .work-chip {
    opacity: 1;
    transform: none;
  }

  .fact,
  .fact strong {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }

  .fact::after {
    transform: scaleX(1);
    transition-delay: 0s !important;
  }

  .focus-connector__path {
    stroke-dashoffset: 0;
  }

  .focus-connector__meet {
    opacity: 1;
    transform: scale(1);
  }

  .focus-word.is-enhanced .focus-letter {
    opacity: 1;
    transform: none;
  }

  .person-card--walk-left,
  .person-card--walk-right {
    opacity: 1;
    transform: none;
  }

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

/* Final Crew overrides kept last so responsive states retain the cutout design. */
@media (max-width: 820px) {
  .focus-rider {
    width: 76px;
  }

  .facts-section .section-head > div {
    padding-inline: 22px;
  }
}

@media (max-width: 560px) {
  .person-portrait img {
    top: auto;
    bottom: -1px;
    left: 50%;
    width: 88%;
    height: 90%;
  }

  .focus-rider {
    width: 62px;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .focus-rider img {
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .focus-connector svg,
  .focus-rider {
    display: none;
  }

  .person-portrait::after {
    opacity: 0.36;
    transform: translateX(-50%) scaleX(1);
  }
}

/* Selected Stories: Hinweise und aufbrechende Hospitality-Galerie */
.case-card {
  isolation: isolate;
}

.case-card > img {
  transition: transform 1.2s var(--ease), filter 0.55s var(--ease), opacity 0.55s var(--ease);
}

.case-card:hover > img {
  transform: scale(1.045);
}

.case-card::after {
  z-index: 2;
  pointer-events: none;
}

.case-card__copy {
  z-index: 3;
}

.case-card__more {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 17px;
  color: var(--ink);
  background: rgba(255, 214, 46, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px) scale(0.88);
  transition: color 0.35s var(--ease), background 0.35s var(--ease), opacity 0.48s var(--ease), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s var(--ease);
  transition-delay: 0s, 0s, var(--cta-delay, 0s), var(--cta-delay, 0s), 0s;
  text-decoration: none;
}

.case-card.is-cta-visible .case-card__more {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.case-card:nth-child(2) .case-card__more {
  --cta-delay: 0.08s;
}

.case-card:nth-child(3) .case-card__more {
  --cta-delay: 0.16s;
}

.case-card__more-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.case-card__more small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.62;
}

.case-card__more strong {
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
}

.case-card__more-icon {
  position: relative;
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--yellow);
  background: var(--ink);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card__more-icon::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(29, 31, 38, 0.38);
  border-radius: inherit;
  opacity: 0;
}

.case-card.is-cta-visible .case-card__more-icon::after {
  animation: caseButtonPulse 1.7s ease-out 0.65s 2;
}

.case-card__more:hover,
.case-card__more:focus-visible {
  color: var(--yellow);
  background: rgba(29, 31, 38, 0.96);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  outline: none;
  transition-delay: 0s;
  transform: translateY(-3px);
}

.case-card__more:hover .case-card__more-icon,
.case-card__more:focus-visible .case-card__more-icon {
  color: var(--ink);
  background: var(--yellow);
  transform: translate(3px, -2px) rotate(7deg);
}

.case-card__more.is-teasing {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  opacity: 1;
  transform: translateY(-2px) scale(1.025);
}

@keyframes caseButtonPulse {
  0% { opacity: 0.72; transform: scale(0.84); }
  72%, 100% { opacity: 0; transform: scale(1.52); }
}

.case-card__shards {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.case-card__shards span {
  position: absolute;
  inset: -1px;
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1.002);
  will-change: transform, opacity;
}

.case-card__shards img,
.case-card:hover .case-card__shards img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: none;
  transition: none;
}

.case-card__shards span:nth-child(1) { clip-path: polygon(0 0, 35% 0, 32% 34%, 0 31%); --shard-x: -92px; --shard-y: -76px; --shard-r: -8deg; --shard-delay: 0ms; }
.case-card__shards span:nth-child(2) { clip-path: polygon(34% 0, 68% 0, 66% 33%, 32% 34%); --shard-x: -10px; --shard-y: -104px; --shard-r: 5deg; --shard-delay: 24ms; }
.case-card__shards span:nth-child(3) { clip-path: polygon(67% 0, 100% 0, 100% 34%, 66% 33%); --shard-x: 96px; --shard-y: -72px; --shard-r: 10deg; --shard-delay: 48ms; }
.case-card__shards span:nth-child(4) { clip-path: polygon(0 30%, 32% 33%, 34% 68%, 0 70%); --shard-x: -126px; --shard-y: 6px; --shard-r: -12deg; --shard-delay: 18ms; }
.case-card__shards span:nth-child(5) { clip-path: polygon(31% 33%, 67% 32%, 66% 68%, 34% 68%); --shard-x: 2px; --shard-y: 22px; --shard-r: -3deg; --shard-delay: 64ms; }
.case-card__shards span:nth-child(6) { clip-path: polygon(66% 32%, 100% 33%, 100% 70%, 66% 68%); --shard-x: 128px; --shard-y: 3px; --shard-r: 13deg; --shard-delay: 30ms; }
.case-card__shards span:nth-child(7) { clip-path: polygon(0 69%, 34% 67%, 35% 100%, 0 100%); --shard-x: -102px; --shard-y: 90px; --shard-r: 9deg; --shard-delay: 52ms; }
.case-card__shards span:nth-child(8) { clip-path: polygon(34% 67%, 66% 67%, 68% 100%, 35% 100%); --shard-x: 14px; --shard-y: 116px; --shard-r: -7deg; --shard-delay: 8ms; }
.case-card__shards span:nth-child(9) { clip-path: polygon(66% 67%, 100% 69%, 100% 100%, 68% 100%); --shard-x: 110px; --shard-y: 88px; --shard-r: -11deg; --shard-delay: 42ms; }

.case-card.is-shatter-ready .case-card__shards span {
  opacity: 1;
}

.case-card.is-shattering > img {
  opacity: 0.15;
  filter: brightness(0.55) saturate(0.7);
  transform: scale(1.08);
}

.case-card.is-shattering .case-card__shards span {
  opacity: 0;
  transform: translate3d(var(--shard-x), var(--shard-y), 0) rotate(var(--shard-r)) scale(1.06);
  transition: transform 0.74s cubic-bezier(0.19, 1, 0.22, 1) var(--shard-delay), opacity 0.33s ease calc(var(--shard-delay) + 0.3s);
}

body.case-gallery-open {
  overflow: hidden;
}

.case-gallery {
  position: fixed;
  z-index: 10050;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 28px);
  visibility: hidden;
  pointer-events: none;
}

.case-gallery.is-active {
  visibility: visible;
  pointer-events: auto;
}

.case-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.5);
  opacity: 0;
  backdrop-filter: blur(0);
  transition: opacity 0.5s var(--ease), backdrop-filter 0.6s var(--ease);
}

.case-gallery.is-open .case-gallery__backdrop {
  opacity: 1;
  backdrop-filter: blur(18px);
}

.case-gallery__dialog {
  position: relative;
  width: min(96vw, 1540px);
  height: min(94vh, 940px);
  min-height: 640px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(14px, 1.7vw, 24px);
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 214, 46, 0.14), transparent 29rem),
    radial-gradient(circle at 100% 90%, rgba(111, 132, 114, 0.2), transparent 33rem),
    #1d1f26;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: clamp(24px, 3vw, 44px);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.58);
  opacity: 0;
  outline: none;
  transform: translateY(28px) scale(0.955);
  transition: opacity 0.48s var(--ease), transform 0.72s var(--ease);
}

.case-gallery.is-open .case-gallery__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-gallery__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr) auto;
  align-items: end;
  gap: clamp(18px, 3vw, 52px);
}

.case-gallery__header .eyebrow {
  margin: 0 0 7px;
}

.case-gallery__header h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.case-gallery__header h2 span {
  color: var(--yellow);
}

.case-gallery__header > p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  line-height: 1.45;
}

.case-gallery__close {
  position: relative;
  width: 54px;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}

.case-gallery__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.case-gallery__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.case-gallery__close:hover,
.case-gallery__close:focus-visible {
  background: var(--white);
  outline: none;
  transform: rotate(90deg) scale(1.06);
}

.case-gallery__mosaic {
  min-height: 0;
  overflow: auto;
  padding: 2px 6px 2px 2px;
  columns: 4 220px;
  column-gap: clamp(10px, 1vw, 16px);
  scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.case-gallery__tile {
  position: relative;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 clamp(10px, 1vw, 16px);
  background: #272a31;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(14px, 1.4vw, 22px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  opacity: 0;
  break-inside: avoid;
  transform: translate3d(var(--from-x, 0), var(--from-y, 0), 0) rotate(var(--from-r, 0deg)) scale(0.08);
  transform-origin: center;
  transition: opacity 0.42s ease var(--tile-delay), transform 0.88s cubic-bezier(0.16, 1, 0.3, 1) var(--tile-delay);
  will-change: transform, opacity;
}

.case-gallery.is-open .case-gallery__tile {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.case-gallery__tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease);
}

.case-gallery__tile:hover img {
  transform: scale(1.025);
}

.case-gallery__zoom {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.case-gallery__zoom > span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 8px 11px;
  color: var(--ink);
  background: rgba(255, 214, 46, 0.94);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(7px) scale(0.94);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
}

.case-gallery__zoom:hover > span,
.case-gallery__zoom:focus-visible > span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.case-gallery__zoom:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -5px;
}

.case-gallery__viewer {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 46px);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s var(--ease);
}

.case-gallery__viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.case-gallery__viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 15, 0.92);
  border: 0;
  cursor: zoom-out;
  backdrop-filter: blur(20px);
}

.case-gallery__viewer-frame {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0;
  opacity: 0;
  transform: scale(0.92) translateY(12px);
  transition: opacity 0.34s var(--ease), transform 0.48s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-gallery__viewer.is-open .case-gallery__viewer-frame {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.case-gallery__viewer-frame > img {
  display: block;
  width: auto;
  max-width: min(76vw, 1180px);
  height: auto;
  max-height: 76vh;
  object-fit: contain;
  border-radius: clamp(14px, 1.5vw, 22px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.case-gallery__viewer-frame figcaption {
  width: min(100%, 840px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.72rem, 1vw, 0.88rem);
  text-align: center;
}

.case-gallery__viewer-frame figcaption span {
  flex: 0 0 auto;
  color: var(--yellow);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.case-gallery__viewer-frame figcaption p {
  margin: 0;
}

.case-gallery__viewer-close,
.case-gallery__viewer-nav {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
  cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), transform 0.35s var(--ease);
}

.case-gallery__viewer-close:hover,
.case-gallery__viewer-close:focus-visible,
.case-gallery__viewer-nav:hover,
.case-gallery__viewer-nav:focus-visible {
  color: var(--yellow);
  background: var(--white);
  outline: none;
  transform: scale(1.08);
}

.case-gallery__viewer-close {
  position: absolute;
  top: clamp(18px, 2.4vw, 34px);
  right: clamp(18px, 2.4vw, 34px);
  width: 50px;
  aspect-ratio: 1;
}

.case-gallery__viewer-close span {
  position: absolute;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: rotate(45deg);
}

.case-gallery__viewer-close span:last-child {
  transform: rotate(-45deg);
}

.case-gallery__viewer-nav {
  width: clamp(44px, 4vw, 58px);
  aspect-ratio: 1;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.case-gallery__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-gallery__footer span {
  color: var(--yellow);
  font-weight: 800;
}

.case-gallery__footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 820px) {
  .case-card__more {
    top: 18px;
    right: 18px;
  }

  .case-gallery {
    padding: 8px;
  }

  .case-gallery__dialog {
    width: 100%;
    height: calc(100dvh - 16px);
    min-height: 0;
    padding: 20px;
    border-radius: 28px;
  }

  .case-gallery__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .case-gallery__header > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .case-gallery__close {
    grid-column: 2;
    grid-row: 1;
  }

  .case-gallery__mosaic {
    columns: 2 180px;
  }
}

@media (max-width: 560px) {
  .case-card__more {
    gap: 7px;
    padding: 9px 10px 9px 13px;
  }

  .case-card__more-icon {
    width: 31px;
    font-size: 0.94rem;
  }

  .case-card__more strong {
    font-size: 0.7rem;
  }

  .case-gallery__dialog {
    gap: 14px;
    padding: 18px 14px 14px;
  }

  .case-gallery__header h2 {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .case-gallery__header > p {
    font-size: 0.82rem;
  }

  .case-gallery__close {
    width: 46px;
  }

  .case-gallery__mosaic {
    columns: 1;
  }

  .case-gallery__viewer {
    grid-template-columns: 1fr 1fr;
    align-content: center;
    gap: 12px;
    padding: 62px 14px 18px;
  }

  .case-gallery__viewer-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .case-gallery__viewer-frame > img {
    max-width: 100%;
    max-height: 68vh;
  }

  .case-gallery__viewer-frame figcaption {
    align-items: flex-start;
    text-align: left;
  }

  .case-gallery__viewer-nav {
    grid-row: 2;
    justify-self: center;
    width: 48px;
  }

  .case-gallery__footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-card__more,
  .case-card__more-icon,
  .case-card__more-icon::after,
  .case-gallery__viewer,
  .case-gallery__viewer-frame {
    animation: none !important;
    transition: none !important;
  }

  .case-card__more {
    opacity: 1;
    transform: none;
  }

  .case-card__shards {
    display: none;
  }

  .case-gallery__tile {
    opacity: 1;
    transform: none;
  }
}

/* Selected Stories: Fitnessstudio-Galerie mit Hochformat-Reel */
.case-card--fitness > img,
.case-card--fitness .case-card__shards img {
  object-position: center 48%;
}

.case-gallery--fitness .case-gallery__dialog {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 214, 46, 0.17), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(224, 52, 82, 0.17), transparent 30rem),
    radial-gradient(circle at 70% 105%, rgba(64, 111, 184, 0.24), transparent 38rem),
    #181b23;
}

.fitness-gallery__content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.75fr);
  gap: clamp(14px, 1.5vw, 24px);
}

.fitness-gallery__feature {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  margin: 0;
  background: rgba(8, 10, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(18px, 1.8vw, 28px);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(26px) scale(0.94);
  transition: opacity 0.55s var(--ease) 0.08s, transform 0.88s cubic-bezier(0.16, 1, 0.3, 1) 0.08s;
}

.case-gallery--fitness.is-open .fitness-gallery__feature {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fitness-gallery__feature::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 214, 46, 0.26);
  border-radius: inherit;
  pointer-events: none;
}

.fitness-gallery__reel {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 214, 46, 0.08), transparent 32%),
    #080a0f;
}

.fitness-gallery__reel::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(8, 10, 15, 0.58));
  pointer-events: none;
}

.fitness-gallery__reel video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #080a0f;
}

.fitness-gallery__video-badge,
.fitness-gallery__video-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  background: rgba(12, 14, 19, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.fitness-gallery__video-badge {
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fitness-gallery__video-badge i {
  width: 7px;
  aspect-ratio: 1;
  background: #ff4765;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 71, 101, 0.16);
  animation: fitnessLivePulse 1.45s ease-in-out infinite;
}

.fitness-gallery__video-note {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fitness-gallery__feature-copy {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 1.6vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 214, 46, 0.1), transparent 55%),
    rgba(27, 30, 38, 0.97);
}

.fitness-gallery__feature-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fitness-gallery__feature-copy h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.75rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.fitness-gallery__feature-copy p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.76rem, 0.85vw, 0.9rem);
  line-height: 1.42;
}

.fitness-gallery__mosaic {
  columns: 3 210px;
}

.fitness-gallery__mosaic .case-gallery__tile {
  background: #20242d;
}

.fitness-gallery__mosaic .case-gallery__tile:nth-child(4n + 1) {
  border-color: rgba(255, 214, 46, 0.28);
}

@keyframes fitnessLivePulse {
  0%, 100% { opacity: 0.75; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.16); }
}

@media (max-width: 820px) {
  .fitness-gallery__content {
    display: block;
    overflow: auto;
    padding-right: 4px;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
  }

  .fitness-gallery__feature {
    min-height: 390px;
    grid-template-columns: minmax(210px, 0.82fr) minmax(220px, 1fr);
    grid-template-rows: 1fr;
    margin-bottom: 18px;
  }

  .fitness-gallery__mosaic {
    overflow: visible;
    columns: 2 180px;
  }
}

@media (max-width: 560px) {
  .fitness-gallery__feature {
    min-height: 0;
    display: block;
  }

  .fitness-gallery__reel {
    height: min(56vh, 560px);
  }

  .fitness-gallery__mosaic {
    columns: 1;
  }

  .fitness-gallery__video-note {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fitness-gallery__feature {
    opacity: 1;
    transform: none;
  }

  .fitness-gallery__video-badge i {
    animation: none;
  }
}

/* Finaler Responsive- und Touch-Pass */
html,
body {
  max-width: 100%;
}

body {
  min-width: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

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

button,
input,
textarea,
select,
.site-header,
.site-nav,
.footer-grid > *,
.contact-layout > *,
.section-head > * {
  min-width: 0;
}

.legal-copy,
.legal-copy p,
.legal-copy a,
.footer-links,
.footer-bottom {
  overflow-wrap: anywhere;
}

button,
a,
input,
textarea,
select {
  touch-action: manipulation;
}

.case-gallery,
.case-gallery__dialog,
.case-gallery__viewer {
  overscroll-behavior: contain;
}

.case-gallery__viewer {
  touch-action: pan-y;
}

@media (max-width: 1080px) {
  .problem-orbit.is-scroll-scrubbed.is-visible .orbit-backdrop,
  .problem-orbit.is-scroll-scrubbed.is-visible .orbit-core,
  .problem-orbit.is-scroll-scrubbed.is-visible .orbit-burst span,
  .problem-orbit.is-scroll-scrubbed.is-visible .orbit-title,
  .problem-orbit.is-scroll-scrubbed.is-visible .orbit-title__letter,
  .problem-orbit.is-scroll-scrubbed.is-visible .orbit-title__crack,
  .problem-scene .problem-orbit.is-scroll-scrubbed.is-visible .orbit-person,
  .problem-scene .problem-orbit.is-scroll-scrubbed.is-visible .orbit-chip,
  .work-orbit.is-scroll-scrubbed.is-visible .work-backdrop,
  .work-orbit.is-scroll-scrubbed.is-visible .work-core,
  .work-orbit.is-scroll-scrubbed.is-visible .work-burst span,
  .work-orbit.is-scroll-scrubbed.is-visible .work-eyes,
  .work-orbit.is-scroll-scrubbed.is-visible .work-title,
  .work-orbit.is-scroll-scrubbed.is-visible .work-character,
  .work-orbit.is-scroll-scrubbed.is-visible .work-chip {
    animation: none !important;
    transition: none !important;
  }

  .problem-orbit.is-scroll-scrubbed::before,
  .problem-orbit.is-scroll-scrubbed::after {
    transition: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }

  .button,
  .nav-toggle,
  .case-gallery__close,
  .case-gallery__viewer-close,
  .case-gallery__viewer-nav,
  .map-load-button,
  .package-button {
    min-height: 44px;
  }

  .case-gallery__zoom > span {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .case-card:hover,
  .package-card:hover,
  .service-card:hover,
  .person-card:hover {
    translate: none;
  }
}

@media (max-width: 820px) {
  body::before {
    opacity: 0.18;
  }

  .site-nav {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding-top: max(90px, calc(env(safe-area-inset-top) + 76px));
    padding-bottom: max(44px, calc(env(safe-area-inset-bottom) + 28px));
  }

  .site-header {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }

  .problem-stage,
  .work-stage {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .problem-orbit,
  .work-orbit {
    isolation: isolate;
    overflow: visible;
  }

  .story-step,
  .case-card {
    will-change: transform, opacity;
  }

  .horizontal-track {
    gap: 18px;
  }

  .case-gallery {
    padding-top: max(8px, env(safe-area-inset-top));
    padding-right: max(8px, env(safe-area-inset-right));
    padding-bottom: max(8px, env(safe-area-inset-bottom));
    padding-left: max(8px, env(safe-area-inset-left));
  }

  .case-gallery__dialog {
    height: calc(100vh - 16px);
    height: calc(100dvh - 16px);
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px;
  }

  .map-card__label {
    max-width: calc(100% - 32px);
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .person-portrait img {
    right: auto;
  }

  .case-gallery__viewer {
    gap: 8px;
    padding: 14px 8px;
  }

  .case-gallery__viewer-frame > img {
    max-width: calc(100vw - 76px);
    max-height: 70dvh;
  }

  .case-gallery__viewer-nav {
    width: 40px;
    min-height: 40px;
  }

  .case-gallery__viewer-close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 380px) {
  .container,
  .narrow,
  .horizontal-scene__top,
  .horizontal-track,
  .location-card {
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header {
    width: calc(100% - 10px);
  }

  .site-header .brand__logo {
    width: 112px;
  }

  .site-nav {
    width: min(94vw, 430px);
    padding-inline: 24px;
  }

  .home-hero__copy {
    width: calc(100% - 24px);
  }

  .problem-orbit,
  .work-orbit {
    min-height: 520px;
  }

  .problem-scene .orbit-chip,
  .work-chip {
    max-width: 118px;
    font-size: 0.68rem;
  }

  .package-card {
    min-height: 0;
    padding: 22px;
  }

  .contact-form,
  .process-row,
  .person-card__body {
    padding: 20px;
  }

  .legal-hero h1,
  .legal-page h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }
}

@media (max-height: 560px) and (orientation: landscape) and (max-width: 960px) {
  .site-nav {
    justify-content: flex-start;
    padding-top: max(76px, calc(env(safe-area-inset-top) + 66px));
  }

  .site-nav__link {
    padding-block: 10px;
    font-size: 1.25rem;
  }

  .home-hero__stage,
  .subpage-hero {
    min-height: 520px;
  }
}

/* Mobile gallery hotfix: keep the close control free and make every item
   reachable with a natural vertical swipe. Desktop styles stay untouched. */
@media (max-width: 820px) {
  body.case-gallery-open .site-header {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .case-gallery {
    z-index: 20000;
    align-items: stretch;
  }

  .case-gallery__dialog {
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-height: 0;
    overflow: hidden;
  }

  .case-gallery__header {
    position: relative;
    z-index: 20;
    padding-top: max(18px, env(safe-area-inset-top));
    background: linear-gradient(180deg, rgba(28, 30, 38, 0.99), rgba(28, 30, 38, 0.94));
  }

  .case-gallery__close {
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
  }

  .case-gallery__mosaic,
  .fitness-gallery__content {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .fitness-gallery__mosaic {
    overflow: visible;
  }
}

@media (max-width: 560px) {
  .case-gallery__mosaic,
  .fitness-gallery__mosaic {
    columns: 1;
  }
}

/* Mobile final pass: real vertical gallery grids and scroll-pinned story scenes. */
@media (max-width: 900px), (max-height: 620px) and (pointer: coarse) {
  body.case-gallery-open .site-header {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .case-gallery {
    z-index: 20000;
    align-items: stretch;
    padding: max(8px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
  }

  .case-gallery__dialog {
    width: 100%;
    height: calc(100dvh - 16px);
    min-height: 0;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    padding: 18px 14px 14px;
    border-radius: 28px;
  }

  .case-gallery__header {
    position: relative;
    z-index: 20;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 12px;
    padding-top: max(4px, env(safe-area-inset-top));
    background: linear-gradient(180deg, rgba(28, 30, 38, 0.99), rgba(28, 30, 38, 0.94));
  }

  .case-gallery__header > p {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.82rem;
  }

  .case-gallery__header h2 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .case-gallery__close {
    z-index: 30;
    grid-column: 2;
    grid-row: 1;
    width: 46px;
    flex: 0 0 auto;
  }

  .case-gallery__mosaic {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 12px;
    columns: unset !important;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2px 5px 2px 2px;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-gutter: stable;
  }

  .case-gallery__tile {
    display: block;
    margin: 0;
    break-inside: auto;
  }

  .fitness-gallery__content {
    min-height: 0;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 4px;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-gutter: stable;
  }

  .fitness-gallery__feature {
    min-height: 390px;
    grid-template-columns: minmax(210px, 0.82fr) minmax(220px, 1fr);
    grid-template-rows: 1fr;
    margin-bottom: 14px;
  }

  .fitness-gallery__mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible !important;
  }

  .fitness-gallery__reel,
  .fitness-gallery__reel video {
    touch-action: pan-y;
  }
}

@media (max-width: 600px) {
  .case-gallery__mosaic,
  .fitness-gallery__mosaic {
    grid-template-columns: minmax(0, 1fr);
  }

  .fitness-gallery__feature {
    min-height: 0;
    display: block;
  }
}

@media (max-width: 900px) and (min-height: 600px) and (prefers-reduced-motion: no-preference) {
  .problem-scene,
  .work-scene {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .problem-stage,
  .work-stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 86px 0 0;
  }

  .problem-grid {
    display: block;
  }

  .problem-copy {
    margin-bottom: clamp(34px, 7svh, 62px);
  }

  .problem-orbit,
  .work-orbit {
    position: sticky;
    top: calc(var(--header-h) + 12px);
    width: min(100%, 680px);
    height: min(720px, calc(100svh - var(--header-h) - 24px));
    min-height: min(520px, calc(100svh - var(--header-h) - 24px));
    margin-inline: auto;
  }

  .problem-grid::after {
    display: block;
    height: 290svh;
    content: "";
    pointer-events: none;
  }
}

/* Gastronomie & Hotellerie: auf Mobilgeräten eine einfache, vollbreite
   Bilderliste. Der Dialogkopf bleibt erreichbar, nur die Bilder scrollen. */
@media (max-width: 900px) {
  .case-gallery:not(.case-gallery--fitness) .case-gallery__mosaic {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    columns: unset !important;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 2px 4px 16px 2px;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .case-gallery:not(.case-gallery--fitness) .case-gallery__tile,
  .case-gallery:not(.case-gallery--fitness) .case-gallery__zoom,
  .case-gallery:not(.case-gallery--fitness) .case-gallery__tile img {
    width: 100%;
    max-width: none;
  }

  .case-gallery:not(.case-gallery--fitness) .case-gallery__tile {
    flex: 0 0 auto;
    display: block;
    margin: 0;
  }

  .case-gallery:not(.case-gallery--fitness) .case-gallery__tile img {
    display: block;
    height: auto;
    object-fit: contain;
  }
}

/* Kompakter Social-Reach-Zwischenbereich auf der Startseite. */
.social-reach {
  position: relative;
  z-index: 3;
  padding: clamp(42px, 6vw, 74px) 0;
  overflow: hidden;
  background: #f3f1e9;
  color: #252830;
}

.social-reach__panel {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(37, 40, 48, .12);
  border-radius: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 211, 27, .18), transparent 30%),
    #fbfaf5;
  box-shadow: 0 22px 70px rgba(37, 40, 48, .09);
}

.social-reach__copy .eyebrow {
  margin-bottom: 12px;
  color: #77715f;
}

.social-reach__copy h2 {
  max-width: 600px;
  margin: 0 0 12px;
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: .91;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.social-reach__copy h2 span {
  display: block;
  color: #e3b900;
}

.social-reach__copy > p:last-child {
  max-width: 42ch;
  margin: 0;
  color: #5e6065;
}

.social-reach__chart {
  display: grid;
  gap: 18px;
}

.social-reach__row {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .55s ease var(--reach-delay), transform .55s ease var(--reach-delay);
}

.social-reach__label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 7px;
  font-size: clamp(.95rem, 1.5vw, 1.13rem);
}

.social-reach__label strong {
  letter-spacing: .01em;
}

.social-reach__label strong small {
  color: #77715f;
  font-size: .65em;
}

.social-reach__label span {
  font-family: "League Spartan", sans-serif;
  font-weight: 900;
  font-size: 1.15em;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(7px) scale(.94);
  transition: opacity .28s ease, transform .38s cubic-bezier(.2, .8, .2, 1);
}

.social-reach__row.is-number-visible .social-reach__label span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-reach__track {
  height: clamp(11px, 1.2vw, 15px);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(37, 40, 48, .1);
}

.social-reach__track i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d9aa00, #ffd31b 72%, #ffe570);
  box-shadow: 0 0 24px rgba(255, 211, 27, .3);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .09s linear;
}

.social-reach.is-visible .social-reach__row {
  opacity: 1;
  transform: translateY(0);
}

.social-reach__note {
  grid-column: 2;
  margin: -9px 0 0;
  color: #7b7c80;
  font-size: .72rem;
  line-height: 1.4;
}

.social-reach__note a {
  display: inline-block;
  margin-left: .35em;
  color: #4e5055;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(217, 170, 0, .65);
  text-underline-offset: 3px;
}

.social-reach__note a:hover,
.social-reach__note a:focus-visible {
  color: #9b7900;
}

@media (max-width: 760px) {
  .social-reach {
    padding: 34px 0;
  }

  .social-reach__panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
    width: calc(100% - 28px);
    padding: 28px 20px;
    border-radius: 28px;
  }

  .social-reach__copy h2 {
    font-size: clamp(2.55rem, 14vw, 4.15rem);
  }

  .social-reach__chart {
    gap: 16px;
  }

  .social-reach__note {
    grid-column: 1;
    margin-top: -10px;
  }

  .social-reach__note a {
    display: block;
    margin: 5px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-reach__row {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .social-reach__track i {
    transform: scaleX(var(--reach));
    transition: none;
  }

  .social-reach__label span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
