@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #070708;
  --ink-soft: #0d0d0f;
  --panel: #111113;
  --ivory: #f1ede4;
  --ivory-soft: #c8c2b8;
  --muted: #8c877f;
  --gold: #c9a45c;
  --gold-bright: #e5c982;
  --line: rgba(213, 178, 107, 0.18);
  --line-soft: rgba(241, 237, 228, 0.1);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1480px;
  --gutter: clamp(1.15rem, 4vw, 5rem);
  --header-height: 88px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
main section[id] { scroll-margin-top: calc(var(--header-height) + 1rem); }
body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 58rem 42rem at 82% -4%, rgba(220, 184, 111, .052), transparent 67%),
    radial-gradient(ellipse 48rem 36rem at -8% 28%, rgba(255, 241, 211, .018), transparent 72%),
    linear-gradient(180deg, #070707 0%, #090807 28%, #070708 61%, #080809 100%);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  z-index: 490;
  inset: 0;
  pointer-events: none;
  background: url("grain.svg") repeat;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  opacity: .024;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--gold); color: #0b0906; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 5px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(5.5rem, 10vw, 10rem); }
.section--tight { padding-block: clamp(4rem, 7vw, 7rem); }
.section-rule { border-top: 1px solid rgba(241, 237, 228, .045); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1.45rem;
  color: #a7a097;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.eyebrow--dot::before { width: 5px; height: 5px; border-radius: 50%; }
.display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7.5vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.display--medium { font-size: clamp(3.25rem, 6.2vw, 7.2rem); line-height: 1.02; }
.display--small { font-size: clamp(2.8rem, 4.8vw, 5.4rem); line-height: 1.02; }
.display em { color: var(--gold-bright); font-weight: 400; }
.display em.tone-ivory,
.tone-ivory { color: var(--ivory); font-style: normal; }
.lede { max-width: 660px; margin: 1.5rem 0 0; color: var(--ivory-soft); font-size: clamp(1rem, 1.35vw, 1.2rem); }
.copy { max-width: 64ch; color: var(--muted); }
.gold { color: var(--gold-bright); }
.serif { font-family: var(--serif); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Loader */
.preloader {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060607;
  transition: opacity .45s ease, visibility .45s ease;
}
.preloader::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  width: 8rem;
  height: 160%;
  background: linear-gradient(180deg, rgba(255, 237, 191, .42), rgba(201, 164, 92, .05) 46%, transparent 78%);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  filter: blur(20px);
  opacity: .45;
  transform: translateX(-50%) rotate(4deg);
  animation: loaderBeam 1.15s var(--ease) both;
}
.preloader__inner { position: relative; z-index: 1; width: min(78vw, 360px); text-align: center; }
.preloader__mark { font-family: var(--serif); font-size: 5.6rem; line-height: .8; color: var(--gold-bright); }
.preloader__text { margin: 1.35rem 0 1rem; color: var(--ivory-soft); font-size: .72rem; letter-spacing: .12em; }
.preloader__line { height: 1px; overflow: hidden; background: rgba(201, 164, 92, .15); }
.preloader__line span { display: block; width: 100%; height: 100%; background: var(--gold-bright); transform: translateX(-100%); animation: loaderLine .8s .2s var(--ease) forwards; }
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
@keyframes loaderLine { to { transform: translateX(0); } }
@keyframes loaderBeam { from { transform: translateX(-220%) rotate(4deg); } to { transform: translateX(120%) rotate(4deg); } }

/* Global header */
.site-header {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 7, 8, .78);
  border-color: var(--line-soft);
  backdrop-filter: blur(16px);
}
body.menu-open .site-header {
  background: transparent;
  border-color: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.header-inner {
  width: min(100%, var(--max));
  height: 100%;
  margin-inline: auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.brand { min-height: 48px; display: inline-flex; align-items: center; gap: .72rem; width: fit-content; line-height: 1; }
.brand__rr { color: var(--gold-bright); font-family: var(--serif); font-size: 2.15rem; letter-spacing: -.05em; }
.brand__name { font-family: var(--serif); font-size: 1.18rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(.35rem, 1.1vw, .85rem); }
.desktop-nav a,
.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: .78rem 1rem;
  border: 1px solid transparent;
  border-radius: 2px 15px 2px 15px;
  color: #aaa39a;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .3s ease, transform .38s var(--ease), opacity .3s ease, border-color .3s ease, background .3s ease, text-shadow .3s ease;
}
.desktop-nav a::before,
.header-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(108deg, transparent 20%, rgba(229,201,130,.16) 45%, rgba(255,247,220,.34) 50%, rgba(229,201,130,.08) 56%, transparent 78%);
  transform: translateX(-145%);
  transition: transform .68s var(--ease);
}
.desktop-nav a::after,
.header-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .32rem;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.desktop-nav:has(a:hover) a:not(:hover) { opacity: .46; transform: scale(.94); }
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.header-cta:hover {
  color: var(--ivory);
  border-color: rgba(229,201,130,.18);
  background: rgba(229,201,130,.035);
  text-shadow: 0 0 18px rgba(229,201,130,.28);
}
.desktop-nav a:hover { transform: translateY(-1px) scale(1.07); }
.desktop-nav a:hover::before,
.header-cta:hover::before { transform: translateX(145%); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after,
.header-cta:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; gap: .7rem; }
.header-cta:hover { transform: translateY(-1px) scale(1.035); }
.header-cta span { color: var(--gold); font-size: 1rem; transition: transform .25s ease; }
.header-cta:hover span { transform: translateX(4px); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

/* Buttons and links */
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: .95rem 1.55rem;
  border: 1px solid var(--line);
  border-radius: 3px 21px 3px 21px;
  background: transparent;
  color: var(--ivory);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.button span[aria-hidden="true"] { color: var(--gold-bright); font-size: 1rem; transition: transform .25s ease; }
.button:hover { transform: translateY(-2px); border-color: rgba(229, 201, 130, .5); }
.button:active { transform: translateY(0); }
.button:hover span[aria-hidden="true"] { transform: translateX(4px); }
.button--gold { border-color: transparent; background: linear-gradient(135deg, #e5c982, #bd934e); color: #100d08; }
.button--light { border-color: transparent; background: var(--ivory); color: #111; }
.button:disabled { opacity: .55; cursor: wait; transform: none; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { color: var(--gold); transition: transform .25s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Light and lines */
.light-beam {
  position: absolute;
  z-index: 0;
  top: -28%;
  left: 50%;
  width: 15rem;
  height: 155%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(248, 223, 163, .16), rgba(201, 164, 92, .025) 48%, transparent 82%);
  clip-path: polygon(47% 0, 53% 0, 100% 100%, 0 100%);
  filter: blur(52px);
  opacity: .2;
  transform: translateX(-50%) rotate(4deg);
  animation: beamDrift 22s ease-in-out infinite alternate;
}
.light-beam--soft { opacity: .075; filter: blur(72px); }
.coachline { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .35; pointer-events: none; }
@keyframes beamDrift { to { transform: translateX(-40%) rotate(5deg) scaleX(1.12); opacity: .48; } }

/* Home hero */
.hero {
  position: relative;
  min-height: min(920px, 100svh);
  padding: calc(var(--header-height) + 5rem) var(--gutter) 5rem;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: "NÜRNBERG";
  position: absolute;
  z-index: 0;
  left: -1.6vw;
  bottom: -.16em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(213, 178, 107, .075);
  font-family: var(--serif);
  font-size: clamp(8rem, 19vw, 22rem);
  line-height: .55;
  letter-spacing: -.075em;
  white-space: nowrap;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .8fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__title { font-size: clamp(4.4rem, 7.3vw, 8.2rem); line-height: 1.02; }
.hero__lede { max-width: 620px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 2.2rem; }
.hero__promise {
  position: relative;
  width: min(100%, 390px);
  height: 48px;
  margin-top: .9rem;
  overflow: hidden;
  border-top: 1px solid rgba(229,201,130,.2);
}
.hero__promise-item {
  position: absolute;
  inset: 0 auto auto 0;
  height: 48px;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #a39c93;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10px);
  animation: heroPromise 6s var(--ease) infinite;
}
.hero__promise-item:nth-child(2) { animation-delay: 2s; }
.hero__promise-item:nth-child(3) { animation-delay: 4s; }
@keyframes heroPromise {
  0% { opacity: 1; filter: blur(0) brightness(1.65); transform: translateY(0) scale(1.018); }
  6%, 27% { opacity: 1; filter: blur(0) brightness(1); transform: translateY(0) scale(1); }
  33.333%, 100% { opacity: 0; filter: blur(5px); transform: translateY(-10px); }
}
.hero__rail {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #615c56;
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__rail i { width: 1px; height: 68px; background: linear-gradient(var(--gold), transparent); }

.ticker { width: 100%; overflow: hidden; border-block: 1px solid var(--line); background: #0b0b0c; }
.ticker__track {
  width: max-content;
  display: flex;
  will-change: transform;
  color: #8f887f;
  font-size: .63rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  animation: tickerForward 24s linear infinite;
}
.ticker__group { min-width: 100vw; flex: none; display: flex; align-items: center; justify-content: space-around; gap: clamp(1.8rem, 3vw, 4rem); padding: .8rem clamp(1rem, 2vw, 2rem); }
.ticker__track b { color: var(--gold); font-weight: 400; }
@keyframes tickerForward { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* Manifesto and service teaser */
.manifesto-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr); gap: 8vw; align-items: end; }
.manifesto-grid .copy { margin: 0 0 .3rem; }
.manifesto-meta { padding: 1.2rem 0; border-block: 1px solid var(--line); }
.manifesto-meta span { display: block; color: #8c877f; font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; }
.manifesto-meta strong { display: block; margin-top: .65rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1.05; }

.services-teaser { overflow: hidden; }
.services-teaser::after {
  content: "UMZUG";
  position: absolute;
  z-index: 0;
  right: -2vw;
  top: 48%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, .08);
  font-family: var(--serif);
  font-size: clamp(12rem, 27vw, 30rem);
  line-height: .5;
  transform: translateY(-50%) rotate(-7deg);
}
.section-heading-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.service-list { position: relative; z-index: 1; counter-reset: service; border-top: 1px solid var(--line); }
.service-link {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(240px, .55fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.35rem, 2.5vw, 2.3rem) .2rem;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background .35s ease;
}
.service-link:hover { padding-inline: 1rem; background: rgba(201, 164, 92, .035); }
.service-link__num { color: var(--gold); font-family: var(--serif); font-size: 1.25rem; }
.service-link h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.4rem); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.service-link p { margin: 0; color: var(--muted); font-size: .9rem; }
.service-link__arrow { color: var(--gold-bright); font-size: 1.4rem; transition: transform .25s ease; }
.service-link:hover .service-link__arrow { transform: translateX(5px); }

/* Process */
.process { overflow: hidden; }
.process__head { display: grid; grid-template-columns: 1fr minmax(280px, .45fr); gap: 6vw; align-items: end; }
.process__route { position: relative; margin-top: 5rem; min-height: 340px; }
.process__route svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.route-base { fill: none; stroke: rgba(201, 164, 92, .14); stroke-width: 1.5; }
.route-progress { fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }
.route-dot { fill: var(--gold-bright); filter: drop-shadow(0 0 7px rgba(229, 201, 130, .7)); }
.process__steps { position: relative; min-height: 340px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.process-step { max-width: 240px; padding: 1rem; opacity: .42; transition: opacity .35s ease, transform .35s ease; }
.process-step:nth-child(2) { margin-top: 9rem; }
.process-step:nth-child(3) { margin-top: 2.4rem; }
.process-step:nth-child(4) { margin-top: 10.8rem; }
.process-step.is-active { opacity: 1; transform: translateY(-4px); }
.process-step__num { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.process-step h3 { margin: .25rem 0 .35rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.process-step p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Media */
.media-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(201, 164, 92, .16);
  background-color: #111;
  background-position: center;
  background-size: cover;
}
.media-frame--coach { border-radius: 42px 4px 42px 4px; }
.media-frame img, .media-frame video { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .45s ease; }
.media-frame:hover img, .media-frame:hover video { transform: scale(1.025); }
.media-frame video { opacity: 0; }
.media-frame.is-video-ready video { opacity: 1; }
.media-frame.is-video-failed video { opacity: 0; }
.media-reveal-overlay {
  position: absolute;
  z-index: 3;
  inset: -1px;
  background: linear-gradient(145deg, #151414, #0a0a0b);
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}
.motion-ready .media-frame:not(.is-visible) .media-reveal-overlay { transform: scaleY(1); }
.motion-ready .media-frame.is-visible .media-reveal-overlay { transform: scaleY(0); transition: transform 1s var(--ease); }
.media-badge {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  padding: .5rem .75rem;
  border: 1px solid rgba(229, 201, 130, .25);
  border-radius: 2px 12px 2px 12px;
  background: rgba(8, 8, 9, .68);
  color: var(--ivory);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.sound-toggle {
  position: absolute;
  z-index: 5;
  right: .85rem;
  bottom: .85rem;
  min-width: 54px;
  min-height: 44px;
  padding: .5rem .65rem;
  border: 1px solid rgba(229, 201, 130, .3);
  background: rgba(8, 8, 9, .72);
  color: var(--ivory);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

/* Home projects */
.selected-projects { overflow: hidden; }
.project-feature { display: grid; grid-template-columns: minmax(350px, .8fr) minmax(0, 1fr); gap: clamp(2.5rem, 7vw, 8rem); align-items: center; }
.project-feature .media-frame { aspect-ratio: 4 / 5; max-height: 760px; }
.project-feature__copy { max-width: 660px; }
.project-feature__copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6.7rem); font-weight: 400; letter-spacing: -.045em; line-height: 1.02; }
.project-feature__copy p { margin: 1.5rem 0 2rem; color: var(--muted); }
.project-secondary { display: grid; grid-template-columns: minmax(0, 1fr) minmax(290px, .58fr); gap: clamp(2.5rem, 6vw, 7rem); align-items: end; margin-top: clamp(5rem, 10vw, 10rem); }
.project-secondary__copy { padding-bottom: 2rem; }
.project-secondary__copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.8rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.project-secondary .media-frame { aspect-ratio: 3 / 4; }

/* Local and trust */
.local-grid { display: grid; grid-template-columns: minmax(320px, .7fr) minmax(0, 1fr); gap: 7vw; align-items: center; }
.local-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px 48px 4px 48px;
  background:
    radial-gradient(circle at 52% 48%, rgba(201, 164, 92, .11), transparent 18rem),
    linear-gradient(145deg, #111113, #09090a);
}
.local-map::before, .local-map::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 44%;
  left: -10%;
  top: 29%;
  border: 1px solid rgba(201, 164, 92, .13);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.local-map::after { top: 20%; transform: rotate(18deg); }
.local-map__nbg { position: absolute; left: 50%; top: 47%; transform: translate(-50%, -50%); color: transparent; -webkit-text-stroke: 1px rgba(229, 201, 130, .32); font-family: var(--serif); font-size: clamp(8rem, 15vw, 13rem); letter-spacing: -.08em; }
.local-map__point { position: absolute; left: 51%; top: 48%; width: 9px; height: 9px; border: 2px solid var(--gold-bright); border-radius: 50%; box-shadow: 0 0 0 12px rgba(201, 164, 92, .06); }
.local-map__coords { position: absolute; right: 1.5rem; bottom: 1.3rem; color: #8f887f; font-size: .62rem; letter-spacing: .13em; text-align: right; text-transform: uppercase; }
.local-map__label { position: absolute; left: 1.5rem; top: 1.35rem; color: var(--gold); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; }
.local-map--film { isolation: isolate; background-position: center; background-size: cover; }
.local-map--film::before,
.local-map--film::after { z-index: 3; }
.local-map__film { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.local-map__film::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,8,.34), rgba(7,7,8,.2) 45%, rgba(7,7,8,.78)),
    linear-gradient(90deg, rgba(7,7,8,.35), transparent 45%, rgba(7,7,8,.28));
}
.local-map__film video { width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: saturate(.62) contrast(1.04); transform: scale(1.025); transition: opacity 1.2s ease; }
.local-map__film.is-video-ready video { opacity: .58; }
.local-map--film .local-map__label,
.local-map--film .local-map__nbg,
.local-map--film .local-map__point,
.local-map--film .local-map__coords { z-index: 4; }
.local-map--film .local-map__nbg { -webkit-text-stroke-color: rgba(229,201,130,.45); text-shadow: 0 8px 35px rgba(0,0,0,.75); }
.local-map--film .local-map__label,
.local-map--film .local-map__coords { color: rgba(229,201,130,.82); text-shadow: 0 2px 14px rgba(0,0,0,.9); }
.local-copy h2 { margin-bottom: 1.5rem; }
.local-copy .text-link { margin-top: 1.4rem; }

.trust-section { position: relative; overflow: hidden; background: linear-gradient(112deg, rgba(201,164,92,.035), transparent 42%); }
.trust-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr); gap: clamp(4rem, 9vw, 10rem); align-items: center; }
.trust-grid .display em { color: var(--gold-bright); }
.trust-grid > div .copy { max-width: 46ch; margin-top: 2rem; }
.trust-points { margin: 2.5rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.trust-points li { display: grid; grid-template-columns: 64px 1fr; gap: 1.3rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); color: var(--ivory-soft); }
.trust-points span { color: var(--gold); font-family: var(--serif); }
.trust-commitment {
  position: relative;
  isolation: isolate;
  min-height: 510px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-block: 1px solid var(--line);
}
.trust-commitment::before {
  content: "RR";
  position: absolute;
  z-index: -1;
  right: -.08em;
  top: 50%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,164,92,.11);
  font-family: var(--serif);
  font-size: clamp(13rem, 23vw, 24rem);
  letter-spacing: -.1em;
  line-height: .7;
  transform: translateY(-50%);
}
.trust-commitment::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,164,92,.055), transparent 58%);
  pointer-events: none;
}
.trust-commitment__index { color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.trust-commitment > p { margin: auto 0; font-family: var(--serif); font-size: clamp(2.6rem, 4.1vw, 4.7rem); letter-spacing: -.03em; line-height: 1.02; }
.trust-commitment > p strong { color: var(--gold-bright); font-weight: 400; }
.trust-commitment__meta { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft); color: #938c82; font-size: .62rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.trust-commitment .text-link { margin-top: 1.5rem; }
.trust-standard { position: relative; padding: 0 0 0 clamp(1.5rem, 3vw, 3rem); border-left: 1px solid rgba(229,201,130,.26); }
.trust-standard::before { content: "PLAN"; position: absolute; z-index: -1; right: 0; top: 50%; color: transparent; -webkit-text-stroke: 1px rgba(201,164,92,.07); font-family: var(--serif); font-size: clamp(8rem, 14vw, 16rem); line-height: .6; transform: translateY(-50%); }
.trust-standard ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.trust-standard li { display: grid; grid-template-columns: minmax(88px, .3fr) 1fr; gap: 1.5rem; padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.trust-standard li span { color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.trust-standard li strong { color: var(--ivory-soft); font-family: var(--serif); font-size: clamp(1.65rem, 2.3vw, 2.55rem); font-weight: 400; line-height: 1.04; }
.trust-standard .text-link { margin-top: 1.6rem; }

/* Shared page hero */
.subhero {
  position: relative;
  min-height: clamp(460px, 52vh, 660px);
  padding: calc(var(--header-height) + 5rem) 0 4.5rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.subhero::after {
  content: attr(data-word);
  position: absolute;
  right: -1vw;
  bottom: -.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 92, .07);
  font-family: var(--serif);
  font-size: clamp(9rem, 24vw, 25rem);
  line-height: .52;
  letter-spacing: -.08em;
  white-space: nowrap;
}
.subhero__inner { position: relative; z-index: 2; width: 100%; }
.subhero__grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .45fr); gap: 6vw; align-items: end; }
.subhero__aside { max-width: 460px; color: var(--muted); }
.subhero #page-title { line-height: 1.02; }
body[data-page="contact"] .subhero #page-title { font-size: clamp(3.8rem, 6.45vw, 7.5rem); }

/* Services page */
.service-detail { position: relative; overflow: hidden; }
.service-detail__row { display: grid; grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr); gap: clamp(2.75rem, 6vw, 7rem); align-items: center; }
.service-detail:nth-of-type(even) .service-detail__visual { order: -1; }
.service-detail__num { display: block; margin-bottom: 1.5rem; color: var(--gold); font-family: var(--serif); font-size: 1.35rem; }
.service-detail h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6.6rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; }
.service-detail__benefit { margin: 1.4rem 0 .7rem; color: var(--ivory-soft); font-size: 1.08rem; }
.service-detail__copy { max-width: 60ch; color: var(--muted); }
.service-detail__facts { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.6rem 0 2rem; padding: 0; list-style: none; }
.service-detail__facts li { padding: .5rem .75rem; border: 1px solid var(--line); color: #aaa39b; font-size: .67rem; letter-spacing: .06em; text-transform: uppercase; }
.service-detail__visual { position: relative; min-height: 560px; }
.service-detail__visual::before { content: attr(data-word); position: absolute; z-index: 0; left: -2rem; top: 50%; color: transparent; -webkit-text-stroke: 1px rgba(201, 164, 92, .1); font-family: var(--serif); font-size: clamp(7rem, 14vw, 15rem); line-height: .5; transform: translateY(-50%) rotate(-7deg); }
.service-detail__visual .media-frame { position: relative; z-index: 1; width: 74%; height: 100%; margin-left: auto; }
.service-detail:nth-of-type(even) .service-detail__visual .media-frame { margin-left: 0; }
.service-detail__visual img, .service-detail__visual video { object-position: center; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: minmax(300px, .62fr) minmax(0, 1fr); gap: clamp(4rem, 9vw, 10rem); align-items: start; }
.contact-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.contact-details { margin-top: 2.8rem; border-top: 1px solid var(--line); }
.contact-person { display: grid; grid-template-columns: 82px minmax(0, 1fr); align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-person img { width: 82px; aspect-ratio: 1; object-fit: cover; object-position: 51% 26%; border: 1px solid rgba(229, 201, 130, .18); border-radius: 2px 20px 2px 20px; filter: saturate(.72) contrast(1.03) brightness(.88); }
.contact-person span, .contact-person small { display: block; color: #8c877f; font-size: .57rem; font-weight: 700; letter-spacing: .15em; line-height: 1.5; text-transform: uppercase; }
.contact-person strong { display: block; margin: .2rem 0 .1rem; color: var(--ivory); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; line-height: 1.05; }
.contact-person small { color: rgba(201, 164, 92, .72); letter-spacing: .1em; }
.contact-detail { display: block; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-detail span { display: block; color: #8c877f; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-detail strong { display: block; margin-top: .35rem; color: var(--ivory-soft); font-size: .95rem; font-weight: 400; }
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2.6rem);
  border: 1px solid rgba(201, 164, 92, .2);
  border-radius: 4px 38px 4px 38px;
  background: linear-gradient(145deg, rgba(18, 18, 20, .86), rgba(8, 8, 9, .72));
  box-shadow: 0 40px 100px rgba(0, 0, 0, .28);
}
.field { display: grid; gap: .5rem; }
.field--wide { grid-column: 1 / -1; }
.field > span { color: #a19a91; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .85rem .9rem;
  border: 1px solid rgba(241, 237, 228, .13);
  border-radius: 2px 12px 2px 12px;
  background: rgba(5, 5, 6, .62);
  color: var(--ivory);
  font-size: 1rem;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { color-scheme: dark; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(229, 201, 130, .3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(8, 8, 9, .88); box-shadow: 0 0 0 3px rgba(201, 164, 92, .08); }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #c87568; }
.field input::placeholder, .field textarea::placeholder { color: #817a72; opacity: 1; }
.privacy { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; color: #989189; font-size: .75rem; }
.privacy input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--gold); }
.privacy a { color: var(--gold-bright); border-bottom: 1px solid var(--line); }
.honeypot { position: absolute; left: -9999px; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.form-note { margin: 0; color: #8c877f; font-size: .68rem; }
.form-status { grid-column: 1 / -1; padding: .9rem 1rem; border: 1px solid var(--line); color: var(--ivory-soft); font-size: .8rem; }
.form-status[data-state="success"] { border-color: rgba(130, 179, 137, .5); background: rgba(72, 125, 80, .08); }
.form-status[data-state="error"] { border-color: rgba(200, 117, 104, .55); background: rgba(160, 78, 67, .08); }

.faq-layout { display: grid; grid-template-columns: minmax(280px, .55fr) minmax(0, 1fr); gap: 8vw; align-items: start; }
.faq-heading { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border: 0;
  background: none;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.8rem);
  line-height: .98;
  text-align: left;
  cursor: pointer;
}
.faq-icon { position: relative; width: 34px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 2px 12px 2px 12px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 11px; height: 1px; background: var(--gold); transform: translate(-50%, -50%); transition: transform .25s ease, opacity .25s ease; }
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { opacity: 0; transform: translate(-50%, -50%); }
.faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .4s var(--ease), opacity .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 66ch; margin: 0 0 1.6rem; color: var(--muted); }
.faq-answer.is-open { grid-template-rows: 1fr; opacity: 1; }

/* CTA */
.final-cta {
  position: relative;
  min-height: clamp(560px, 72vh, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  text-align: center;
}
.final-cta::before { content: ""; position: absolute; width: min(78vw, 950px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(201, 164, 92, .12), transparent 63%); top: -62%; left: 50%; transform: translateX(-50%); }
.final-cta::after { content: "RR"; position: absolute; left: 50%; bottom: -.12em; color: transparent; -webkit-text-stroke: 1px rgba(201, 164, 92, .08); font-family: var(--serif); font-size: clamp(14rem, 34vw, 38rem); line-height: .52; transform: translateX(-50%); }
.final-cta__inner { position: relative; z-index: 2; padding-inline: var(--gutter); }
.final-cta .eyebrow { justify-content: center; }
.final-cta .display { font-size: clamp(4.2rem, 9vw, 10rem); }
.final-cta p { max-width: 560px; margin: 1.4rem auto 2rem; color: var(--muted); }

/* Legal */
.legal { padding-top: calc(var(--header-height) + 5rem); }
.legal__head { max-width: 900px; margin-bottom: 4rem; }
.legal__content { max-width: 850px; }
.legal__content section { padding: 1.8rem 0; border-top: 1px solid var(--line); }
.legal__content h2 { margin: 0 0 .8rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.legal__content h3 { margin: 1.2rem 0 .5rem; color: var(--ivory-soft); font-size: .9rem; }
.legal__content p, .legal__content address, .legal__content li { color: #aaa49b; font-style: normal; }
.legal__content p, .legal__content li { max-width: 78ch; }
.legal__content ul { margin: .8rem 0 0; padding-left: 1.25rem; }
.legal__content li + li { margin-top: .3rem; }
.legal__content a { color: var(--gold-bright); }
.legal__content .legal-note { color: var(--gold-bright); font-size: .72rem; font-weight: 700; letter-spacing: .08em; overflow-wrap: anywhere; }

/* Footer */
.site-footer { position: relative; padding: 5rem var(--gutter) 1.4rem; background: #050506; }
.footer-grid { width: min(100%, var(--max)); margin-inline: auto; display: grid; grid-template-columns: 1.2fr .9fr .7fr .7fr; gap: 4rem; }
.footer-brand p { max-width: 280px; margin: 1rem 0 0; color: var(--muted); }
.footer-column h2 { margin: 0 0 1rem; color: #8c877f; font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a, .footer-column address { display: block; width: fit-content; margin: .45rem 0; color: #aaa39b; font-size: .8rem; font-style: normal; transition: color .2s ease; }
.footer-column a:hover { color: var(--ivory); }
.footer-bottom { width: min(100%, var(--max)); margin: 4rem auto 0; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; color: #817a72; font-size: .6rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom > .footer-credit { color: rgba(229, 201, 130, .62); text-align: center; transition: color .25s ease, text-shadow .25s ease; }
.footer-bottom > .footer-credit:hover { color: var(--gold-bright); text-shadow: 0 0 18px rgba(229, 201, 130, .28); }
.footer-bottom > span:last-child { text-align: right; }

.mobile-sticky-cta { display: none; }

/* Scroll direction / return control */
.scroll-orbit {
  position: fixed;
  z-index: 430;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: calc(1.25rem + env(safe-area-inset-bottom));
  width: 42px;
  height: 64px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(241, 237, 228, .62);
  border-radius: 22px;
  background: rgba(7, 7, 8, .58);
  color: var(--ivory);
  cursor: pointer;
  opacity: .76;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  transition: width .35s var(--ease), height .35s var(--ease), border-radius .35s var(--ease), border-color .25s ease, background .25s ease, opacity .25s ease, transform .25s ease;
}
.scroll-orbit:hover { border-color: var(--gold-bright); background: rgba(14, 13, 12, .82); opacity: 1; transform: translateY(-2px); }
.scroll-orbit__mouse { position: relative; width: 100%; height: 100%; display: grid; place-items: center; transition: opacity .2s ease, transform .3s var(--ease); }
.scroll-orbit__mouse span { width: 6px; height: 6px; background: var(--ivory-soft); box-shadow: 0 0 12px rgba(229, 201, 130, .3); animation: scrollOrbitDown 1.65s var(--ease) infinite; }
.scroll-orbit__arrow { position: absolute; color: var(--gold-bright); font-size: 1.15rem; line-height: 1; opacity: 0; transform: translateY(12px); transition: opacity .25s ease, transform .35s var(--ease); }
.scroll-orbit.is-to-top { width: 46px; height: 46px; border-color: rgba(229, 201, 130, .42); border-radius: 50%; }
.scroll-orbit.is-to-top .scroll-orbit__mouse { opacity: 0; transform: translateY(-12px); }
.scroll-orbit.is-to-top .scroll-orbit__arrow { opacity: 1; transform: translateY(-1px); }
@keyframes scrollOrbitDown {
  0% { opacity: .2; transform: translateY(-11px); }
  36% { opacity: 1; }
  78%, 100% { opacity: .1; transform: translateY(12px); }
}

/* Cinematic motion layer */
[data-parallax-speed] { --parallax-y: 0px; transform: translate3d(0, var(--parallax-y), 0); will-change: transform; }
.hero__ambient {
  position: absolute;
  z-index: 0;
  inset: -4%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.hero__ambient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,.96) 0%, rgba(7,7,8,.9) 42%, rgba(7,7,8,.76) 72%, rgba(7,7,8,.92) 100%),
    linear-gradient(180deg, rgba(7,7,8,.64), rgba(7,7,8,.94));
}
.hero__ambient video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(.7);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.8s ease;
}
.hero__ambient.is-video-ready video { opacity: .13; }

.manifesto-cinematic { min-height: clamp(720px, 85vw, 980px); display: grid; align-items: center; overflow: hidden; }
.manifesto-film {
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -4%;
  bottom: 8%;
  width: min(58vw, 920px);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 91%);
}
.manifesto-film::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #070708 0%, rgba(7,7,8,.86) 18%, rgba(7,7,8,.35) 58%, rgba(7,7,8,.16));
}
.manifesto-film video { width: 100%; height: 100%; object-fit: cover; opacity: 0; filter: saturate(.65) contrast(1.05); transition: opacity 1.4s ease; }
.manifesto-film.is-video-ready video { opacity: .66; }
.manifesto-film__line { position: absolute; z-index: 2; inset: 7% 7% 7% 23%; border: 1px solid rgba(229,201,130,.22); clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%); }
.manifesto-grid--cinematic { position: relative; z-index: 2; width: 100%; grid-template-columns: minmax(0, .92fr) minmax(300px, .45fr); align-items: end; }
.manifesto-cinematic__title { max-width: 880px; padding: 3rem 0 10rem; text-shadow: 0 8px 36px rgba(0,0,0,.65); }
.manifesto-cinematic__copy { align-self: end; margin-bottom: 3rem; padding: 1.4rem 1.5rem; background: rgba(7,7,8,.64); backdrop-filter: blur(12px); }

.services-showcase::after { right: -5vw; opacity: .72; }
.service-showcase { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(410px, .74fr) minmax(480px, 1fr); gap: clamp(2.5rem, 6vw, 7rem); align-items: start; }
.service-showcase__list { border-top: 1px solid var(--line); }
.service-showcase__option {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem .2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ivory);
  text-align: left;
  cursor: pointer;
  transition: padding .45s var(--ease), background .45s ease, color .35s ease;
}
.service-showcase__option:hover,
.service-showcase__option.is-active { padding-inline: 1rem; background: linear-gradient(90deg, rgba(201,164,92,.08), transparent); }
.service-showcase__option > span:last-child { color: var(--gold); font-size: 1.2rem; transform: translateX(-5px); opacity: .35; transition: transform .35s var(--ease), opacity .35s ease; }
.service-showcase__option.is-active > span:last-child { transform: translateX(0); opacity: 1; }
.service-showcase__text { display: grid; gap: .42rem; }
.service-showcase__text strong { font-family: var(--serif); font-size: clamp(2.1rem, 3.5vw, 4rem); font-weight: 400; letter-spacing: -.03em; line-height: 1; }
.service-showcase__text small { max-width: 44ch; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.service-showcase__details { margin-top: 1.5rem; }
.service-showcase__visual {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  min-height: clamp(520px, 58vw, 760px);
  overflow: hidden;
  border: 1px solid rgba(229,201,130,.22);
  border-radius: 54px 4px 54px 4px;
  background:
    radial-gradient(ellipse 76% 54% at 52% 44%, rgba(229, 201, 130, .055), transparent 72%),
    #0c0c0d;
  box-shadow: 0 48px 100px rgba(0,0,0,.36), 0 0 90px rgba(201,164,92,.035);
}
.service-showcase__visual::before { content: ""; position: absolute; z-index: 5; inset: 1.2rem; border: 1px solid rgba(229,201,130,.16); border-radius: 44px 2px 44px 2px; pointer-events: none; }
.service-showcase__panel { position: absolute; z-index: 0; inset: 0; overflow: hidden; background-position: center; background-size: cover; opacity: 0; visibility: hidden; transform: scale(1.045) translateX(2%); transition: opacity .7s ease, visibility .7s ease, transform 1.1s var(--ease); }
.service-showcase__panel.is-active { z-index: 1; opacity: 1; visibility: visible; transform: scale(1) translateX(0); }
.service-showcase__panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,5,6,.8)); }
.service-showcase__panel video { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; filter: saturate(.82) contrast(1.035) brightness(.88); transform: scale(1.045); transition: opacity .7s ease, transform 8s linear; }
.service-showcase__panel.is-active.is-video-ready video { opacity: 1; transform: scale(1.018); }
.service-showcase__panel[data-service-panel="0"] video { object-position: 50% 42%; }
.service-showcase__panel[data-service-panel="1"] video { object-position: 50% 48%; }
.service-showcase__panel[data-service-panel="2"] video { object-position: 50% 54%; }
.service-showcase__panel[data-service-panel="3"] video { object-position: 50% 40%; }
.service-showcase__label { position: absolute; z-index: 2; left: 2.2rem; bottom: 2rem; color: var(--ivory); font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.service-showcase__counter { position: absolute; z-index: 8; top: 2rem; right: 2rem; color: var(--muted); font-family: var(--serif); font-size: 1rem; }
.service-showcase__counter b { color: var(--gold-bright); font-size: 1.7rem; font-weight: 400; }

.selected-moves {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 11vw, 11rem);
  background:
    radial-gradient(circle at 78% 48%, rgba(201,164,92,.055), transparent 31%),
    linear-gradient(180deg, #070708, #09090a 50%, #070708);
}
.selected-moves__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(310px, .72fr) minmax(540px, 1.18fr); gap: clamp(4rem, 9vw, 10rem); align-items: start; }
.selected-moves__intro { position: sticky; top: calc(var(--header-height) + 4rem); }
.selected-moves__intro .copy { max-width: 42ch; margin-top: 1.6rem; }
.selected-moves__intro .text-link { margin-top: 1.3rem; }
.move-register { border-top: 1px solid rgba(229,201,130,.28); }
.move-register__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: end;
  min-height: 205px;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .45s var(--ease), border-color .35s ease, background .35s ease;
}
.move-register__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229,201,130,.07), transparent 68%);
  opacity: 0;
  transform: scaleX(.86);
  transform-origin: left;
  transition: opacity .35s ease, transform .5s var(--ease);
}
.move-register__item:hover { padding-inline: 1.2rem; border-color: rgba(229,201,130,.32); }
.move-register__item:hover::before { opacity: 1; transform: scaleX(1); }
.move-register__item p { position: relative; margin: 0 0 .75rem; color: #958e85; font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.move-register__item h3 { position: relative; margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4.6rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.02; }
.move-register__meta { position: relative; padding-bottom: .3rem; color: #77716a; font-size: .56rem; font-weight: 700; letter-spacing: .12em; text-align: right; text-transform: uppercase; }

.selected-projects { padding-bottom: clamp(7rem, 14vw, 14rem); }
.project-stage { position: relative; min-height: clamp(720px, 76vw, 1040px); margin-top: clamp(6rem, 13vw, 13rem); display: grid; align-items: center; }
.project-stage__media {
  position: relative;
  width: min(75%, 1120px);
  min-height: clamp(620px, 66vw, 900px);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(229,201,130,.18);
  border-radius: 56px 4px 56px 4px;
  background: #0c0c0d;
  box-shadow: 0 70px 150px rgba(0,0,0,.46);
}
.project-stage__media::before { content: ""; position: absolute; z-index: 0; inset: -5%; background-image: linear-gradient(rgba(7,7,8,.28),rgba(7,7,8,.62)), var(--project-poster); background-position: center; background-size: cover; filter: blur(22px) saturate(.65); transform: scale(1.12); }
.project-stage__media::after { content: ""; position: absolute; z-index: 2; inset: 0; box-shadow: inset 0 0 120px rgba(0,0,0,.68); pointer-events: none; }
.project-stage__video-wrap { position: absolute; z-index: 1; inset: 2.2rem; display: grid; place-items: center; overflow: hidden; }
.project-stage__video-wrap video { width: 100%; height: calc(100% + 70px); object-fit: contain; filter: contrast(1.03) saturate(.9); }
.project-stage__media.is-video-failed video { opacity: 0; }
.project-stage__copy { position: absolute; z-index: 5; right: 0; top: 50%; width: min(48%, 650px); padding: clamp(1.3rem, 3vw, 3rem); background: linear-gradient(135deg, rgba(8,8,9,.9), rgba(8,8,9,.58)); border-left: 1px solid rgba(229,201,130,.28); backdrop-filter: blur(16px); transform: translateY(-50%); }
.project-stage__copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(3.5rem, 7.2vw, 8rem); font-weight: 400; letter-spacing: -.045em; line-height: 1.02; }
.project-stage__copy h3 em { font-weight: 400; }
.project-stage__copy > p:not(.eyebrow) { max-width: 52ch; margin: 1.8rem 0; color: var(--ivory-soft); }
.project-stage .media-badge { top: 2rem; left: 2rem; }
.project-stage .sound-toggle { right: 2rem; bottom: 2rem; }
.project-stage--reverse .project-stage__media { margin-left: auto; }
.project-stage--reverse .project-stage__copy { left: 0; right: auto; border-left: 0; border-right: 1px solid rgba(229,201,130,.28); }
.project-stage--garage .project-stage__media { width: min(86%, 1280px); min-height: clamp(580px, 58vw, 820px); margin-inline: auto; }
.project-stage--garage .project-stage__copy { right: 3%; top: auto; bottom: 4%; transform: none; }

.ambient-credit { display: none; }

/* Safe progressive reveals */
.reveal { opacity: 1; transform: none; }
.motion-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(24px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); transition: opacity .8s var(--ease), transform .8s var(--ease); }

