:root {
  --ink: #11141b;
  --ink-soft: #1b1f28;
  --paper: #f5f0e8;
  --paper-deep: #e9dfd2;
  --white: #fffdf9;
  --red: #d92f27;
  --red-deep: #a91f1a;
  --orange: #f5962c;
  --gold: #ffc86a;
  --blue: #315f72;
  --blue-deep: #173844;
  --slate: #7a838a;
  --line-dark: rgba(17, 20, 27, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  --pad: clamp(1.4rem, 5vw, 6rem);
  --section-space: clamp(6.5rem, 12vw, 12rem);
  --motion-intensity: 1;
  --motion-duration-factor: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--ink); scrollbar-gutter: stable; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
body.experience-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { background: var(--orange); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  padding: .8rem 1rem;
  transform: translateY(-160%);
  border-radius: 99px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.loading-screen {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(245,150,44,.15), transparent 28%),
    linear-gradient(145deg, #0d1016, #171b24 55%, #10131a);
  color: white;
  isolation: isolate;
}
html.intro-ready .loading-screen { display: grid; }
.loading-screen::before {
  content: "";
  position: absolute;
  width: 75vmax;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 12vmax rgba(255,255,255,.012), 0 0 0 24vmax rgba(255,255,255,.008);
  animation: loaderBreathe calc(2.6s * var(--motion-duration-factor)) ease-in-out infinite;
}
.loading-screen.is-exiting { pointer-events: none; animation: loaderExit .72s var(--ease-in-out) forwards; }
.loader-visual { position: relative; display: grid; place-items: center; width: 190px; aspect-ratio: 1; }
.loader-visual picture { position: relative; z-index: 3; display: grid; place-items: center; width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,.045); box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.loader-visual img { width: 78px; height: 78px; object-fit: contain; animation: loaderMark calc(2.1s * var(--motion-duration-factor)) ease-in-out infinite; }
.loader-orbit { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; animation: rotate calc(4.5s * var(--motion-duration-factor)) linear infinite; }
.loader-orbit::after { content: ""; position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.loader-orbit-one { inset: 9%; }
.loader-orbit-two { inset: 25%; animation-duration: calc(3.2s * var(--motion-duration-factor)); animation-direction: reverse; }
.loader-copy { position: absolute; bottom: 13vh; display: flex; align-items: center; flex-direction: column; gap: .55rem; }
.loader-copy strong { font-family: Georgia, serif; font-size: 1.05rem; letter-spacing: .28em; }
.loader-copy span { color: rgba(255,255,255,.52); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.loader-progress { position: absolute; bottom: 8.5vh; width: min(280px, 58vw); height: 1px; overflow: hidden; background: rgba(255,255,255,.14); }
.loader-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--orange), var(--gold)); animation: loaderProgress 1.45s var(--ease-out) forwards; }
.loader-skip { position: absolute; right: 1.5rem; bottom: 1.5rem; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.15); border-radius: 99px; background: transparent; color: rgba(255,255,255,.62); cursor: pointer; font-size: .62rem; font-weight: 700; }

.scroll-progress {
  position: fixed;
  z-index: 10001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--orange), var(--gold)); }

.noise {
  position: fixed;
  z-index: 9995;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  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='.84' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}
.page-transition {
  position: fixed;
  z-index: 9996;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--red);
  pointer-events: none;
}

.cursor-dot, .cursor-ring {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--orange); }
.cursor-ring {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border: 1px solid rgba(255,255,255,.52);
  background: rgba(17,20,27,.12);
  color: var(--ink);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), background .35s ease;
}
.cursor-ring span { opacity: 0; font-size: .57rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: opacity .2s ease; }
.cursor-ring.is-active { width: 86px; height: 86px; margin: -43px 0 0 -43px; background: white; color: black; }
.cursor-ring.is-active span { opacity: 1; }
.cursor-glow {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  border-radius: 50%;
  opacity: .1;
  background: radial-gradient(circle, rgba(245,150,44,.38), transparent 67%);
  mix-blend-mode: screen;
  pointer-events: none;
  will-change: transform;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 1rem;
  right: var(--pad);
  left: var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: .55rem .65rem .55rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(17,20,27,.42);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
  color: white;
  backdrop-filter: blur(18px) saturate(125%);
  transition: transform .5s var(--ease-out), background .35s ease, color .35s ease, border-color .35s ease;
}
.site-header.is-hidden { transform: translateY(-130%); }
.site-header.is-light {
  border-color: rgba(17,20,27,.1);
  background: rgba(248,244,238,.72);
  color: var(--ink);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; width: fit-content; }
.brand picture { display: grid; flex: 0 0 auto; place-items: center; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand > span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1rem; letter-spacing: .16em; }
.brand small { margin-top: .35rem; color: var(--orange); font-size: .55rem; letter-spacing: .04em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.7vw, 3.3rem); }
.desktop-nav a { position: relative; padding: .7rem 0; font-size: .72rem; font-weight: 650; letter-spacing: .04em; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .35s var(--ease-out);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a[aria-current="location"]::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: .55rem; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 750;
}
.header-cta i, .button i { font-style: normal; }
.motion-toggle {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .55rem .75rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(17,20,27,.28);
  color: inherit;
  cursor: pointer;
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .04em;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease-out);
}
.motion-toggle:hover { transform: translateY(-1px); background: rgba(255,255,255,.12); }
.site-header.is-light .motion-toggle { border-color: rgba(17,20,27,.12); background: rgba(255,255,255,.58); }
.motion-icon { position: relative; display: block; width: 30px; height: 18px; border: 1px solid currentColor; border-radius: 999px; opacity: .78; }
.motion-icon i { position: absolute; top: 3px; left: 3px; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); transition: transform .3s var(--ease-out); }
.motion-toggle[aria-pressed="true"] .motion-icon i { transform: translateX(12px); background: currentColor; }
.motion-settings-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(17,20,27,.28);
  color: inherit;
  cursor: pointer;
  transition: transform .45s var(--ease-out), background .3s ease;
}
.motion-settings-toggle:hover, .motion-settings-toggle[aria-expanded="true"] { transform: rotate(45deg); background: rgba(245,150,44,.22); }
.site-header.is-light .motion-settings-toggle { border-color: rgba(17,20,27,.12); background: rgba(255,255,255,.58); }
.experience-panel {
  position: fixed;
  z-index: 10010;
  top: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: min(470px, calc(100vw - 2rem));
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 2rem;
  background: rgba(17,20,27,.96);
  box-shadow: 0 40px 120px rgba(0,0,0,.48);
  color: white;
  opacity: 0;
  transform: translateX(calc(100% + 2rem));
  pointer-events: none;
  backdrop-filter: blur(28px) saturate(130%);
  transition: transform .62s var(--ease-out), opacity .35s ease;
}
.experience-panel.is-open { opacity: 1; transform: translateX(0); pointer-events: auto; }
.experience-scrim { position: fixed; z-index: 10009; inset: 0; visibility: hidden; opacity: 0; background: rgba(5,7,10,.58); pointer-events: none; transition: opacity .35s ease, visibility 0s linear .35s; }
.experience-scrim.is-open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
.experience-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.experience-kicker { display: block; margin-bottom: .65rem; color: var(--orange); font-size: .58rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.experience-panel h2 { max-width: 330px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.25rem, 5vw, 3.6rem); font-weight: 400; line-height: .96; letter-spacing: -.045em; }
.experience-close { display: grid; flex: 0 0 auto; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: transparent; color: white; cursor: pointer; font-size: 1.5rem; line-height: 1; }
.experience-intro { margin: 1.3rem 0; color: rgba(255,255,255,.58); font-size: .78rem; line-height: 1.65; }
.experience-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.experience-presets button { min-height: 104px; padding: .85rem; border: 1px solid rgba(255,255,255,.12); border-radius: 1.1rem; background: rgba(255,255,255,.035); color: white; cursor: pointer; text-align: left; transition: border-color .3s, background .3s, transform .3s var(--ease-out); }
.experience-presets button:hover { transform: translateY(-2px); border-color: rgba(245,150,44,.48); }
.experience-presets button[aria-checked="true"] { border-color: var(--orange); background: rgba(245,150,44,.12); box-shadow: inset 0 0 28px rgba(245,150,44,.06); }
.experience-presets strong, .experience-presets span { display: block; }
.experience-presets strong { margin-bottom: .45rem; font-size: .72rem; }
.experience-presets span { color: rgba(255,255,255,.48); font-size: .58rem; line-height: 1.45; }
.experience-field { margin-top: 1.3rem; padding: 1rem; border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; background: rgba(255,255,255,.025); }
.experience-field label { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; font-size: .68rem; font-weight: 700; }
.experience-field output { color: var(--gold); }
.experience-field input[type="range"] { width: 100%; accent-color: var(--orange); }
.experience-options { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .9rem; }
.experience-options label { display: flex; align-items: center; gap: .6rem; min-height: 44px; padding: .65rem .75rem; border: 1px solid rgba(255,255,255,.09); border-radius: .85rem; color: rgba(255,255,255,.72); cursor: pointer; font-size: .62rem; }
.experience-options input { width: 16px; height: 16px; margin: 0; accent-color: var(--orange); }
.experience-actions { display: flex; gap: .7rem; margin-top: 1.2rem; }
.experience-actions button { min-height: 46px; padding: .75rem 1rem; border-radius: 999px; cursor: pointer; font-size: .66rem; font-weight: 780; }
.experience-apply { flex: 1; border: 0; background: var(--orange); color: var(--ink); }
.experience-reset { border: 1px solid rgba(255,255,255,.16); background: transparent; color: white; }
.experience-note { margin: .9rem 0 0; color: rgba(255,255,255,.38); font-size: .55rem; line-height: 1.5; }
.motion-status { position: fixed; z-index: 10030; right: 1rem; bottom: 1rem; width: 1px; height: 1px; margin: 0; overflow: hidden; clip-path: inset(50%); }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 40%, rgba(217,47,39,.22), transparent 32%),
    linear-gradient(135deg, #10131a 0%, #171b24 46%, #11141b 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -20%;
  background:
    radial-gradient(circle at var(--hero-x, 70%) var(--hero-y, 38%), rgba(217,47,39,.22), transparent 24%),
    radial-gradient(circle at 20% 25%, rgba(49,95,114,.22), transparent 26%);
  transform: scale(1.05);
  animation: heroMorph calc(14s * var(--motion-duration-factor)) ease-in-out infinite alternate;
  pointer-events: none;
}
#three-canvas { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; opacity: .62; }
.hero-grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.aurora {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}
.aurora-one { top: -20%; left: -8%; width: 58vw; height: 58vw; background: radial-gradient(circle, rgba(49,95,114,.34), rgba(49,95,114,.08) 48%, transparent 72%); animation: auroraDrift calc(12s * var(--motion-duration-factor)) ease-in-out infinite alternate; }
.aurora-two { right: -15%; bottom: -28%; width: 68vw; height: 68vw; background: radial-gradient(circle, rgba(245,150,44,.23), rgba(245,150,44,.05) 50%, transparent 72%); animation: auroraDrift calc(16s * var(--motion-duration-factor)) ease-in-out -4s infinite alternate-reverse; }
.cloud {
  position: absolute;
  z-index: 2;
  width: 58vw;
  height: 25vw;
  border-radius: 50%;
  opacity: .11;
  background: radial-gradient(ellipse, white 0%, rgba(255,255,255,.2) 42%, transparent 72%);
  filter: blur(30px);
  pointer-events: none;
}
.cloud-one { top: 5%; left: -30%; animation: cloudMove calc(24s * var(--motion-duration-factor)) linear infinite; }
.cloud-two { right: -30%; bottom: 4%; animation: cloudMoveReverse calc(30s * var(--motion-duration-factor)) linear infinite; }
.light-ribbon {
  position: absolute;
  z-index: 2;
  width: 46vw;
  height: 1px;
  opacity: .32;
  background: linear-gradient(90deg, transparent, rgba(255,200,106,.86), transparent);
  box-shadow: 0 0 28px rgba(245,150,44,.28);
  pointer-events: none;
}
.ribbon-one { top: 32%; right: -8%; transform: rotate(-22deg); animation: ribbonDrift calc(7s * var(--motion-duration-factor)) ease-in-out infinite alternate; }
.ribbon-two { right: 18%; bottom: 21%; width: 32vw; transform: rotate(18deg); animation: ribbonDrift calc(9s * var(--motion-duration-factor)) -2s ease-in-out infinite alternate-reverse; }
.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 58%;
  min-height: 100svh;
  padding: 9rem var(--pad) 8rem;
}
.hero-kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 2rem;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero-kicker { color: rgba(255,255,255,.62); }
.pulse-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(245,150,44,.55); animation: pulse 2s ease-out infinite; }
.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 9vw, 10.5rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.075em;
}
.hero-line { display: block; overflow: hidden; padding: 0 .08em .08em 0; }
.hero-line > span { display: block; }
.hero-title em { color: var(--orange); font-weight: 400; }
.hero-intro { max-width: 37rem; margin: 2rem 0 0; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.5vw, 1.28rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.3rem; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 220px;
  gap: 2rem;
  padding: 1rem 1.1rem;
  overflow: hidden;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 780;
  isolation: isolate;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--white);
  transition: transform .5s var(--ease-out);
}
.button::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -70%;
  left: -45%;
  width: 26%;
  height: 240%;
  transform: rotate(18deg);
  background: rgba(255,255,255,.34);
  filter: blur(8px);
  transition: left .75s var(--ease-out);
  pointer-events: none;
}
.button:hover::before { transform: scaleX(1); transform-origin: left; }
.button:hover::after { left: 125%; }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { color: var(--ink); }
.button-light { background: var(--white); color: var(--red); }
.button-light::before { background: var(--ink); }
.button-light:hover { color: white; }
.line-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: .55rem 0;
  border-bottom: 1px solid currentColor;
  font-size: .7rem;
  font-weight: 750;
}
.line-link i { font-style: normal; transition: transform .3s var(--ease-out); }
.line-link:hover i { transform: translate(.25rem, -.2rem); }
.line-link.ink { color: var(--red); }
.hero-proof { position: absolute; z-index: 5; bottom: 2.2rem; left: var(--pad); display: flex; align-items: center; gap: 1rem; }
.proof-avatars { display: flex; }
.proof-avatars span { display: grid; place-items: center; width: 36px; height: 36px; margin-left: -8px; border: 2px solid var(--ink); border-radius: 50%; background: var(--blue); font-size: .55rem; font-weight: 800; }
.proof-avatars span:first-child { margin-left: 0; background: var(--orange); color: var(--ink); }
.proof-avatars span:nth-child(2) { background: var(--red); }
.hero-proof p { margin: 0; color: rgba(255,255,255,.5); font-size: .68rem; line-height: 1.5; }
.hero-proof strong { color: rgba(255,255,255,.9); }
.hero-art {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: var(--pad);
  width: min(42vw, 640px);
  height: 74%;
  perspective: 1000px;
}
.portrait-shell {
  position: absolute;
  inset: 5% 3% 8% 8%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 48% 48% 4% 4%;
  background: rgba(255,255,255,.06);
  box-shadow: 0 50px 120px rgba(0,0,0,.35), inset 0 0 60px rgba(255,255,255,.06);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
}
.portrait-shell picture { display: block; width: 100%; height: 100%; }
.portrait-shell img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); filter: saturate(.94) contrast(1.03) brightness(.86); }
.portrait-shell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,20,27,.56), transparent 52%); }
.portrait-glow { position: absolute; z-index: 2; top: 6%; left: 20%; width: 58%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,200,106,.2), transparent 68%); }
.portrait-scan { position: absolute; z-index: 3; top: -30%; right: 0; left: 0; height: 28%; background: linear-gradient(transparent, rgba(255,255,255,.18), transparent); animation: scan calc(6s * var(--motion-duration-factor)) ease-in-out infinite; }
.hero-manifesto { position: absolute; z-index: 4; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: flex-end; margin: 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 2.8vw, 3.4rem); line-height: 1; text-align: right; }
.hero-manifesto strong { color: var(--gold); font-weight: 400; font-style: italic; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; animation: rotate calc(18s * var(--motion-duration-factor)) linear infinite; }
.orbit span { position: absolute; top: 50%; left: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.orbit-a { top: -4%; right: -7%; width: 80%; aspect-ratio: 1; }
.orbit-b { bottom: -5%; left: -8%; width: 58%; aspect-ratio: 1; animation-duration: calc(14s * var(--motion-duration-factor)); animation-direction: reverse; }
.scroll-cue { position: absolute; z-index: 5; right: 1.1rem; bottom: 2rem; display: flex; align-items: center; gap: .65rem; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.scroll-cue span { display: block; width: 54px; height: 1px; overflow: hidden; background: rgba(255,255,255,.2); }
.scroll-cue span::after { content: ""; display: block; width: 100%; height: 100%; transform: translateX(-100%); background: white; animation: lineTravel calc(2s * var(--motion-duration-factor)) ease-in-out infinite; }
.scroll-cue p { margin: 0; color: rgba(255,255,255,.5); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }

.marquee { overflow: hidden; background: var(--orange); color: var(--ink); }
.marquee-track { display: flex; align-items: center; width: max-content; padding: 1.05rem 0; animation: marquee calc(28s * var(--motion-duration-factor)) linear infinite; }
.marquee span { font-family: Georgia, serif; font-size: clamp(1rem, 1.4vw, 1.35rem); font-style: italic; white-space: nowrap; }
.marquee i { margin: 0 2.3rem; font-style: normal; font-size: .72rem; }

.section-pad { position: relative; padding: var(--section-space) var(--pad); }
main section[id] { scroll-margin-top: 5.5rem; }
.section-index { display: flex; align-items: center; gap: 1rem; margin-bottom: clamp(4rem, 8vw, 7rem); color: rgba(17,20,27,.56); }
.section-index span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-size: .58rem; font-weight: 750; }
.section-index p { margin: 0; font-size: .64rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.section-index.light { color: rgba(255,255,255,.54); }
.reveal-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.06em;
}
.reveal-title .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.reveal-title .word-inner { display: inline-block; }
.reveal-title em { color: var(--orange); font-weight: 400; }
.light-text { color: var(--white); }
.story { overflow: hidden; background: var(--paper); }
.story-grid { display: grid; grid-template-columns: 1.15fr .65fr; gap: clamp(3rem, 10vw, 12rem); align-items: start; }
.eyebrow { color: var(--red); }
.story-heading h2 { max-width: 920px; }
.story-copy { padding-top: 4rem; }
.story-copy p { margin: 0 0 1.5rem; color: rgba(17,20,27,.58); line-height: 1.75; }
.story-copy .lead { color: var(--ink); font-family: Georgia, serif; font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.45; }
.story-copy .line-link { margin-top: 1rem; }
.story-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(76vw, 900px);
  aspect-ratio: 1;
  margin: clamp(6rem, 12vw, 12rem) auto;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}