@media (max-width: 1100px) {
  :root { --header-height: 78px; }
  .desktop-nav { gap: 1.35rem; }
  .desktop-nav a { font-size: .64rem; }
  .selected-moves__grid { grid-template-columns: minmax(250px, .62fr) minmax(470px, 1fr); gap: 3.5rem; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); gap: 3rem; }
  .hero__title { font-size: clamp(4rem, 7.4vw, 6.2rem); }
  .service-link { grid-template-columns: 60px 1fr minmax(200px, .55fr) auto; gap: 1.25rem; }
  .project-feature { grid-template-columns: minmax(310px, .75fr) 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; --gutter: clamp(1.1rem, 5vw, 2rem); }
  body { line-height: 1.6; }
  .section { padding-block: 5rem; }
  .display { font-size: clamp(3.35rem, 14vw, 6.4rem); }
  .display--medium, .display--small { font-size: clamp(3rem, 12vw, 5.5rem); }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 510;
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(8, 8, 9, .72);
    cursor: pointer;
  }
  .menu-toggle span { width: 16px; height: 1px; background: var(--ivory); transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 490;
    inset: 0;
    display: block;
    overflow-y: auto;
    padding-top: calc(var(--header-height) + 2.2rem + env(safe-area-inset-top));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    background: rgba(6, 6, 7, .985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3%);
    transition: opacity .35s ease, visibility .35s ease, transform .45s var(--ease);
  }
  .mobile-menu::before { content: "RR"; position: fixed; z-index: -1; left: 50%; top: 48%; color: var(--ivory); font-family: var(--serif); font-size: 70vw; line-height: .5; opacity: .025; transform: translate(-50%, -50%); }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu__nav { display: grid; }
  .mobile-menu__nav a { display: grid; grid-template-columns: 46px 1fr; gap: .8rem; align-items: baseline; padding: .75rem 0; border-bottom: 1px solid var(--line-soft); }
  .mobile-menu__nav span { color: var(--gold); font-family: var(--serif); font-size: 1rem; }
  .mobile-menu__nav strong { font-family: var(--serif); font-size: clamp(2.25rem, 12vw, 4.3rem); font-weight: 400; line-height: .9; }
  .mobile-menu__nav a[aria-current="page"] strong { color: var(--gold-bright); }
  .mobile-menu__footer { margin-top: 2rem; display: grid; gap: .35rem; color: #8b857d; font-size: .72rem; }
  .mobile-menu__cta { margin-top: 1.4rem; }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + 3.2rem); padding-bottom: 5rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero__title { font-size: clamp(4rem, 17vw, 6.3rem); }
  .hero__lede { font-size: 1rem; }
  .hero__promise { margin-top: 1rem; }
  .hero__rail { display: none; }
  .light-beam { opacity: .22; }

  .manifesto-grid, .section-heading-row, .process__head, .subhero__grid { grid-template-columns: 1fr; }
  .section-heading-row { align-items: start; }
  .service-link { grid-template-columns: 48px 1fr auto; gap: .8rem; }
  .service-link p { grid-column: 2 / -1; max-width: 50ch; }
  .service-link h3 { font-size: clamp(2.3rem, 10vw, 4rem); }

  .process__route { min-height: auto; margin-top: 3rem; }
  .process__route svg { display: none; }
  .process__steps { min-height: auto; display: grid; grid-template-columns: 1fr; padding-left: 2.1rem; }
  .process__steps::before { content: ""; position: absolute; left: .65rem; top: 1.2rem; bottom: 1.2rem; width: 1px; background: linear-gradient(var(--gold), rgba(201,164,92,.14)); }
  .process-step, .process-step:nth-child(n) { position: relative; max-width: none; margin: 0; padding: .6rem 0 2.4rem; opacity: 1; }
  .process-step::before { content: ""; position: absolute; left: -1.75rem; top: 1.15rem; width: 8px; height: 8px; border: 1px solid var(--gold); border-radius: 50%; background: var(--ink); }

  .project-feature, .project-secondary { grid-template-columns: 1fr; }
  .project-feature .media-frame { width: min(88%, 520px); }
  .project-secondary .media-frame { width: min(72%, 390px); margin-left: auto; }
  .project-secondary__copy { order: 2; }
  .local-grid, .trust-grid { grid-template-columns: 1fr; }
  .selected-moves__grid { grid-template-columns: 1fr; gap: 4rem; }
  .selected-moves__intro { position: relative; top: auto; max-width: 680px; }
  .move-register__item { min-height: 180px; }
  .local-map { min-height: 430px; order: 2; }
  .trust-commitment { width: min(86%, 640px); min-height: 430px; margin-left: auto; }
  .trust-standard { padding: 2rem 0 0; border-top: 1px solid rgba(229,201,130,.26); border-left: 0; }

  .subhero { min-height: auto; padding-top: calc(var(--header-height) + 5rem); padding-bottom: 3.5rem; }
  .subhero__aside { margin-top: 1rem; }
  .service-detail__row { grid-template-columns: 1fr; }
  .service-detail:nth-of-type(even) .service-detail__visual { order: initial; }
  .service-detail__visual { min-height: 480px; }
  .service-detail__visual .media-frame, .service-detail:nth-of-type(even) .service-detail__visual .media-frame { width: min(80%, 520px); margin-left: auto; }
  .service-detail:nth-of-type(even) .service-detail__visual .media-frame { margin-left: 0; }

  .contact-layout, .faq-layout { grid-template-columns: 1fr; }
  .contact-intro, .faq-heading { position: relative; top: auto; }
  .inquiry-form { grid-template-columns: 1fr; }
  .field { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .text-link { min-height: 44px; display: inline-flex; align-items: center; }
  .footer-column a { min-width: 44px; min-height: 44px; display: flex; align-items: center; margin-block: 0; }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 420;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.1rem;
    border-radius: 3px 20px 3px 20px;
    background: linear-gradient(135deg, #e5c982, #bd934e);
    color: #100d08;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .4);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transform: translateY(130%);
    transition: opacity .3s ease, visibility .3s ease, transform .4s var(--ease);
  }
  .mobile-sticky-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
  body:has(.mobile-sticky-cta) .scroll-orbit { bottom: calc(6.1rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 520px) {
  .section { padding-block: 4.25rem; }
  .eyebrow { font-size: .64rem; }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .hero__promise { width: 100%; }
  .hero__promise-item { font-size: .59rem; }
  .ticker__group { min-width: 150vw; gap: 1.35rem; }
  .move-register__item { grid-template-columns: 1fr; min-height: 164px; gap: .9rem; }
  .move-register__meta { display: none; }
  .move-register__item h3 { font-size: clamp(2.45rem, 11vw, 3.7rem); }
  .trust-standard li { grid-template-columns: 1fr; gap: .55rem; }
  .service-link { grid-template-columns: 36px 1fr auto; }
  .service-link p { font-size: .82rem; }
  .project-feature .media-frame { width: 100%; }
  .project-secondary .media-frame { width: 78%; }
  .local-map { min-height: 350px; }
  .trust-commitment { width: 100%; min-height: 390px; padding-inline: 1.1rem; }
  .trust-commitment__meta { display: grid; }
  .service-detail__visual { min-height: 400px; }
  .service-detail__visual .media-frame, .service-detail:nth-of-type(even) .service-detail__visual .media-frame { width: 88%; }
  .inquiry-form { margin-inline: -.3rem; padding: 1.1rem; border-radius: 3px 26px 3px 26px; }
  .contact-person { grid-template-columns: 70px minmax(0, 1fr); }
  .contact-person img { width: 70px; border-radius: 2px 16px 2px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { display: grid; grid-template-columns: 1fr; gap: .6rem; }
  .footer-bottom > .footer-credit, .footer-bottom > span:last-child { text-align: left; }
  .scroll-orbit { right: .8rem; width: 38px; height: 58px; }
  .scroll-orbit.is-to-top { width: 42px; height: 42px; }
}

@media (orientation: landscape) and (max-height: 540px) and (max-width: 960px) {
  .mobile-menu { padding-top: calc(var(--header-height) + 1rem + env(safe-area-inset-top)); }
  .mobile-menu__nav { grid-template-columns: 1fr 1fr; gap: 0 1.5rem; }
  .mobile-menu__nav strong { font-size: 2.2rem; }
  .mobile-menu__footer { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 3.5rem; }
  .hero { padding-top: calc(var(--header-height) + 1.6rem); padding-bottom: 2.4rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__title { font-size: clamp(3.2rem, 7vw, 4.25rem); }
  .hero__lede { margin-top: .8rem; font-size: .82rem; }
  .hero__actions { margin-top: 1rem; }
  .hero__actions .button { width: auto; min-height: 48px; }
  .hero__promise { display: none; }
}

@media (max-width: 1100px) {
  .service-showcase { grid-template-columns: minmax(340px, .72fr) minmax(380px, 1fr); gap: 2.5rem; }
  .service-showcase__visual { min-height: 590px; }
  .project-stage__media { width: 78%; }
  .project-stage__copy { width: 52%; }
}

@media (max-width: 900px) {
  [data-parallax-speed] { transform: none; will-change: auto; }
  .hero__ambient { inset: -2%; }
  .hero__ambient::after { background: linear-gradient(180deg, rgba(7,7,8,.9), rgba(7,7,8,.94)); }
  .hero__ambient.is-video-ready video { opacity: .09; }
  .manifesto-cinematic { min-height: 820px; align-items: end; }
  .manifesto-film { top: 5%; right: -18%; bottom: 24%; width: 106%; clip-path: polygon(22% 0,100% 0,100% 100%,0 90%); }
  .manifesto-film::after { background: linear-gradient(180deg, rgba(7,7,8,.35), rgba(7,7,8,.9) 74%, #070708); }
  .manifesto-grid--cinematic { grid-template-columns: 1fr; align-items: end; }
  .manifesto-cinematic__title { padding: 0; }
  .manifesto-cinematic__copy { margin: 1.5rem 0 0; padding: 1rem 0; background: transparent; backdrop-filter: none; }

  .service-showcase { grid-template-columns: 1fr; }
  .service-showcase__visual { position: sticky; z-index: 4; top: calc(var(--header-height) + .7rem); order: -1; min-height: 50svh; max-height: 580px; border-radius: 38px 3px 38px 3px; }
  .service-showcase__option { min-height: 128px; grid-template-columns: minmax(0, 1fr) auto; }
  .service-showcase__text strong { font-size: clamp(2.45rem, 10vw, 4rem); }
  .service-showcase__details { min-height: 54px; }

  .project-stage { min-height: auto; margin-top: 8rem; display: grid; }
  .project-stage__media,
  .project-stage--reverse .project-stage__media,
  .project-stage--garage .project-stage__media { width: 100%; min-height: min(74svh, 720px); margin: 0; }
  .project-stage__video-wrap { inset: 1.1rem; }
  .project-stage__copy,
  .project-stage--reverse .project-stage__copy,
  .project-stage--garage .project-stage__copy { position: relative; right: auto; left: auto; top: auto; bottom: auto; width: calc(100% - 1.4rem); margin: -4.5rem 0 0 auto; padding: 1.4rem; border: 1px solid rgba(229,201,130,.22); transform: none; }
  .project-stage__copy h3 { font-size: clamp(3.8rem, 15vw, 6.8rem); }
  .project-stage--reverse .project-stage__copy { order: 2; }
}

@media (max-width: 520px) {
  .manifesto-cinematic { min-height: 760px; }
  .manifesto-film { right: -36%; width: 130%; bottom: 30%; }
  .service-showcase__visual { min-height: 44svh; }
  .service-showcase__visual::before { inset: .65rem; }
  .service-showcase__label { left: 1.25rem; bottom: 1.15rem; }
  .service-showcase__counter { top: 1.15rem; right: 1.25rem; }
  .service-showcase__option { padding-block: 1.15rem; }
  .project-stage__media,
  .project-stage--reverse .project-stage__media,
  .project-stage--garage .project-stage__media { min-height: 68svh; border-radius: 38px 3px 38px 3px; }
  .project-stage__video-wrap video { height: calc(100% + 38px); }
  .project-stage .media-badge { top: 1.2rem; left: 1.2rem; }
  .project-stage .sound-toggle { right: 1.2rem; bottom: 1.2rem; }
}

/* Premium refinement: brand-led hero and unique media moments */
main { position: relative; }

.hero { min-height: min(940px, 100svh); }
.hero__inner { grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr); gap: clamp(1rem, 4vw, 5rem); }
.hero__copy { max-width: 1120px; }
.hero__title { font-size: clamp(5.2rem, 9vw, 10.4rem); line-height: 1.02; }
.hero__lede { max-width: 700px; }
.hero__ambient::after {
  background:
    linear-gradient(90deg, rgba(7,7,8,.94) 0%, rgba(7,7,8,.85) 43%, rgba(7,7,8,.68) 78%, rgba(7,7,8,.84) 100%),
    linear-gradient(180deg, rgba(7,7,8,.52), rgba(7,7,8,.94));
}
.hero__depth { position: relative; min-height: 560px; align-self: stretch; display: grid; align-content: center; justify-items: end; }
.hero__monogram {
  color: transparent;
  -webkit-text-stroke: 1px rgba(229,201,130,.18);
  font-family: var(--serif);
  font-size: clamp(15rem, 25vw, 29rem);
  letter-spacing: -.12em;
  line-height: .52;
  opacity: .64;
}
.hero__depth-label,
.hero__depth-index { position: absolute; right: 0; color: rgba(241,237,228,.42); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; }
.hero__depth-label { top: 22%; }
.hero__depth-index { bottom: 19%; color: rgba(229,201,130,.48); }
.coachline--hero { left: 4%; right: 8%; top: 82%; opacity: .42; overflow: visible; }
.coachline--hero::after { content: ""; position: absolute; right: 31%; top: -3px; width: 7px; height: 7px; border: 1px solid rgba(229,201,130,.55); border-radius: 50%; background: #09090a; box-shadow: 0 0 16px rgba(229,201,130,.25); }

.manifesto-cinematic .display em { color: var(--ivory); font-style: normal; }
.process .display em { color: var(--ivory); }
.subhero .display em { color: var(--ivory); font-style: normal; }
.service-showcase__panel { filter: saturate(.76) contrast(1.05); }
.service-showcase__panel::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(115deg, rgba(6,6,7,.15), transparent 50%, rgba(201,164,92,.05)); }
.service-showcase__panel::after { z-index: 2; }
.service-showcase__label { z-index: 3; }
.project-stage__video-wrap img { width: 100%; height: calc(100% + 70px); object-fit: contain; filter: contrast(1.03) saturate(.86); }
.project-stage--reverse .project-stage__copy h3 em { color: var(--ivory); }

.service-detail.section { padding-block: clamp(4.5rem, 7vw, 7.5rem); }
.service-detail__row { position: relative; z-index: 2; }
.service-detail__visual { height: clamp(510px, 44vw, 630px); min-height: 0; }
.service-detail__visual .media-frame { height: 100%; box-shadow: 0 48px 110px rgba(0,0,0,.38); }
.service-detail--business::after {
  content: "GEWERBE";
  position: absolute;
  z-index: 0;
  right: -3vw;
  top: 52%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,164,92,.075);
  font-family: var(--serif);
  font-size: clamp(10rem, 24vw, 27rem);
  letter-spacing: -.08em;
  line-height: .5;
  transform: translateY(-50%);
  pointer-events: none;
}
.service-detail--business .service-detail__visual { order: initial; }
.service-detail--business .service-detail__visual .media-frame { width: 100%; height: 100%; margin-left: auto; border-radius: 4px 52px 4px 52px; }
.service-detail--business .media-frame video { transform: scale(1.34); transform-origin: 50% 12%; }
.service-detail--business .media-frame:hover video { transform: scale(1.37); }
.service-detail--business .service-detail__content::after { content: ""; display: block; width: min(130%, 660px); height: 1px; margin-top: 2.3rem; background: linear-gradient(90deg, var(--gold), rgba(201,164,92,.08)); }
.service-detail--care .service-detail__content { position: relative; z-index: 3; }
.service-detail--care .service-detail__content h2 { position: relative; z-index: 4; width: 128%; }
.service-detail--care .service-detail__visual .media-frame { width: 100%; height: 100%; }
.service-detail--care .service-detail__benefit { max-width: 35ch; }
.service-detail--move .media-frame video,
.service-detail--care .media-frame video { transform: scale(1.28); transform-origin: 50% 12%; }
.service-detail--move .media-frame:hover video,
.service-detail--care .media-frame:hover video { transform: scale(1.31); }

/* Original RollRaus service films: keep the portrait footage intact. */
.service-film {
  --film-edge: rgba(229, 201, 130, .2);
  background-color: #080809;
  background-image: var(--film-poster);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.service-film::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -9%;
  background-image: linear-gradient(145deg, rgba(7,7,8,.08), rgba(7,7,8,.42)), var(--film-poster);
  background-position: center;
  background-size: cover;
  filter: blur(30px) saturate(.72) contrast(1.04);
  opacity: .88;
  transform: scale(1.1);
}
.service-film::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,7,8,.24), transparent 30%, transparent 70%, rgba(7,7,8,.24)),
    linear-gradient(180deg, rgba(7,7,8,.08), transparent 34%, transparent 68%, rgba(7,7,8,.4));
  pointer-events: none;
}
.service-detail .service-film > video {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: auto;
  max-width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  object-position: center;
  background: #070708;
  border-inline: 1px solid var(--film-edge);
  box-shadow: 0 0 70px rgba(0,0,0,.56);
  filter: saturate(.86) contrast(1.025);
  transform: translate(-50%, -50%);
}
.service-detail .service-film--wide > video { height: calc(100% - 48px); }
.service-detail .service-film:hover > video { transform: translate(-50%, -50%) scale(1.012); }
.service-film.is-video-failed::before { inset: 0; filter: saturate(.78); opacity: .82; transform: none; }
.service-detail__visual .service-film { width: 92%; }
.service-detail:nth-of-type(even) .service-detail__visual .service-film { margin-left: 0; }
.service-detail--business .service-detail__visual .service-film,
.service-detail--care .service-detail__visual .service-film { width: 100%; }
.service-detail--move .service-detail__visual .service-film { width: 88%; }

.final-cta--cinematic { isolation: isolate; background-position: center; background-size: cover; }
.final-cta__film { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.final-cta__film::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,7,8,.9), rgba(7,7,8,.68) 50%, rgba(7,7,8,.9)), linear-gradient(180deg, rgba(7,7,8,.62), rgba(7,7,8,.88)); }
.final-cta__film video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; opacity: 0; filter: blur(1.5px) saturate(.58); transform: scale(1.08); transition: opacity 1.5s ease; }
.final-cta__film.is-video-ready video { opacity: .24; }
.final-cta--cinematic .final-cta__inner { z-index: 3; }
.final-cta--cinematic::before { z-index: 1; }
.final-cta--cinematic::after { z-index: 2; }

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr) minmax(220px, .3fr); gap: 1rem; }
  .hero__title { font-size: clamp(4.8rem, 9vw, 7.8rem); }
  .hero__monogram { font-size: clamp(13rem, 25vw, 20rem); }
}