.story-orbit::before, .story-orbit::after { content: ""; position: absolute; border: 1px solid var(--line-dark); border-radius: inherit; }
.story-orbit::before { inset: 13%; }
.story-orbit::after { inset: 29%; }
#story-lottie { position: absolute; z-index: 1; inset: 13%; }
.story-orbit > p { position: relative; z-index: 3; margin: 0; font-family: Georgia, serif; font-size: clamp(2.1rem, 4vw, 4.8rem); line-height: 1.03; text-align: center; }
.story-orbit > p em { color: var(--red); font-weight: 400; }
.orbit-label { position: absolute; z-index: 4; padding: .65rem 1rem; border: 1px solid var(--line-dark); border-radius: 999px; background: rgba(245,240,232,.72); font-size: .65rem; font-weight: 750; backdrop-filter: blur(10px); }
.orbit-label-one { top: 13%; left: 5%; animation: labelFloat calc(5.8s * var(--motion-duration-factor)) ease-in-out infinite; }
.orbit-label-two { top: 46%; right: -2%; animation: labelFloat calc(6.6s * var(--motion-duration-factor)) -1.7s ease-in-out infinite reverse; }
.orbit-label-three { bottom: 8%; left: 22%; animation: labelFloat calc(5.2s * var(--motion-duration-factor)) -2.8s ease-in-out infinite; }
.story-quote { display: grid; grid-template-columns: 100px 1fr auto; align-items: end; gap: 2rem; margin: 0; padding-top: 3rem; border-top: 1px solid var(--line-dark); }
.story-quote > span { color: var(--orange); font-family: Georgia, serif; font-size: 8rem; line-height: .5; }
.story-quote p { max-width: 900px; margin: 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 3.3vw, 3.8rem); line-height: 1.15; }
.story-quote cite { color: rgba(17,20,27,.5); font-size: .62rem; font-style: normal; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }

.services { position: relative; min-height: 100vh; overflow: hidden; background: var(--ink); color: var(--white); }
.services-sticky { min-height: 100vh; }
.services-intro { position: absolute; z-index: 5; top: 0; left: 0; width: 34vw; min-width: 390px; height: 100vh; padding: 8rem 3rem 3rem var(--pad); background: linear-gradient(90deg, var(--ink) 82%, transparent); }
.services-intro .section-index { margin-bottom: 4rem; }
.services-intro h2 { font-size: clamp(3rem, 4.9vw, 5.8rem); line-height: .94; }
.services-intro > p { max-width: 24rem; margin: 2rem 0 0; color: rgba(255,255,255,.54); line-height: 1.7; }
.services-progress { position: absolute; right: 3rem; bottom: 3rem; left: var(--pad); height: 2px; overflow: hidden; background: rgba(255,255,255,.12); }
.services-progress span { display: block; width: 100%; height: 100%; transform: scaleX(.02); transform-origin: left; background: var(--orange); }
.services-intro .services-hint { display: none; align-items: center; gap: .6rem; margin-top: 1rem; color: rgba(255,255,255,.72); font-size: .64rem; font-weight: 700; letter-spacing: .05em; }
.services-viewport { position: relative; z-index: 3; display: flex; align-items: center; min-height: 100vh; padding-left: 34vw; overflow: hidden; }
.services-track { display: flex; gap: 2rem; width: max-content; padding: 5rem 5vw 5rem 5vw; will-change: transform; }
.service-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(54vw, 720px);
  min-width: 620px;
  min-height: min(72vh, 760px);
  padding: clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 2.2rem;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025));
  box-shadow: 0 50px 120px rgba(0,0,0,.26);
  transform-style: preserve-3d;
  outline: none;
  transition: border-color .4s ease, box-shadow .5s var(--ease-out);
}
.service-panel:hover { border-color: rgba(255,255,255,.3); box-shadow: 0 62px 140px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.1); }
.service-panel::before { content: ""; position: absolute; inset: 0; opacity: .42; background: radial-gradient(circle 260px at var(--pointer-x, 78%) var(--pointer-y, 20%), var(--panel-accent), transparent 72%); }
.service-panel:focus-visible { box-shadow: 0 0 0 3px var(--orange), 0 50px 120px rgba(0,0,0,.26); }
.service-career { --panel-accent: rgba(245,150,44,.45); }
.service-academic { --panel-accent: rgba(217,47,39,.45); }
.service-counselling { --panel-accent: rgba(49,95,114,.7); }
.service-research { --panel-accent: rgba(145,153,159,.45); }
.panel-no { position: relative; z-index: 2; color: rgba(255,255,255,.48); font-size: .62rem; font-weight: 750; letter-spacing: .15em; }
.service-art { position: absolute; z-index: 1; top: 5%; right: 2%; width: 47%; opacity: .94; transform: translateZ(35px); }
.service-art svg { width: 100%; overflow: visible; }
.soft-fill { fill: rgba(255,255,255,.055); }
.draw-path, .accent-path, .white-path { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.draw-path { stroke: rgba(255,255,255,.55); stroke-width: 2; }
.accent-path { stroke: var(--orange); stroke-width: 3; }
.white-path { stroke: white; stroke-width: 3; }
.accent-fill { fill: var(--orange); }
.solid-fill { fill: white; }
.panel-copy { position: relative; z-index: 2; align-self: end; max-width: 80%; transform: translateZ(40px); }
.service-tag { margin: 0 0 1.1rem; color: var(--orange); font-size: .62rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.panel-copy h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(2.8rem, 4vw, 5rem); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.panel-copy > p:not(.service-tag) { max-width: 34rem; margin: 1.25rem 0 1.8rem; color: rgba(255,255,255,.62); line-height: 1.6; }
.panel-copy ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1.5rem; margin: 0; padding: 1.3rem 0 0; border-top: 1px solid rgba(255,255,255,.15); list-style: none; }
.panel-copy li { position: relative; padding-left: 1.1rem; color: rgba(255,255,255,.74); font-size: .7rem; line-height: 1.5; }
.panel-copy li::before { content: "↗"; position: absolute; left: 0; color: var(--orange); }
.panel-link { display: inline-flex; align-items: center; gap: .75rem; width: fit-content; margin-top: 1.5rem; padding-bottom: .35rem; border-bottom: 1px solid rgba(255,255,255,.42); color: white; font-size: .68rem; font-weight: 760; }
.panel-link i { font-style: normal; transition: transform .3s var(--ease-out); }
.panel-link:hover i { transform: translate(.2rem, -.2rem); }
.panel-glow { position: absolute; right: -15%; bottom: -25%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--panel-accent), transparent 68%); opacity: .25; transition: opacity .4s ease, transform .5s var(--ease-out); }
.service-panel:hover .panel-glow { opacity: .48; transform: scale(1.15); }