@media (max-width: 900px) {
  .hero { min-height: 900px; padding-bottom: 6rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { max-width: 760px; }
  .hero__title { font-size: clamp(4.2rem, 16vw, 7.2rem); }
  .hero__depth { position: absolute; z-index: -1; inset: 17% -8% auto auto; min-height: 420px; opacity: .64; }
  .hero__monogram { font-size: clamp(15rem, 62vw, 25rem); }
  .hero__depth-label { top: 6%; right: 12%; }
  .hero__depth-index { bottom: 9%; right: 12%; }
  .coachline--hero { top: auto; bottom: 3.8rem; right: -14%; }
  .service-detail.section { padding-block: 4.1rem; }
  .service-detail__row { gap: 2.5rem; }
  .service-detail__visual { height: min(68svh, 560px); min-height: 480px; }
  .service-detail--business .service-detail__visual,
  .service-detail--care .service-detail__visual { order: initial; }
  .service-detail__visual .service-film,
  .service-detail:nth-of-type(even) .service-detail__visual .service-film,
  .service-detail--business .service-detail__visual .service-film,
  .service-detail--care .service-detail__visual .service-film,
  .service-detail--move .service-detail__visual .service-film { width: min(94%, 560px); height: 100%; }
  .service-detail--business .service-detail__content::after { width: 100%; }
  .service-detail--care .service-detail__content h2 { width: auto; }
  .service-detail--business::after { top: 58%; font-size: 34vw; }
  .service-detail .service-film--wide > video { height: calc(100% - 28px); }
  .project-stage__video-wrap img { height: calc(100% + 38px); }
  .final-cta__film.is-video-ready video { opacity: .17; }
}

@media (max-width: 520px) {
  .hero { min-height: 860px; }
  .hero__depth { top: 20%; right: -18%; }
  .hero__depth-label, .hero__depth-index { display: none; }
  .hero__promise { width: 100%; }
  .service-detail__visual .service-film,
  .service-detail:nth-of-type(even) .service-detail__visual .service-film,
  .service-detail--business .service-detail__visual .service-film,
  .service-detail--care .service-detail__visual .service-film,
  .service-detail--move .service-detail__visual .service-film { width: 96%; }
}

@media (orientation: landscape) and (max-height: 540px) and (max-width: 960px) {
  .hero { min-height: 690px; }
  .hero__depth { top: 6%; right: -4%; }
  .hero__title { font-size: clamp(3.5rem, 8vw, 5rem); }
}

/* Background-only premium refinement: obsidian depth, light and atmosphere */
.hero {
  background:
    radial-gradient(ellipse 44% 62% at 76% 20%, rgba(214, 177, 103, .052), transparent 72%),
    linear-gradient(180deg, #070707 0%, #090807 54%, #070708 100%);
}
.hero::after { -webkit-text-stroke-color: rgba(213, 178, 107, .038); }
.hero__ambient {
  background-color: #080808;
  box-shadow:
    inset 0 0 11rem rgba(0, 0, 0, .42),
    inset 0 -8rem 11rem rgba(5, 5, 6, .78);
}
.hero__ambient::after {
  background:
    radial-gradient(ellipse 58% 82% at 77% 12%, rgba(229, 201, 130, .105), transparent 62%),
    radial-gradient(ellipse 30% 55% at 19% 47%, rgba(255, 243, 216, .026), transparent 72%),
    linear-gradient(90deg, rgba(5, 5, 6, .96) 0%, rgba(7, 7, 8, .88) 43%, rgba(8, 7, 7, .74) 76%, rgba(6, 6, 7, .92) 100%),
    linear-gradient(180deg, rgba(6, 6, 7, .5), rgba(7, 7, 8, .96));
}
.hero__ambient video {
  filter: blur(1.5px) brightness(.4) contrast(1.12) saturate(.55);
}
.hero__ambient.is-video-ready video { opacity: .17; }
.hero__monogram { -webkit-text-stroke-color: rgba(229, 201, 130, .12); }

.manifesto-cinematic {
  isolation: isolate;
  background:
    radial-gradient(ellipse 48% 72% at 83% 48%, rgba(224, 189, 118, .07), transparent 68%),
    radial-gradient(ellipse 27% 52% at 64% 60%, rgba(255, 245, 220, .022), transparent 72%),
    linear-gradient(180deg, #070708 0%, #080807 18%, #090807 68%, #070708 100%);
}
.manifesto-cinematic::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18), transparent 43%, rgba(201, 164, 92, .018) 78%, transparent),
    radial-gradient(ellipse 86% 35% at 86% 92%, rgba(229, 201, 130, .028), transparent 70%);
}
.manifesto-film::after {
  background:
    linear-gradient(90deg, #070708 0%, rgba(7, 7, 8, .9) 20%, rgba(7, 7, 8, .48) 61%, rgba(7, 7, 8, .28)),
    radial-gradient(ellipse at 74% 46%, transparent 30%, rgba(0, 0, 0, .28) 100%);
}
.manifesto-film video { filter: brightness(.62) saturate(.58) contrast(1.08); }
.manifesto-film.is-video-ready video { opacity: .54; }

.services-teaser {
  isolation: isolate;
  background:
    radial-gradient(ellipse 48% 62% at 54% 48%, rgba(214, 176, 101, .058), transparent 72%),
    radial-gradient(ellipse 31% 72% at 96% 36%, rgba(255, 242, 211, .025), transparent 72%),
    linear-gradient(180deg, #070708 0%, #090807 48%, #070708 100%);
}
.services-teaser::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(104deg, transparent 50%, rgba(229, 201, 130, .028) 69%, transparent 89%),
    radial-gradient(ellipse 46% 58% at 78% 50%, rgba(229, 201, 130, .055), transparent 74%),
    radial-gradient(ellipse 76% 22% at 52% 96%, rgba(201, 164, 92, .025), transparent 74%);
}
.services-teaser::after { -webkit-text-stroke-color: rgba(201, 164, 92, .035); }
.services-showcase::after { opacity: .36; }

.process {
  isolation: isolate;
  background:
    radial-gradient(ellipse 68% 24% at 51% 67%, rgba(218, 181, 108, .042), transparent 74%),
    linear-gradient(180deg, #070708 0%, #080808 44%, #080706 72%, #070708 100%);
}
.process::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 12% 66% at 32% 57%, rgba(255, 242, 210, .016), transparent 74%),
    radial-gradient(ellipse 13% 62% at 70% 55%, rgba(229, 201, 130, .018), transparent 72%);
}
.process > .shell { position: relative; z-index: 1; }
.process__route::before {
  content: "";
  position: absolute;
  inset: 10% 2% 4%;
  pointer-events: none;
  background: radial-gradient(ellipse 62% 26% at 51% 57%, rgba(229, 201, 130, .075), transparent 72%);
  filter: blur(28px);
  opacity: .68;
}
.route-base { stroke: rgba(201, 164, 92, .09); }

.selected-moves {
  isolation: isolate;
  background:
    radial-gradient(ellipse 36% 34% at 77% 24%, rgba(229, 201, 130, .048), transparent 72%),
    radial-gradient(ellipse 42% 28% at 54% 76%, rgba(255, 243, 216, .023), transparent 74%),
    linear-gradient(180deg, #070708 0%, #090807 46%, #080808 76%, #070708 100%);
}
.selected-moves::before,
.selected-moves::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.selected-moves::before {
  background:
    radial-gradient(ellipse 22% 38% at 22% 34%, rgba(201, 164, 92, .026), transparent 72%),
    radial-gradient(ellipse 25% 46% at 87% 67%, rgba(229, 201, 130, .028), transparent 74%);
}
.selected-moves::after {
  background: linear-gradient(102deg, transparent 58%, rgba(255, 240, 205, .017) 72%, transparent 86%);
}

.home-local-atmosphere {
  isolation: isolate;
  background:
    radial-gradient(ellipse 44% 58% at 73% 49%, rgba(201, 164, 92, .048), transparent 72%),
    radial-gradient(ellipse 25% 62% at 18% 38%, rgba(167, 181, 196, .022), transparent 74%),
    linear-gradient(180deg, #070708 0%, #08090b 26%, #08090b 76%, #070708 100%);
}
.home-local-atmosphere::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 6%, rgba(219, 225, 229, .012) 17%, transparent 31%),
    linear-gradient(90deg, transparent 61%, rgba(229, 201, 130, .02) 75%, transparent 89%);
}
.home-local-atmosphere > .shell { position: relative; z-index: 1; }