.values { overflow: hidden; background: var(--paper); }
.values-heading { display: grid; grid-template-columns: .45fr 1fr; gap: 3rem; align-items: start; }
.values-heading h2 { max-width: 930px; }
.values-list { margin-top: clamp(5rem, 10vw, 10rem); border-top: 1px solid var(--line-dark); }
.value-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 132px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  transition: color .35s ease;
}
.value-row::before { content: ""; position: absolute; z-index: 0; inset: 0; transform: scaleY(0); transform-origin: bottom; background: var(--red); transition: transform .45s var(--ease-out); }
.value-row > * { position: relative; z-index: 1; }
.value-row:hover::before { transform: scaleY(1); }
.value-row:hover { color: white; }
.value-row > span { color: var(--orange); font-size: .65rem; font-weight: 750; }
.value-row h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.7rem, 3vw, 3.2rem); font-weight: 400; }
.value-row p { margin: 0; color: rgba(17,20,27,.55); font-size: .85rem; line-height: 1.6; transition: color .35s; }
.value-row:hover p { color: rgba(255,255,255,.68); }
.value-row i { font-style: normal; transition: transform .4s var(--ease-out); }
.value-row:hover i { transform: rotate(45deg); }

.method { overflow: hidden; background: var(--blue-deep); color: white; }
.method-light { position: absolute; top: -25vw; right: -10vw; width: 65vw; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(100,178,207,.28), transparent 64%); filter: blur(20px); animation: methodLight calc(12s * var(--motion-duration-factor)) ease-in-out infinite alternate; }
.method-heading { display: grid; grid-template-columns: .42fr 1fr; gap: 3rem; }
.method-heading h2 { max-width: 980px; }
.method-heading .eyebrow { color: var(--gold); }
.method-steps { position: relative; margin-top: clamp(6rem, 11vw, 11rem); }
.method-line { position: absolute; top: 0; bottom: 0; left: 24px; width: 1px; overflow: hidden; background: rgba(255,255,255,.14); }
.method-line span { display: block; width: 100%; height: 100%; transform: scaleY(0); transform-origin: top; background: var(--gold); }
.method-step { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: clamp(2rem, 7vw, 8rem); min-height: 210px; padding: 0 0 5rem; }
.method-step > span { position: relative; z-index: 2; display: grid; place-items: center; align-self: start; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: var(--blue-deep); color: var(--gold); font-size: .62rem; font-weight: 750; }
.method-step > div { display: grid; grid-template-columns: 1fr .7fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.method-step h3 { max-width: 720px; margin: 0; font-family: Georgia, serif; font-size: clamp(2.5rem, 5vw, 5.6rem); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.method-step p { align-self: end; max-width: 420px; margin: 0; color: rgba(255,255,255,.6); line-height: 1.7; }
.delivery-band { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1.7rem 0; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.delivery-band > p { margin: 0; font-family: Georgia, serif; font-size: 1.25rem; }
.delivery-band > div { display: flex; flex-wrap: wrap; gap: .6rem; }
.delivery-band span { padding: .65rem .9rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.75); font-size: .62rem; }

.contact { min-height: 100svh; overflow: hidden; background: var(--red); color: white; }
.contact-orb { position: absolute; top: -30vw; right: -14vw; width: 75vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: inset 0 0 160px rgba(255,200,106,.15); }
.contact-orb::before, .contact-orb::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.contact-orb::before { inset: 13%; }
.contact-orb::after { inset: 30%; }
.contact-stars span { position: absolute; color: var(--gold); animation: starPulse calc(3s * var(--motion-duration-factor)) ease-in-out infinite; }
.contact-stars span:first-child { top: 16%; right: 12%; font-size: 3rem; }
.contact-stars span:nth-child(2) { top: 48%; right: 38%; font-size: 1rem; animation-delay: -1s; }
.contact-stars span:nth-child(3) { bottom: 14%; left: 46%; font-size: 2rem; animation-delay: -2s; }
.contact-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(4rem, 10vw, 12rem); align-items: end; }
.contact-grid h2 { max-width: 900px; }
.contact-grid .eyebrow { color: var(--gold); }
.contact-intro { max-width: 640px; margin: 2rem 0; color: rgba(255,255,255,.68); font-size: 1.05rem; line-height: 1.7; }
.contact-assurances { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.25rem; }
.contact-assurances span { padding: .55rem .72rem; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; color: rgba(255,255,255,.74); font-size: .58rem; letter-spacing: .03em; }
.contact-details { border-top: 1px solid rgba(255,255,255,.28); }
.contact-details > * { position: relative; display: block; padding: 1.5rem 2.2rem 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.contact-details span { display: block; margin-bottom: .65rem; color: rgba(255,255,255,.54); font-size: .6rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.contact-details strong { display: block; font-family: Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.8rem); font-weight: 400; line-height: 1.35; overflow-wrap: anywhere; }
.contact-details i { position: absolute; top: 1.5rem; right: 0; font-style: normal; transition: transform .35s var(--ease-out); }
.contact-details a:hover i { transform: rotate(45deg); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 1.6rem var(--pad); background: var(--ink); color: rgba(255,255,255,.58); }
.site-footer .brand { color: white; }
.site-footer .brand img { width: 42px; height: 42px; }
.site-footer .brand strong { font-size: .85rem; }
.site-footer .brand small { max-width: 230px; }
.site-footer > p { margin: 0; font-size: .62rem; text-align: center; }
.site-footer > .line-link { justify-self: end; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,150,44,.5); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
@keyframes auroraDrift { to { transform: translate(12%, 8%) scale(1.12); } }
@keyframes cloudMove { from { transform: translateX(0); } to { transform: translateX(160vw); } }
@keyframes cloudMoveReverse { from { transform: translateX(0); } to { transform: translateX(-160vw); } }
@keyframes scan { 0%, 10% { transform: translateY(0); opacity: 0; } 35% { opacity: .8; } 70%, 100% { transform: translateY(520%); opacity: 0; } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes lineTravel { 50%, 100% { transform: translateX(100%); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes starPulse { 50% { transform: scale(.65) rotate(45deg); opacity: .45; } }
@keyframes heroMorph { 50% { transform: translate3d(3%, -2%, 0) scale(1.12) rotate(1deg); } 100% { transform: translate3d(-2%, 3%, 0) scale(1.07) rotate(-1deg); } }
@keyframes ribbonDrift { to { translate: 7vw -2vh; opacity: .56; } }
@keyframes labelFloat { 50% { transform: translate3d(0, -12px, 0) rotate(-1.5deg); } }
@keyframes methodLight { to { transform: translate3d(-8%, 10%, 0) scale(1.15); opacity: .72; } }
@keyframes loaderMark { 50% { transform: scale(.91) rotate(-2deg); filter: drop-shadow(0 0 18px rgba(245,150,44,.4)); } }
@keyframes loaderBreathe { 50% { transform: scale(1.06); opacity: .6; } }
@keyframes loaderProgress { 0% { transform: scaleX(0); } 65% { transform: scaleX(.82); } 100% { transform: scaleX(1); } }
@keyframes loaderExit { 0% { opacity: 1; clip-path: inset(0); } 100% { opacity: 0; clip-path: inset(0 0 100% 0); } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: .45rem; }
  .desktop-nav, .header-cta { display: none; }
  .header-actions { grid-column: 2; gap: .35rem; }
  .menu-toggle { display: flex; flex-direction: column; gap: 6px; width: 46px; height: 46px; align-items: center; justify-content: center; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; }
  .site-header > .brand, .header-actions, .menu-toggle { position: relative; z-index: 2; }
  .menu-toggle span { display: block; width: 20px; height: 1px; background: currentColor; transition: transform .35s var(--ease-out); }
  .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-nav { position: fixed; z-index: 1; top: -1rem; right: auto; left: calc(-1 * var(--pad)); display: flex; visibility: hidden; flex-direction: column; justify-content: center; width: 100vw; height: 100svh; padding: 7rem var(--pad) 3rem; transform: translateY(-105%); background: rgba(17,20,27,.99); color: white; pointer-events: none; transition: transform .5s var(--ease-in-out), visibility 0s linear .5s; }
  .mobile-nav.is-open { visibility: visible; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
  .mobile-nav a { display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.14); font-family: Georgia, serif; font-size: clamp(2.5rem, 8vw, 5rem); }
  .mobile-nav a span { color: var(--orange); font-family: Inter, sans-serif; font-size: .6rem; }
  .mobile-nav .mobile-nav-cta { margin-top: 1rem; border: 0; color: var(--gold); font-family: Inter, sans-serif; font-size: .8rem; font-weight: 760; }
  .hero-copy { width: 64%; }
  .hero-art { right: -4vw; width: 49vw; opacity: .78; }
  .story-grid { grid-template-columns: 1fr .7fr; gap: 4rem; }
  .services-intro { position: relative; width: 100%; min-width: 0; height: auto; padding: 7rem var(--pad) 2rem; background: var(--ink); }
  .services-intro h2 { max-width: 750px; }
  .services-progress { position: relative; right: auto; bottom: auto; left: auto; margin-top: 3rem; }
  .services-intro .services-hint { display: flex; }
  .services-viewport { min-height: auto; padding-left: 0; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .services-viewport::-webkit-scrollbar { display: none; }
  .services-track { padding-left: var(--pad); will-change: auto; }
  .service-panel { width: 82vw; min-width: 680px; min-height: 720px; scroll-snap-align: center; }
}

@media (max-width: 760px) {
  :root { --pad: 1.2rem; --section-space: 6rem; }
  .cursor-dot, .cursor-ring { display: none; }
  .site-header { top: .65rem; min-height: 62px; padding: .35rem .45rem .35rem .7rem; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: .84rem; }
  .brand small { display: none; }
  .motion-toggle { width: 42px; min-height: 42px; justify-content: center; padding: 0; }
  .motion-settings-toggle { width: 42px; height: 42px; }
  .motion-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .motion-icon { width: 27px; }
  .motion-toggle[aria-pressed="true"] .motion-icon i { transform: translateX(9px); }
  .menu-toggle { width: 42px; height: 42px; }
  .mobile-nav { top: -.65rem; }
  .hero { min-height: 900px; }
  .hero-copy { justify-content: flex-start; width: 100%; min-height: 0; padding: 8.8rem var(--pad) 0; }
  .hero-kicker { max-width: 280px; font-size: .57rem; line-height: 1.6; }
  .hero-title { font-size: clamp(4.2rem, 19vw, 6.4rem); }
  .hero-intro { max-width: 92%; font-size: .98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .button { min-width: 215px; }
  .hero-art { top: auto; right: -7%; bottom: 4%; width: 82vw; height: 44%; opacity: .86; }
  .portrait-shell { inset: 0 0 10% 7%; }
  .hero-manifesto { right: 4%; bottom: 1%; font-size: 1.8rem; }
  .orbit-a { width: 90%; }
  .hero-proof { bottom: 1.6rem; left: var(--pad); transform: translateY(0); }
  .hero-proof { display: none; }
  .scroll-cue { display: none; }
  .marquee i { margin: 0 1.4rem; }
  .section-index { margin-bottom: 3.5rem; }
  .reveal-title { font-size: clamp(3rem, 14vw, 4.6rem); }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-copy { padding-top: 0; }
  .story-orbit { width: 108vw; margin-left: -8vw; }
  .story-orbit > p { font-size: 1.9rem; }
  .orbit-label { font-size: .55rem; }
  .story-quote { grid-template-columns: 52px 1fr; gap: 1rem; }
  .story-quote > span { font-size: 5rem; }
  .story-quote cite { grid-column: 2; }
  .services-intro { padding-top: 6rem; }
  .services-intro h2 { font-size: 3.2rem; }
  .services-track { gap: 1rem; padding: 2rem var(--pad) 5rem; }
  .service-panel { width: 86vw; min-width: 86vw; min-height: 670px; padding: 1.4rem; border-radius: 1.6rem; }
  .service-art { top: 7%; right: -5%; width: 62%; opacity: .62; }
  .panel-copy { max-width: 100%; }
  .panel-copy h3 { font-size: 2.75rem; }
  .panel-copy ul { grid-template-columns: 1fr; }
  .values-heading, .method-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-list { margin-top: 4rem; }
  .value-row { grid-template-columns: 44px 1fr auto; gap: .7rem; min-height: 118px; }
  .value-row p { display: none; }
  .value-row h3 { font-size: 2rem; }
  .method-step { gap: 1.4rem; }
  .method-step > div { grid-template-columns: 1fr; gap: 1.4rem; }
  .method-step h3 { font-size: 2.7rem; }
  .delivery-band { align-items: flex-start; flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; gap: 5rem; }
  .contact-assurances { gap: .45rem; }
  .contact-orb { top: 4%; right: -65%; width: 140vw; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer > p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (max-width: 520px) {
  .experience-panel { top: .5rem; right: .5rem; bottom: .5rem; width: calc(100vw - 1rem); border-radius: 1.4rem; }
  .experience-presets { grid-template-columns: 1fr; }
  .experience-presets button { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; min-height: 64px; }
  .experience-presets strong { margin: 0; }
  .experience-options { grid-template-columns: 1fr; }
  .loader-copy { bottom: 16vh; }
}

@media (hover: none) {
  .service-panel { touch-action: pan-x pan-y; }
  .button:active, .panel-link:active, .value-row:active { transform: scale(.985); }
}

.fallback-motion .reveal-ready { opacity: 0; transform: translateY(28px); transition: opacity .68s ease, transform .68s var(--ease-out); }
.fallback-motion .reveal-ready.is-visible { opacity: 1; transform: none; }

html[data-motion="balanced"] { --motion-duration-factor: 1.22; }
html[data-motion="balanced"] .cloud { opacity: .09; filter: blur(24px); }
html[data-motion="balanced"] #three-canvas { opacity: .5; }
html[data-motion="balanced"] .noise { opacity: .027; }
html[data-quality="standard"] .cloud { filter: blur(24px); }
html[data-quality="economy"] .cloud { filter: blur(18px); }
html[data-quality="economy"] .noise { opacity: .02; }
html[data-quality="economy"] .method-light { filter: blur(14px); }

html[data-ambient-motion="off"] .aurora,
html[data-ambient-motion="off"] .cloud,
html[data-ambient-motion="off"] .light-ribbon,
html[data-ambient-motion="off"] .hero::before,
html[data-ambient-motion="off"] .portrait-scan,
html[data-ambient-motion="off"] .orbit,
html[data-ambient-motion="off"] .marquee-track,
html[data-ambient-motion="off"] .orbit-label,
html[data-ambient-motion="off"] .method-light,
html[data-ambient-motion="off"] .contact-stars span { animation-play-state: paused; }
html[data-particles="off"] #three-canvas { display: none !important; }
html[data-depth="off"] .cursor-dot,
html[data-depth="off"] .cursor-ring,
html[data-depth="off"] .cursor-glow { display: none !important; }
html[data-lottie="off"] #story-lottie { display: none !important; }

html[data-motion="off"] .story,
html[data-motion="off"] .values,
html[data-motion="off"] .method,
html[data-motion="off"] .contact { content-visibility: auto; contain-intrinsic-size: auto 950px; }

@media (min-width: 761px) {
  html[data-motion="off"] .services { overflow: visible; }
  html[data-motion="off"] .services-intro { position: relative; width: 100%; min-width: 0; height: auto; padding: 7rem var(--pad) 2rem; background: var(--ink); }
  html[data-motion="off"] .services-progress { position: relative; right: auto; bottom: auto; left: auto; margin-top: 3rem; }
  html[data-motion="off"] .services-viewport { min-height: auto; padding-left: 0; overflow: visible; }
  html[data-motion="off"] .services-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; padding: 2rem var(--pad) 7rem; will-change: auto; }
  html[data-motion="off"] .service-panel { width: 100%; min-width: 0; min-height: 680px; transform: none !important; }
}

html[data-motion="off"] { scroll-behavior: auto; }
html[data-motion="off"] *,
html[data-motion="off"] *::before,
html[data-motion="off"] *::after {
  animation: none !important;
  scroll-behavior: auto !important;
  transition-duration: .01ms !important;
  transition-delay: 0ms !important;
}
html[data-motion="off"] .loading-screen,
html[data-motion="off"] .page-transition,
html[data-motion="off"] .portrait-scan,
html[data-motion="off"] .orbit span,
html[data-motion="off"] .contact-stars,
html[data-motion="off"] .cursor-dot,
html[data-motion="off"] .cursor-ring,
html[data-motion="off"] .cursor-glow,
html[data-motion="off"] .cloud,
html[data-motion="off"] .light-ribbon,
html[data-motion="off"] #three-canvas { display: none !important; }
html[data-motion="off"] .marquee-track { width: 100%; justify-content: center; transform: none !important; }
html[data-motion="off"] .marquee-track > :nth-child(n+9) { display: none; }

body.is-page-paused .aurora,
body.is-page-paused .cloud,
body.is-page-paused .light-ribbon,
body.is-page-paused .portrait-scan,
body.is-page-paused .orbit,
body.is-page-paused .marquee-track,
body.is-page-paused .orbit-label,
body.is-page-paused .method-light,
body.is-page-paused .contact-stars span { animation-play-state: paused !important; }

@media (max-width: 760px) {
  html[data-motion="off"] .services-viewport { overflow: visible; }
  html[data-motion="off"] .services-track { display: grid; grid-template-columns: 1fr; width: 100%; padding-right: var(--pad); }
  html[data-motion="off"] .service-panel { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html[data-motion-preference="system"] { scroll-behavior: auto; }
  html[data-motion-preference="system"] *,
  html[data-motion-preference="system"] *::before,
  html[data-motion-preference="system"] *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  html[data-motion-preference="system"] .hero-line > span,
  html[data-motion-preference="system"] .reveal-title .word-inner { transform: none !important; }
}