.trust-section {
  isolation: isolate;
  background:
    radial-gradient(ellipse 38% 64% at 74% 45%, rgba(219, 183, 111, .052), transparent 72%),
    radial-gradient(ellipse 30% 54% at 18% 68%, rgba(255, 241, 211, .018), transparent 72%),
    linear-gradient(180deg, #070708 0%, #090807 54%, #070708 100%);
}
.trust-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(108deg, transparent 48%, rgba(229, 201, 130, .019) 66%, transparent 84%);
}
.trust-section > .shell { position: relative; z-index: 1; }

.final-cta { border-block-color: rgba(241, 237, 228, .045); }
.final-cta--cinematic::before {
  inset: -14%;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  top: auto;
  left: auto;
  transform: none;
  background:
    radial-gradient(ellipse 38% 58% at 50% 47%, rgba(229, 201, 130, .15), transparent 72%),
    linear-gradient(90deg, transparent 10%, rgba(255, 243, 218, .03) 23%, transparent 36%, transparent 63%, rgba(229, 201, 130, .032) 77%, transparent 90%),
    radial-gradient(ellipse 88% 72% at 50% 44%, transparent 38%, rgba(0, 0, 0, .6) 100%);
}
.final-cta__film::after {
  background:
    radial-gradient(ellipse 42% 62% at 50% 46%, rgba(8, 8, 9, .38), rgba(7, 7, 8, .84) 74%),
    linear-gradient(90deg, rgba(5, 5, 6, .92), rgba(7, 7, 8, .58) 50%, rgba(5, 5, 6, .92)),
    linear-gradient(180deg, rgba(7, 7, 8, .58), rgba(7, 7, 8, .94));
}
.final-cta__film video { filter: blur(1.5px) brightness(.46) contrast(1.08) saturate(.48); }
.final-cta__film.is-video-ready video { opacity: .14; }

@media (max-width: 900px) {
  body::before { background-size: 150px 150px; opacity: .018; }
  .hero {
    background:
      radial-gradient(ellipse 74% 48% at 72% 16%, rgba(214, 177, 103, .045), transparent 72%),
      linear-gradient(180deg, #070707 0%, #090807 58%, #070708 100%);
  }
  .hero__ambient::after {
    background:
      radial-gradient(ellipse 78% 54% at 72% 14%, rgba(229, 201, 130, .075), transparent 70%),
      linear-gradient(180deg, rgba(6, 6, 7, .82) 0%, rgba(7, 7, 8, .88) 55%, rgba(7, 7, 8, .97) 100%);
  }
  .hero__ambient.is-video-ready video { opacity: .13; }
  .manifesto-cinematic {
    background:
      radial-gradient(ellipse 76% 42% at 78% 22%, rgba(224, 189, 118, .052), transparent 74%),
      linear-gradient(180deg, #070708 0%, #090807 54%, #070708 100%);
  }
  .manifesto-film::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, .48), rgba(7, 7, 8, .9) 72%, #070708),
      radial-gradient(ellipse at 72% 32%, transparent 18%, rgba(0, 0, 0, .34) 100%);
  }
  .manifesto-film.is-video-ready video { opacity: .45; }
  .services-teaser {
    background:
      radial-gradient(ellipse 78% 34% at 58% 38%, rgba(214, 176, 101, .045), transparent 74%),
      linear-gradient(180deg, #070708 0%, #090807 52%, #070708 100%);
  }
  .process {
    background:
      radial-gradient(ellipse 82% 18% at 50% 69%, rgba(218, 181, 108, .032), transparent 76%),
      linear-gradient(180deg, #070708 0%, #080807 64%, #070708 100%);
  }
  .process__route::before { opacity: .42; filter: blur(22px); }
  .selected-moves {
    background:
      radial-gradient(ellipse 76% 22% at 74% 18%, rgba(229, 201, 130, .04), transparent 74%),
      radial-gradient(ellipse 70% 18% at 35% 76%, rgba(255, 243, 216, .018), transparent 76%),
      linear-gradient(180deg, #070708 0%, #090807 48%, #070708 100%);
  }
  .home-local-atmosphere {
    background:
      radial-gradient(ellipse 76% 36% at 66% 58%, rgba(201, 164, 92, .038), transparent 74%),
      linear-gradient(180deg, #070708 0%, #08090b 28%, #08090b 78%, #070708 100%);
  }
  .trust-section {
    background:
      radial-gradient(ellipse 78% 35% at 70% 62%, rgba(219, 183, 111, .04), transparent 74%),
      linear-gradient(180deg, #070708 0%, #090807 56%, #070708 100%);
  }
  .final-cta--cinematic::before {
    background:
      radial-gradient(ellipse 68% 52% at 50% 44%, rgba(229, 201, 130, .09), transparent 74%),
      linear-gradient(90deg, transparent 18%, rgba(255, 243, 218, .016) 31%, transparent 44%, transparent 62%, rgba(229, 201, 130, .016) 75%, transparent 88%),
      radial-gradient(ellipse 94% 76% at 50% 44%, transparent 30%, rgba(0, 0, 0, .66) 100%);
  }
  .final-cta__film.is-video-ready video { opacity: .11; }
  .light-beam { width: 10rem; filter: blur(46px); opacity: .15; }
}

@media (max-width: 520px) {
  body::before { opacity: .015; }
  .hero__ambient::after {
    background:
      radial-gradient(ellipse 92% 42% at 70% 12%, rgba(229, 201, 130, .06), transparent 72%),
      linear-gradient(180deg, rgba(6, 6, 7, .86), rgba(7, 7, 8, .94) 66%, #070708 100%);
  }
  .selected-moves::after,
  .home-local-atmosphere::before { opacity: .72; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .preloader { display: none; }
  .ticker__track { animation: none !important; transform: translateX(-50%); }
  .hero__promise-item { display: none; animation: none !important; opacity: 1; filter: none; transform: none; }
  .hero__promise-item:first-child { display: flex; }
  .motion-ready .reveal:not(.is-visible), .motion-ready .media-frame:not(.is-visible) .media-reveal-overlay { opacity: 1; transform: none; }
  .light-beam { animation: none; }
  .scroll-orbit__mouse span { animation: none; }
  video { visibility: hidden; }
  [data-parallax-speed] { transform: none !important; }
  .hero__ambient video, .manifesto-film video, .service-showcase__panel video, .final-cta__film video { display: none; }
  .service-film::before { inset: 0; filter: saturate(.78); opacity: .82; transform: none; }
}

@media print {
  .site-header, .mobile-sticky-cta, .scroll-orbit, .preloader, .final-cta { display: none !important; }
  body { background: #fff; color: #111; }
  .legal { padding-top: 2rem; }
  .legal__content p, .legal__content address, .legal__content li { color: #333; }
}
