:root {
  --forest: #C4A47C; /* Champagne gold */
  --forest-deep: #1A1715; /* Premium espresso ink */
  --forest-dark: #0D0C0B; /* Soft black */
  --cream: #F3EEE4; /* Warm ivory */
  --paper: #FBF7EF; /* Premium parchment card */
  --paper-soft: #ECE4D7; /* Subtle alternate band */
  --bronze: #B87945; /* Copper accent */
  --bronze-dark: #8F6840; /* Antique gold text */
  --sage: #2A2521; /* Warm graphite */
  --sage-pale: #3A332D; /* Soft graphite */
  --charcoal: #292522; /* Main body text */
  --muted: #706A63; /* Muted body text */
  --line: rgba(41, 37, 34, 0.12); /* Subtle warm border */
  --shadow: 0 22px 55px rgba(31, 27, 24, 0.13); /* Premium soft shadow */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --accent: "Poppins", Arial, sans-serif;
  --radius: 22px;
  --container: min(1240px, calc(100% - 40px));
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.22, .8, .26, .99);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font: 400 16px/1.7 var(--sans);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .055;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.8) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(41,37,34,.55) 0 1px, transparent 1px);
  background-size: 38px 38px, 57px 57px;
  mix-blend-mode: multiply;
}
body.menu-open { overflow: hidden; }
body.is-loading { overflow: hidden; }
body.is-loading .site-header,
body.is-loading main,
body.is-loading footer { opacity: 0; }
body.loader-revealing .site-header,
body.loader-revealing main,
body.loader-revealing footer {
  opacity: 1;
  transition: opacity .38s ease;
}
body.hero-arriving .site-header {
  animation: header-arrive .95s var(--ease-out-expo) both;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.svg-draw {
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  transition: stroke-dashoffset 1.35s var(--ease-out-expo), filter .4s ease;
}
.svg-draw.svg-in-view {
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 7px rgba(196,164,124,.22));
}
.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 9999; padding: 12px 18px; background: var(--forest-dark); color: white; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-loader {
  --loader-pearl: #F4F0E8;
  --loader-soft: rgba(244, 240, 232, .72);
  --loader-faint: rgba(244, 240, 232, .12);
  --loader-blue: rgba(74, 168, 255, .1);
  --loader-gold: #C4A47C;
  --loader-bronze: #B87945;
  --loader-ink: #080706;
  --loader-espresso: #0D0C0B;
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  color: var(--loader-pearl);
  background:
    radial-gradient(circle at 18% 16%, rgba(196,164,124,.16), transparent 34%),
    radial-gradient(circle at 78% 36%, rgba(184,121,69,.12), transparent 32%),
    radial-gradient(circle at 50% 54%, rgba(244,240,232,.035), transparent 42%),
    linear-gradient(180deg, #080706 0%, #080706 70%, #0D0C0B 100%);
  overflow: hidden;
  perspective: 1200px;
  transition: opacity .7s ease, visibility .7s ease;
}
@property --ring-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.site-loader::before,
.site-loader::after,
.loader-ambient {
  content: "";
  position: absolute;
  pointer-events: none;
}
.site-loader::before {
  inset: 12% 14%;
  background:
    radial-gradient(circle at 50% 42%, rgba(196,164,124,.18), rgba(196,164,124,.04) 36%, transparent 68%),
    radial-gradient(circle at 43% 54%, rgba(184,121,69,.13), rgba(184,121,69,.03) 34%, transparent 58%),
    radial-gradient(circle at 58% 45%, rgba(244,240,232,.028), transparent 42%);
  filter: blur(34px);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(0,0,0);
  transition: opacity .9s ease;
}
.site-loader::after {
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(244,240,232,.028), transparent 36%),
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(8,7,6,.24) 64%, rgba(8,7,6,.82) 100%),
    repeating-radial-gradient(circle at 50% 50%, rgba(196,164,124,.018) 0 1px, transparent 1px 9px);
  opacity: 0;
  transition: opacity 1.1s ease;
}
.loader-ambient {
  width: min(72vw, 780px);
  height: min(72vw, 780px);
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(196,164,124,.12);
  box-shadow: inset 0 0 90px rgba(196,164,124,.09), 0 0 120px rgba(184,121,69,.07);
  opacity: 0;
  transform: translate(-50%, -50%) rotateX(62deg) translateZ(0);
  transition: opacity 1.15s ease;
}
.loader-ribbons {
  inset: -18%;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: opacity .8s ease;
}
.loader-ribbons span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120vw;
  height: 12vh;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(196,164,124,.08), rgba(244,240,232,.12), rgba(184,121,69,.08), transparent);
  box-shadow: 0 0 70px rgba(196,164,124,.12);
  transform: translate(-50%, -50%) rotate(var(--r, -18deg)) translateX(-32vw);
  will-change: transform, opacity;
}
.loader-ribbons span:nth-child(2) {
  --r: 22deg;
  height: 8vh;
  background: linear-gradient(90deg, transparent, rgba(184,121,69,.1), rgba(244,240,232,.09), transparent);
  animation-delay: .2s;
}
.loader-ribbons span:nth-child(3) {
  --r: -4deg;
  height: 5vh;
  opacity: .68;
  background: linear-gradient(90deg, transparent, rgba(196,164,124,.14), rgba(244,240,232,.08), transparent);
  animation-delay: .45s;
}
.site-loader.loader-active::before { opacity: .74; }
.site-loader.loader-active::after { opacity: .42; }
.site-loader.loader-active .loader-ambient { opacity: 1; }
.site-loader.loader-active .loader-ribbons { opacity: 0; }
.site-loader.loader-active::before { animation: loader-aurora 3.8s ease-in-out both; }
.site-loader.loader-active::after { animation: loader-sheen 3.8s ease-in-out both; }
.site-loader.loader-active .loader-ambient { animation: loader-halo 4s ease-in-out both; }
.site-loader.loader-active .loader-ribbons span { animation: none; }
.loader-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.loader-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size, 2px);
  height: var(--size, 2px);
  border-radius: 50%;
  background: rgba(244,240,232,.64);
  box-shadow: 0 0 8px rgba(196,164,124,.22);
  opacity: 0;
  transform: translate3d(0,0,0) scale(var(--p-scale, 1));
  animation: particle-drift 8s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.loader-stage {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(520px, 88vw);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transform-origin: 50% 50%;
}
.loader-stage::before,
.loader-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}
.loader-stage::before {
  inset: 4%;
  border: 1px solid rgba(196,164,124,.13);
  box-shadow: 0 0 130px rgba(196,164,124,.2), inset 0 0 80px rgba(184,121,69,.06);
}
.loader-stage::after {
  width: 54%;
  height: 54%;
  background:
    radial-gradient(circle, rgba(244,240,232,.18), rgba(196,164,124,.14) 32%, rgba(184,121,69,.08) 50%, transparent 74%);
  filter: blur(10px);
}
.site-loader.loader-active .loader-stage::before { animation: stage-lens 3.6s ease-in-out both; }
.site-loader.loader-active .loader-stage::after { animation: stage-bloom 3.6s ease-in-out both; }
.loader-origin {
  position: absolute;
  z-index: 6;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--loader-pearl);
  box-shadow: 0 0 16px rgba(244,240,232,.78), 0 0 42px rgba(196,164,124,.46);
  opacity: 0;
  transform: translate3d(0,0,0) scale(.5);
  will-change: transform, opacity;
}
.precision-ring {
  --ring-progress: 0deg;
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(0,0,0) scale(.72) rotate(-90deg);
  will-change: transform, opacity;
}
.precision-ring::before,
.precision-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}
.precision-ring::before {
  border: 1px solid rgba(247,241,232,.14);
  box-shadow: inset 0 0 42px rgba(196,164,124,.08), 0 0 95px rgba(184,121,69,.1);
}
.precision-ring::before {
  background:
    linear-gradient(90deg, transparent 45%, rgba(247,241,232,.2), transparent 55%),
    radial-gradient(circle, transparent 59%, rgba(196,164,124,.1) 64%, transparent 69%);
  background-size: 240% 100%, 100% 100%;
}
.precision-ring::after {
  inset: 13%;
  border: 1px solid rgba(247,241,232,.055);
  box-shadow: inset 0 0 38px rgba(247,241,232,.025);
}
.ring-thread {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(from -90deg, rgba(244,240,232,.98) var(--ring-progress, 0deg), rgba(196,164,124,.78) calc(var(--ring-progress, 0deg) + 2deg), rgba(184,121,69,.35) calc(var(--ring-progress, 0deg) + 10deg), transparent calc(var(--ring-progress, 0deg) + 20deg));
  filter: drop-shadow(0 0 8px rgba(196,164,124,.28));
  mask: radial-gradient(circle, transparent 62%, #000 63%, #000 64.5%, transparent 65.5%);
}
.ring-thread::after {
  content: "";
  position: absolute;
  inset: -7%;
  border-radius: inherit;
  background: conic-gradient(from -90deg, transparent calc(var(--ring-progress, 0deg) - 18deg), rgba(244,240,232,.9) var(--ring-progress, 0deg), rgba(196,164,124,.4) calc(var(--ring-progress, 0deg) + 8deg), transparent calc(var(--ring-progress, 0deg) + 20deg));
  filter: blur(4px);
  opacity: .72;
  mask: radial-gradient(circle, transparent 58%, #000 61%, #000 66%, transparent 69%);
}
.ring-particles {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.site-loader.loader-active .ring-particles { animation: ring-orbit 4.5s linear infinite; }
.site-loader.loader-branding .ring-particles { animation: none; }
.ring-particles span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size, 2px);
  height: var(--size, 2px);
  border-radius: 50%;
  background: rgba(244,240,232,.96);
  box-shadow: 0 0 8px rgba(244,240,232,.46), 0 0 18px rgba(196,164,124,.28);
  opacity: 0;
  transform: rotate(var(--angle)) translateY(var(--radius)) translate(-50%, -50%) scale(var(--dot-scale, .4));
  transform-origin: 0 0;
  will-change: transform, opacity;
}
.loader-words {
  position: absolute;
  z-index: 7;
  display: grid;
  place-items: center;
  left: 50%;
  top: 50%;
  width: min(560px, 84vw);
  min-height: 84px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.loader-words span {
  grid-area: 1 / 1;
  color: var(--loader-pearl);
  font: 500 clamp(28px, 5.2vw, 54px)/1.05 var(--serif);
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.98);
  text-shadow: 0 0 26px rgba(196,164,124,.28), 0 0 38px rgba(184,121,69,.12);
  will-change: transform, opacity;
}
.loader-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: min(500px, 88vw);
  color: var(--loader-pearl);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);
  will-change: transform, opacity;
}
.loader-mark p {
  margin: 0;
  color: var(--loader-pearl);
  font: 600 clamp(29px, 4.8vw, 48px)/1.05 var(--serif);
  text-shadow: 0 0 24px rgba(196,164,124,.18), 0 0 28px rgba(184,121,69,.12);
}
.loader-mark span {
  display: block;
  margin-top: 13px;
  color: rgba(244,240,232,.64);
  font: 500 11px/1.4 var(--accent);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.loader-identity {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(66px, 10vw, 96px));
  z-index: 5;
  width: min(420px, 86vw);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, 16px) scale(.98);
}
.loader-identity strong {
  display: block;
  color: rgba(244,240,232,.82);
  font: 500 13px/1 var(--sans);
  letter-spacing: .11em;
}
.loader-reveal-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244,240,232,.9);
  box-shadow: 0 0 34px rgba(244,240,232,.18), 0 0 90px rgba(196,164,124,.26);
  opacity: 0;
  transform: translate3d(-50%,-50%,0) scale(.6);
  will-change: transform, opacity;
}
.loader-reveal-ring::before,
.loader-reveal-ring::after {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: inherit;
  pointer-events: none;
}
.loader-reveal-ring::before {
  background:
    radial-gradient(circle, transparent 48%, rgba(244,240,232,.18) 51%, rgba(196,164,124,.08) 58%, transparent 68%);
  opacity: .74;
}
.loader-reveal-ring::after {
  inset: -46%;
  background:
    radial-gradient(circle, rgba(244,240,232,.18), rgba(196,164,124,.1) 24%, rgba(184,121,69,.045) 42%, transparent 66%);
  opacity: .54;
}
.site-loader.loader-active:not(.has-gsap) .loader-origin {
  animation: fallback-origin 1.18s cubic-bezier(.16,1,.3,1) .16s both;
}
.site-loader.loader-active:not(.has-gsap) .precision-ring {
  animation: fallback-ring 2.85s cubic-bezier(.16,1,.3,1) .72s both;
}
.site-loader.loader-active:not(.has-gsap) .ring-thread {
  animation: fallback-progress 1.85s cubic-bezier(.65,0,.35,1) .9s both;
}
.site-loader.loader-active:not(.has-gsap) .ring-particles span {
  animation: fallback-dot 1.28s cubic-bezier(.16,1,.3,1) calc(.86s + (var(--i, 0) * .004s)) both;
}
.site-loader.loader-active:not(.has-gsap) .loader-words span:nth-child(1) {
  animation: fallback-word .62s ease 1.18s both, fallback-word-out .4s ease 1.74s forwards;
}
.site-loader.loader-active:not(.has-gsap) .loader-words span:nth-child(2) {
  animation: fallback-word .62s ease 1.8s both, fallback-word-out .4s ease 2.36s forwards;
}
.site-loader.loader-active:not(.has-gsap) .loader-words span:nth-child(3) {
  animation: fallback-word .62s ease 2.42s both, fallback-word-out .4s ease 2.98s forwards;
}
.site-loader.loader-active:not(.has-gsap) .loader-mark {
  animation: fallback-mark .78s cubic-bezier(.16,1,.3,1) 3.28s both;
}
.site-loader.loader-active:not(.has-gsap) .loader-identity {
  animation: fallback-identity .68s cubic-bezier(.16,1,.3,1) 3.44s both;
}
.site-loader.loader-active:not(.has-gsap) .loader-reveal-ring {
  animation: fallback-reveal 1.08s cubic-bezier(.16,1,.3,1) 3.78s both;
}
.site-loader.loader-docking {
  pointer-events: none;
}
.site-loader.loader-docking .loader-stage,
.site-loader.loader-docking .loader-particles,
.site-loader.loader-docking::before,
.site-loader.loader-docking::after,
.site-loader.loader-docking .loader-ambient {
  opacity: 0;
  transition: opacity .82s ease;
}
.site-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes loader-aurora {
  0% { opacity: 0; transform: translate3d(-2%, 2%, 0) scale(.92); }
  32% { opacity: .88; transform: translate3d(1%, -1%, 0) scale(1.04); }
  68% { opacity: .7; transform: translate3d(-1%, 1%, 0) scale(1.08); }
  100% { opacity: .28; transform: translate3d(0, 0, 0) scale(1.22); }
}
@keyframes loader-sheen {
  0% { opacity: 0; transform: scale(1); }
  35% { opacity: .36; }
  100% { opacity: .24; transform: scale(1.04); }
}
@keyframes loader-halo {
  0% { opacity: 0; transform: translate(-50%, -50%) rotateX(62deg) scale(.88); }
  45% { opacity: 1; transform: translate(-50%, -50%) rotateX(62deg) scale(1); }
  100% { opacity: .4; transform: translate(-50%, -50%) rotateX(62deg) scale(1.18); }
}
@keyframes ribbon-flight {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--r, -18deg)) translateX(-38vw) scaleX(.72); }
  18% { opacity: .74; }
  58% { opacity: .9; transform: translate(-50%, -50%) rotate(var(--r, -18deg)) translateX(0) scaleX(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--r, -18deg)) translateX(38vw) scaleX(1.12); }
}
@keyframes particle-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(var(--p-scale, 1)); }
  50% { transform: translate3d(calc(var(--dx, 10px) * .55), calc(var(--dy, -14px) * .55), 0) scale(calc(var(--p-scale, 1) * 1.08)); }
}
@keyframes stage-lens {
  0%, 100% { opacity: 0; transform: scale(.8); }
  45% { opacity: .9; transform: scale(1); }
  76% { opacity: .44; transform: scale(1.08); }
}
@keyframes stage-bloom {
  0% { opacity: 0; transform: scale(.5); }
  26% { opacity: .78; transform: scale(1); }
  76% { opacity: .28; transform: scale(1.85); }
  100% { opacity: 0; transform: scale(2.6); }
}
@keyframes ring-orbit {
  to { transform: rotate(360deg) translate3d(0,0,0); }
}
@keyframes fallback-origin {
  0% { opacity: 0; transform: scale(.35); }
  38% { opacity: 1; transform: scale(1); }
  65% { opacity: 1; transform: scale(1.65); }
  100% { opacity: 0; transform: scale(.55); }
}
@keyframes fallback-ring {
  0% { opacity: 0; transform: scale(.7) rotate(-90deg); }
  26%, 84% { opacity: 1; transform: scale(1) rotate(-28deg); }
  100% { opacity: .16; transform: scale(.72) rotate(8deg); }
}
@keyframes fallback-progress {
  from { --ring-progress: 0deg; }
  to { --ring-progress: 360deg; }
}
@keyframes fallback-dot {
  0% { opacity: 0; transform: rotate(var(--angle)) translateY(var(--radius)) translate(-50%, -50%) scale(.35); }
  48%, 86% { opacity: .92; transform: rotate(var(--angle)) translateY(var(--radius)) translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: rotate(var(--angle)) translateY(0%) translate(-50%, -50%) scale(.18); }
}
@keyframes fallback-word {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale(.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes fallback-word-out {
  to { opacity: 0; transform: translate3d(0, -10px, 0) scale(.992); }
}
@keyframes fallback-mark {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.92); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes fallback-identity {
  from { opacity: 0; transform: translate(-50%, 18px) scale(.98); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes fallback-reveal {
  0% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.6); }
  26% { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
  100% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(8.8); }
}

.physics-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .34;
  mix-blend-mode: multiply;
}
body::after {
  content: "";
  position: fixed;
  left: var(--mouse-x, -100px);
  top: var(--mouse-y, -100px);
  z-index: 2;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,164,124,.16), transparent 64%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .3s ease;
  mix-blend-mode: multiply;
}
.premium-effects-ready body::after { opacity: 1; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--forest), #e8c995, var(--bronze));
  box-shadow: 0 0 20px rgba(196,164,124,.42);
  pointer-events: none;
}

.am-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1099;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(196,164,124,.82);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform;
  contain: layout paint style;
  transition: opacity .08s linear, border-color .12s linear, background-color .12s linear, box-shadow .12s linear;
}
.am-cursor.is-visible { opacity: 1; }
.am-cursor.is-active {
  border-color: rgba(255,255,255,.86);
  background-color: rgba(196,164,124,.1);
  box-shadow: 0 0 0 7px rgba(196,164,124,.045);
}
.page-light-ribbon {
  position: fixed;
  inset: -35vh -20vw auto;
  z-index: 0;
  height: 72vh;
  pointer-events: none;
  opacity: .28;
  background:
    linear-gradient(112deg, transparent 14%, rgba(196,164,124,.22) 42%, rgba(184,121,69,.12) 50%, transparent 72%);
  filter: blur(24px);
  transform: translate3d(calc(var(--scroll-drift, 0px) * -1), calc(var(--scroll-drift, 0px) * .55), 0) rotate(-7deg);
  mix-blend-mode: multiply;
  animation: ribbon-breathe 7s ease-in-out infinite alternate;
}
@keyframes ribbon-breathe {
  from { opacity: .18; background-position: 0 0; }
  to { opacity: .34; background-position: 18vw 0; }
}
.fx-section {
  position: relative;
  isolation: isolate;
}
.fx-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(196,164,124,.16) 42%, transparent 62% 100%),
    repeating-linear-gradient(90deg, rgba(196,164,124,.06) 0 1px, transparent 1px 120px);
  transform: translateX(-12%);
  transition: opacity .85s ease, transform 1.25s var(--ease-out-expo);
}
.fx-section.section-in-view::before {
  opacity: 1;
  transform: translateX(0);
}

/* Interactive Hero canvas background */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .95;
  mix-blend-mode: screen;
  transform: translateZ(0);
  transform-origin: 18% 72%;
}

/* WebGL Gallery Sticky Structure */
.webgl-gallery-pin-wrapper {
  position: relative;
  height: 420vh; /* scrollable space to let the WebGL camera fly through */
  background: #efe6d7;
  overflow: visible;
}

.webgl-canvas-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

#webgl-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Captions Overlay */
.webgl-gallery-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 40px));
  height: 100vh;
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 0;
}

.webgl-caption-box {
  max-width: 460px;
  margin-top: clamp(320px, 52vh, 430px);
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(251, 247, 239, 0.78);
  padding: 24px 30px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
}

.webgl-caption-box.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.webgl-kicker {
  display: block;
  font: 600 10px/1.3 var(--accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 9px;
}

.webgl-title {
  font: 600 clamp(24px, 2.7vw, 36px)/1.15 var(--serif);
  color: var(--charcoal);
  margin: 0 0 10px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.webgl-desc {
  font: 400 14px/1.6 var(--sans);
  color: var(--muted);
  margin: 0;
}

/* Controls */
.webgl-controls {
  margin-bottom: 4vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.webgl-scroll-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(251, 247, 239, 0.84);
  padding: 10px 18px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.webgl-progress-label {
  font: 500 9px var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.webgl-progress-track {
  width: 140px;
  height: 2px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.webgl-progress-bar {
  width: 100%;
  height: 100%;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
}

.webgl-gallery-overlay .gallery-view-all {
  pointer-events: auto;
  align-self: flex-end;
  margin-top: auto;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--forest-deep);
  background: rgba(251, 247, 239, 0.84);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.webgl-gallery-overlay .gallery-view-all:hover {
  border-color: var(--forest);
  background: rgba(197, 168, 128, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.15);
}

.webgl-gallery-fallback {
  height: auto;
  padding-top: 18px;
}
.webgl-gallery-fallback .webgl-canvas-container,
.webgl-gallery-fallback .webgl-caption-box,
.webgl-gallery-fallback .webgl-controls {
  display: none;
}
.webgl-gallery-fallback .webgl-gallery-overlay {
  position: static;
  width: 100%;
  height: auto;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0;
}
.webgl-gallery-fallback .gallery-view-all {
  align-self: center;
  margin: 0;
}
.webgl-gallery-fallback .webgl-gallery-source {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.webgl-gallery-fallback .webgl-source-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(41,37,34,.12);
  background: var(--source-image) center / cover no-repeat, #2A2521;
  box-shadow: var(--shadow);
}
.webgl-gallery-fallback .webgl-source-item:nth-child(n + 7) { display: none; }
.webgl-gallery-fallback .webgl-source-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18,16,14,.88));
}
.webgl-gallery-fallback .webgl-source-item::after {
  content: attr(data-kicker) "\A" attr(data-title);
  white-space: pre-line;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: white;
  font: 600 18px/1.25 var(--serif);
}
.webgl-gallery-fallback .webgl-source-item[data-image="images/portrait-ivory.jpeg"] { --source-image: url("images/portrait-ivory.jpeg"); }
.webgl-gallery-fallback .webgl-source-item[data-image="images/teaching-1.jpeg"] { --source-image: url("images/teaching-1.jpeg"); }
.webgl-gallery-fallback .webgl-source-item[data-image="images/portrait-green.jpeg"] { --source-image: url("images/portrait-green.jpeg"); }
.webgl-gallery-fallback .webgl-source-item[data-image="images/suit-white-tie.jpeg"] { --source-image: url("images/suit-white-tie.jpeg"); }
.webgl-gallery-fallback .webgl-source-item[data-image="images/portrait-blue-painting.jpeg"] { --source-image: url("images/portrait-blue-painting.jpeg"); }
.webgl-gallery-fallback .webgl-source-item[data-image="images/hero-orange-suit-1.jpeg"] { --source-image: url("images/hero-orange-suit-1.jpeg"); }
.webgl-gallery-fallback .webgl-source-item[data-focus-y="0.62"] { background-position: center 34%; }
.webgl-gallery-fallback .webgl-source-item[data-focus-y="0.70"] { background-position: center 24%; }
.webgl-gallery-fallback .webgl-source-item[data-focus-y="0.72"] { background-position: center 22%; }
.webgl-gallery-fallback .webgl-source-item[data-focus-y="0.74"] { background-position: center 20%; }
.webgl-gallery-fallback .webgl-source-item[data-focus-y="0.78"] { background-position: center 14%; }


.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .96), rgba(232, 215, 190, .92) 52%, rgba(255, 250, 242, .96));
  border-bottom: 1px solid rgba(196, 164, 124, .28);
  box-shadow: 0 14px 34px rgba(8, 22, 20, .14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, border-color .25s ease, transform .32s var(--ease-out-expo), opacity .22s ease;
}
.site-header.gallery-nav-hidden { opacity: 0; pointer-events: none; transform: translateY(calc(-100% - 18px)); }
.site-header::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,164,124,.88), rgba(184,121,69,.56), transparent);
  transform: scaleX(.35);
  transform-origin: center;
  opacity: .55;
  transition: transform .45s var(--ease-out-expo), opacity .3s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, .98), rgba(232, 215, 190, .96) 52%, rgba(255, 250, 242, .98));
  box-shadow: 0 18px 44px rgba(31, 27, 24, .18);
  border-bottom-color: rgba(196, 164, 124, .36);
}
.site-header.scrolled::after {
  transform: scaleX(1);
  opacity: .9;
}
.nav-shell { display: flex; align-items: center; gap: 28px; min-height: 62px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-logo { display: block; flex: 0 0 70px; width: 70px; height: 47px; overflow: hidden; }
.brand-logo img { width: 100%; height: 100%; object-fit: contain; object-position: center; filter: brightness(1.15) contrast(1.05); }
.brand strong { display: block; color: var(--forest-deep); font: 500 19px/1.2 var(--serif); letter-spacing: .01em; }
.brand small { display: block; margin-top: 5px; color: var(--bronze-dark); font: 600 8px/1.4 var(--accent); letter-spacing: .24em; text-transform: uppercase; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(17px, 2vw, 31px); margin-left: auto; }
.site-nav a {
  position: relative;
  padding: 10px 2px;
  font: 500 13px/1 var(--sans);
  transform: translate3d(var(--mag-x, 0px), var(--mag-y, 0px), 0);
  transition: color .25s ease, transform .35s var(--ease-out-expo);
}
.site-nav a::before {
  content: "";
  position: absolute;
  inset: -9px -15px;
  z-index: -1;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(196,164,124,.18), rgba(255,255,255,.22));
  opacity: 0;
  transform: scale(.86);
  transition: opacity .28s ease, transform .38s var(--ease-out-expo);
}
.site-nav a:hover::before,
.site-nav a.active::before {
  opacity: 1;
  transform: scale(1);
}
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: linear-gradient(90deg, var(--forest), var(--bronze)); box-shadow: 0 0 14px rgba(196,164,124,.45); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.site-header .brand strong,
.site-header .site-nav a { color: var(--forest-deep); }
.site-header .brand small { color: var(--bronze-dark); }
.site-header .site-nav a:hover,
.site-header .site-nav a.active { color: var(--bronze); }
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: 500 13px/1 var(--accent);
  cursor: pointer;
  transform: translate3d(var(--mag-x, 0px), var(--mag-y, 0px), 0);
  transition: transform .35s var(--ease-out-expo), box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 38%;
  transform: skewX(-20deg) translateX(-140%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transition: transform .65s var(--ease-out-expo);
  pointer-events: none;
}
.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.32), transparent 34%, rgba(255,255,255,.14));
  opacity: .18;
  transition: opacity .25s ease;
}
.button:hover::after { opacity: .32; }
.button:hover::before {
  transform: skewX(-20deg) translateX(520%);
}
.button:hover { transform: translate3d(var(--mag-x, 0px), calc(var(--mag-y, 0px) - 2px), 0); }
.button-small { min-height: 43px; padding-inline: 20px; color: var(--forest-dark); background: var(--forest); font-weight: 600; }
.button-small:hover,
.button-small:focus-visible,
.button-small:active { color: var(--cream); background: var(--forest-deep); box-shadow: 0 10px 24px rgba(197, 168, 128, .35); }
.button-primary { color: var(--forest-dark); background: var(--forest); box-shadow: 0 12px 30px rgba(197, 168, 128, .2); font-weight: 600; }
.button-primary:hover,
.button-primary:focus-visible,
.button-primary:active { color: var(--cream); background: var(--forest-deep); box-shadow: 0 15px 35px rgba(197, 168, 128, .4); }
.button-ghost { color: var(--forest); border-color: rgba(197, 168, 128, 0.4); background: rgba(255,255,255,.02); }
.button-ghost:hover { background: rgba(197, 168, 128, 0.12); border-color: var(--forest); }
.button-bronze { color: var(--forest-dark); background: var(--forest); font-weight: 600; }
.button-bronze:hover,
.button-bronze:focus-visible,
.button-bronze:active { color: var(--cream); background: var(--forest-deep); box-shadow: 0 12px 26px rgba(197, 168, 128, .3); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 90px;
  color: #f4f0e8;
  background:
    radial-gradient(circle at 16% 16%, rgba(196,164,124,.18), transparent 32%),
    radial-gradient(circle at 78% 36%, rgba(196,164,124,.13), transparent 30%),
    linear-gradient(180deg, #080706 0%, #080706 72%, #0D0C0B 100%);
  overflow: hidden;
}
.hero .hero-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244,240,232,.34);
  box-shadow:
    0 0 38px rgba(244,240,232,.1),
    0 0 92px rgba(196,164,124,.18),
    inset 0 0 48px rgba(184,121,69,.07);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.28);
}
.hero .hero-grid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(72vw, 780px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244,240,232,.18), rgba(196,164,124,.1) 18%, rgba(184,121,69,.05) 34%, transparent 64%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.22);
  will-change: transform, opacity;
}
.hero.hero-reveal-bridge .hero-grid::before {
  animation: hero-bridge-ring 1.35s var(--ease-out-expo) both;
}
.hero.hero-reveal-bridge .hero-grid::after {
  animation: hero-bridge-aura 1.58s var(--ease-out-expo) both;
}
.hero.hero-reveal-bridge .hero-spotlight {
  opacity: 1;
  transition-duration: 1.1s;
}
.hero.hero-reveal-bridge #hero-canvas {
  animation: hero-wave-arrive 1.72s cubic-bezier(.16,1,.3,1) both;
}
.hero.hero-reveal-bridge .hero-pattern {
  animation: hero-pattern-awake 1.25s ease both;
}
.premium-effects-ready .hero::before {
  animation-duration: 11s;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  z-index: 0;
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite alternate;
}
.hero::before {
  width: 55vw; height: 55vw;
  top: -10vw; left: -10vw;
  background: radial-gradient(circle, rgba(196, 164, 124, 0.12), transparent 70%);
}
.hero::after {
  width: 65vw; height: 65vw;
  bottom: -20vw; right: -15vw;
  background: radial-gradient(circle, rgba(184, 121, 69, 0.08), transparent 70%);
  animation-delay: -7s;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(4%, 6%) scale(1.15); }
}
@keyframes header-arrive {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-bridge-ring {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.18); }
  18% { opacity: .9; }
  72% { opacity: .28; transform: translate(-50%, -50%) scale(1.8); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.35); }
}
@keyframes hero-bridge-aura {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.2); }
  22% { opacity: .72; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.2); }
}
@keyframes hero-wave-arrive {
  0% {
    opacity: 0;
    transform: translate3d(-22vw, 8vh, 0) scale(1.08);
  }
  34% {
    opacity: .82;
  }
  68% {
    opacity: 1;
    transform: translate3d(2vw, -1vh, 0) scale(1.015);
  }
  100% {
    opacity: .95;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes hero-pattern-awake {
  0% { opacity: 0; transform: scale(1.06); }
  100% { opacity: .42; transform: scale(1); }
}
.hero-pattern { position: absolute; inset: 0; opacity: .42; background-image: radial-gradient(rgba(197,168,128,.12) .7px, transparent .7px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent 15%, black 45%, transparent 80%); }
.hero-ambient { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-ambient span { position: absolute; border-radius: 50%; filter: blur(28px); opacity: .18; will-change: transform; }
.hero-ambient span:nth-child(1) {
  width: 520px;
  height: 520px;
  right: 3%;
  top: 6%;
  background: radial-gradient(circle, rgba(197,168,128,.15), rgba(197,168,128,0) 68%);
  animation: ambient-drift-one 18s ease-in-out infinite alternate;
}
.hero-ambient span:nth-child(2) {
  width: 430px;
  height: 430px;
  left: 23%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(196, 164, 124, 0.1), rgba(196, 164, 124, 0) 70%);
  animation: ambient-drift-two 22s ease-in-out infinite alternate;
}
.hero-ambient span:nth-child(3) {
  width: 360px;
  height: 360px;
  right: 29%;
  top: 32%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0) 68%);
  animation: ambient-drift-three 20s ease-in-out infinite alternate;
}
@keyframes ambient-drift-one { to { transform: translate3d(-75px, 45px, 0) scale(1.08); } }
@keyframes ambient-drift-two { to { transform: translate3d(80px, -55px, 0) scale(.92); } }
@keyframes ambient-drift-three { to { transform: translate3d(-40px, -60px, 0) scale(1.12); } }
.hero-spotlight {
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  left: calc(var(--spotlight-x, 72%) - 260px);
  top: calc(var(--spotlight-y, 38%) - 260px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197,168,128,.14), rgba(184,121,69,.07) 42%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: left .7s cubic-bezier(.2,.75,.25,1), top .7s cubic-bezier(.2,.75,.25,1), opacity .5s ease;
}
.hero:hover .hero-spotlight { opacity: 1; }
.hero-words { position: absolute; inset: 105px 0 0; pointer-events: none; overflow: hidden; }
.hero-word-line { position: absolute; left: 0; width: 100%; overflow: hidden; opacity: .15; }
.hero-word-line:nth-child(1) { top: 1%; }
.hero-word-line:nth-child(2) { top: 34%; }
.hero-word-line:nth-child(3) { bottom: -1%; }
.hero-word-track { display: flex; width: max-content; will-change: transform; }
.hero-word-track span {
  flex: 0 0 auto;
  padding-right: .42em;
  font: 600 clamp(85px, 12vw, 190px)/1 var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}
.hero-word-line:nth-child(1) .hero-word-track span { color: var(--forest); }
.hero-word-line:nth-child(2) .hero-word-track span { color: var(--bronze); }
.hero-word-line:nth-child(3) .hero-word-track span { color: rgba(255,255,255,.34); }
.hero-settled .hero-word-line:nth-child(1) .hero-word-track { animation: hero-marquee-left 46s linear infinite; }
.hero-settled .hero-word-line:nth-child(2) .hero-word-track { animation: hero-marquee-right 52s linear infinite; transform: translateX(-25%); }
.hero-settled .hero-word-line:nth-child(3) .hero-word-track { animation: hero-marquee-left 58s linear infinite; }
@keyframes hero-marquee-left { to { transform: translateX(-25%); } }
@keyframes hero-marquee-right { to { transform: translateX(0); } }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; min-height: 660px; }
.hero-copy { z-index: 2; padding: 78px 0 64px; }
.eyebrow { margin: 0 0 18px; color: var(--bronze-dark); font: 600 11px/1.3 var(--accent); letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section h2, .modal-content h2 { margin: 0; color: var(--forest-deep); font: 600 clamp(55px, 6.2vw, 92px)/.98 var(--serif); letter-spacing: -.035em; }
.hero h1 em, .section h2 em, .modal-content h2 em { color: var(--forest); font-style: italic; font-weight: 500; }
.section-heading h2,
.about-copy h2,
.recognition-copy h2,
.contact-copy h2,
.manifesto-statement h2 {
  position: relative;
}
.section-heading h2::after,
.about-copy h2::after,
.recognition-copy h2::after,
.contact-copy h2::after,
.manifesto-statement h2::after {
  content: "";
  display: block;
  width: clamp(72px, 10vw, 145px);
  height: 2px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--forest), var(--bronze), transparent);
  transform: scaleX(.18);
  transform-origin: left;
  opacity: .34;
  transition: transform 1s var(--ease-out-expo), opacity .65s ease;
}
.reveal.is-visible h2::after,
.manifesto-shell.is-visible .manifesto-statement h2::after {
  transform: scaleX(1);
  opacity: .9;
}
.section-heading.centered h2::after {
  margin-inline: auto;
  transform-origin: center;
}
.innovations h2::after,
.academy h2::after,
.contact h2::after,
.manifesto-statement h2::after {
  background: linear-gradient(90deg, #f1c78f, #ffb088, transparent);
}
.hero-name { margin: 0 0 18px; color: var(--bronze-dark); font: 600 11px var(--accent); letter-spacing: .2em; text-transform: uppercase; }
.hero .hero-impact-title {
  position: relative;
  max-width: 780px;
  overflow: hidden;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.hero .hero-impact-title::after {
  content: "";
  position: absolute;
  inset: -12% -18%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 36%, rgba(244,240,232,.72) 48%, rgba(196,164,124,.4) 54%, transparent 66% 100%);
  opacity: 0;
  transform: translate3d(-72%, 0, 0) skewX(-12deg);
  mix-blend-mode: screen;
}
.hero.hero-reveal-bridge .hero-impact-title::after {
  animation: title-precision-pass 1.08s cubic-bezier(.16,1,.3,1) .34s both;
}
.hero .hero-impact-title > span { display: block; color: #f4f0e8; }
.hero .hero-impact-title > em {
  display: block;
  margin-top: 5px;
  color: #f1c78f;
  font-style: normal;
  background: linear-gradient(90deg, #f1c78f, #fff4d8, #b87945, #f1c78f);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-settled .hero-impact-title > em {
  animation: text-shine 5.5s ease-in-out infinite;
}
@keyframes text-shine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes title-precision-pass {
  0% { opacity: 0; transform: translate3d(-76%, 0, 0) skewX(-12deg); }
  18% { opacity: .48; }
  56% { opacity: .36; }
  100% { opacity: 0; transform: translate3d(78%, 0, 0) skewX(-12deg); }
}
.hero-roles { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 24px 0 18px; color: #ffb088; font: 500 clamp(14px, 1.6vw, 18px)/1.4 var(--serif); }
.hero-roles i { width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); }
.hero-intro { max-width: 610px; margin: 0; color: rgba(244,240,232,.68); font-size: clamp(16px, 1.55vw, 19px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 30px 0 20px; }
.video-link { display: inline-flex; align-items: center; gap: 11px; padding: 4px 0; border: 0; color: rgba(244,240,232,.78); background: transparent; font: 500 12px var(--accent); cursor: pointer; }
.play-icon { display: grid; place-items: center; width: 35px; height: 35px; border: 1px solid var(--forest); border-radius: 50%; transition: background .2s, color .2s; }
.play-icon svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.video-link:hover .play-icon { color: var(--forest-dark); background: var(--forest); }
.hero-visual { position: relative; align-self: end; min-height: 640px; }
.portrait-frame {
  --hero-depth-x: 0px;
  --hero-depth-y: 0px;
  --hero-scroll-y: 0px;
  --visual-drift: 0px;
  position: absolute;
  right: 9%;
  bottom: 60px;
  width: 78%;
  height: 560px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 34px;
  background: rgba(255,255,255,0.3);
  box-shadow: 0 40px 80px rgba(0,0,0,0.04), 0 0 0 1px rgba(255,255,255,0.6) inset;
  backdrop-filter: blur(24px);
  transform: translate3d(var(--hero-depth-x), calc(var(--hero-depth-y) + var(--hero-scroll-y)), 0);
  transition: transform .65s cubic-bezier(.2,.75,.25,1), box-shadow .45s ease;
  will-change: transform;
}
.portrait-frame::after { content: ""; position: absolute; inset: 16px; border-radius: 23px; background: linear-gradient(180deg, transparent 65%, rgba(0,0,0,.15)); pointer-events: none; }
.portrait-frame::before,
.image-main::before,
.image-secondary::before,
.award-visual::after,
.gallery-item::before,
.full-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 8%, rgba(255,255,255,.34) 18%, transparent 32%);
  transform: translateX(-130%) skewX(-10deg);
  opacity: 0;
  transition: transform .95s var(--ease-out-expo), opacity .35s ease;
}
.portrait-frame:hover::before,
.about-images:hover .image-main::before,
.about-images:hover .image-secondary::before,
.award-visual:hover::after,
.gallery-item:hover::before,
.full-gallery-item:hover::before {
  opacity: .75;
  transform: translateX(130%) skewX(-10deg);
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 32%; border-radius: 23px; }
.quote-card {
  --quote-depth-x: 0px;
  --quote-depth-y: 0px;
  position: absolute;
  z-index: 3;
  right: -1%;
  bottom: 72px;
  width: 218px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 22px 55px rgba(0,0,0,.08);
  backdrop-filter: blur(16px);
  transform: translate3d(var(--quote-depth-x), var(--quote-depth-y), 0);
  transition: transform .7s cubic-bezier(.2,.75,.25,1), box-shadow .35s ease;
  will-change: transform;
}
.quote-card svg { width: 27px; color: var(--forest); fill: currentColor; stroke: none; }
.quote-card blockquote { margin: 14px 0; color: var(--charcoal); font: 500 15px/1.6 var(--serif); }
.quote-card span { color: var(--forest); font: italic 12px var(--serif); }
/* Cinematic hero entrance */
.hero-enhanced .hero-copy > *,
.hero-enhanced .portrait-frame,
.hero-enhanced .quote-card,
.hero-enhanced .hero-word-line {
  opacity: 0;
}
.hero-enhanced .hero-copy > * { transform: translate3d(0, 26px, 0); }
.hero-enhanced .hero-copy h1 { clip-path: inset(0 0 100% 0); transform: translate3d(0, 18px, 0); }
.hero-enhanced .portrait-frame { clip-path: inset(18% 10% 18% 10% round 40px); transform: translate3d(34px, 26px, 0) scale(.96); }
.hero-enhanced .quote-card { transform: translate3d(32px, 18px, 0) scale(.97); }
.hero-enhanced .hero-word-line { transform: translate3d(0, 28px, 0); }

.hero-enhanced.hero-ready .hero-copy > * {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .9s cubic-bezier(.16,1,.3,1);
}
.hero-enhanced.hero-ready .hero-copy .hero-name { transition-delay: .06s; }
.hero-enhanced.hero-ready .hero-copy h1 {
  clip-path: inset(0 0 0 0);
  transition: opacity .92s ease .14s, transform 1.05s cubic-bezier(.16,1,.3,1) .14s, clip-path 1.22s cubic-bezier(.16,1,.3,1) .1s;
}
.hero-enhanced.hero-ready .hero-copy .hero-roles { transition-delay: .36s; }
.hero-enhanced.hero-ready .hero-copy .hero-intro { transition-delay: .46s; }
.hero-enhanced.hero-ready .hero-copy .hero-actions { transition-delay: .58s; }
.hero-enhanced.hero-ready .hero-copy .video-link { transition-delay: .68s; }
.hero-enhanced.hero-ready .portrait-frame {
  opacity: 1;
  clip-path: inset(0 round 34px);
  transform: translate3d(var(--hero-depth-x), calc(var(--hero-depth-y) + var(--hero-scroll-y) + var(--visual-drift, 0px)), 0);
  transition: opacity 1s ease .22s, clip-path 1.3s cubic-bezier(.16,1,.3,1) .18s, transform .65s cubic-bezier(.2,.75,.25,1), box-shadow .45s ease;
}
.hero-enhanced.hero-ready .quote-card {
  opacity: 1;
  transform: translate3d(var(--quote-depth-x), var(--quote-depth-y), 0);
  transition: opacity .82s ease .78s, transform .95s cubic-bezier(.16,1,.3,1) .78s, box-shadow .35s ease;
}
.hero-enhanced.hero-ready .hero-word-line {
  opacity: .04;
  transform: none;
  transition: opacity 1.45s ease .34s, transform 1.45s cubic-bezier(.16,1,.3,1) .34s;
}
.hero-enhanced.hero-ready.hero-settled .hero-copy > *,
.hero-enhanced.hero-ready.hero-settled .portrait-frame,
.hero-enhanced.hero-ready.hero-settled .quote-card,
.hero-enhanced.hero-ready.hero-settled .hero-word-line { transition-delay: 0s; }

.impact-strip { position: relative; background: var(--paper); border-block: 1px solid var(--line); }
.impact-grid { display: grid; grid-template-columns: repeat(5, 1fr); min-height: 205px; }
.stat { display: flex; flex-direction: column; justify-content: center; padding: 32px 24px; }
.stat { align-items: center; text-align: center; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(197, 168, 128, .3); border-radius: 50%; color: var(--forest); background: rgba(197, 168, 128, .08); box-shadow: inset 0 0 0 6px rgba(12, 13, 18, .5); }
.stat-icon svg { width: 25px; height: 25px; }
.experience-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(197, 168, 128, .08);
}
.experience-icon svg { width: 27px; height: 27px; stroke-width: 1.8; }
.stat strong { margin-top: 15px; color: var(--forest-deep); font: 600 39px/1 var(--serif); }
.stat p { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.3; }

.defining-moments { background: var(--paper); padding-bottom: 96px; }
.moments-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.moments-heading h2 { max-width: 760px; }
.moments-heading > p { max-width: 410px; margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.moments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.moment-card { position: relative; min-height: 290px; padding: 36px 28px; background: rgba(255,255,255,.38); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 10px 30px rgba(8, 22, 20, 0.07); transition: transform 0.45s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.3s ease; }
.moment-card:hover { transform: translateY(-8px); border-color: rgba(197, 168, 128, 0.35); box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5); }
.moment-number { position: absolute; top: 26px; right: 25px; color: var(--forest); font: 600 10px var(--accent); letter-spacing: .12em; }
.moment-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 36px; border: 1px solid rgba(197, 168, 128, 0.25); border-radius: 50%; color: var(--forest); background: rgba(197, 168, 128, 0.04); transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.moment-icon svg { width: 24px; height: 24px; }
.moment-card:hover .moment-icon { transform: scale(1.08); background-color: var(--forest); border-color: var(--forest); color: var(--forest-dark); }
.moment-card h3 { margin: 0 0 12px; color: var(--forest-deep); font: 600 20px/1.3 var(--serif); transition: color 0.3s ease; }
.moment-card:hover h3 { color: var(--forest); }
.moment-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.innovations {
  color: #f4f0e8;
  background:
    radial-gradient(circle at 18% 12%, rgba(196, 164, 124, .18), transparent 30%),
    radial-gradient(circle at 82% 58%, rgba(184, 121, 69, .18), transparent 30%),
    linear-gradient(180deg, #0D0C0B 0%, #1A1715 48%, #0D0C0B 100%);
  border-block: 1px solid rgba(255,255,255,.08);
}
.innovations .eyebrow { color: #ffb088; }
.innovations h2 { color: #f4f0e8; }
.innovations h2 em { color: #f1c78f; }
.innovations-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px, 7vw, 96px); }
.innovations-sticky { position: sticky; top: 128px; align-self: start; }
.innovations-sticky p:not(.eyebrow) { max-width: 430px; color: rgba(244,240,232,.66); }
.innovation-track { position: relative; padding-left: 54px; }
.innovation-track svg { position: absolute; inset: 0 auto 0 0; width: 46px; height: 100%; overflow: visible; }
.innovation-track .spine-base { stroke: rgba(244,240,232,.12); stroke-width: 2; }
.innovation-track .spine-fill { stroke: url(#spinegrad); stroke-width: 2; filter: drop-shadow(0 0 10px rgba(196,164,124,.38)); }
.milestone { position: relative; padding: 0 0 64px; }
.milestone:last-child { padding-bottom: 0; }
.milestone .node {
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #14171c;
  border: 2px solid rgba(244,240,232,.42);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.milestone.active .node {
  background: #f1c78f;
  border-color: #f1c78f;
  box-shadow: 0 0 0 7px rgba(241,199,143,.18), 0 0 34px rgba(241,199,143,.42);
}
.milestone:nth-of-type(even).active .node {
  background: #b87945;
  border-color: #b87945;
  box-shadow: 0 0 0 7px rgba(184,121,69,.16), 0 0 34px rgba(184,121,69,.38);
}
.milestone .tag {
  display: block;
  color: rgba(244,240,232,.48);
  font: 600 10px var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.milestone h3 { margin: 10px 0 10px; color: #fff; font: 600 26px/1.22 var(--serif); }
.milestone p { max-width: 560px; margin: 0; color: rgba(244,240,232,.65); font-size: 14px; line-height: 1.75; }

.academy {
  color: #f4f0e8;
  background:
    radial-gradient(circle at 76% 20%, rgba(196,164,124,.12), transparent 28%),
    linear-gradient(180deg, #0D0C0B 0%, #1A1715 100%);
}
.academy .section-heading { margin-bottom: 34px; }
.academy .eyebrow { color: #f1c78f; }
.academy h2 { color: #f4f0e8; }
.academy h2 em { color: #ffb088; }
.academy .section-heading > p { color: rgba(244,240,232,.64); }
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}
.bento.is-visible .bento-card,
.work-grid .work-card.is-visible,
.moment-card.is-visible,
.venture-card.is-visible {
  animation: grid-pop .9s var(--ease-out-expo) backwards;
}
.bento.is-visible .bento-card:nth-child(2),
.work-grid .work-card.is-visible:nth-child(2),
.moment-card.is-visible:nth-child(2),
.venture-card.is-visible:nth-child(2) { animation-delay: .08s; }
.bento.is-visible .bento-card:nth-child(3),
.work-grid .work-card.is-visible:nth-child(3),
.moment-card.is-visible:nth-child(3),
.venture-card.is-visible:nth-child(3) { animation-delay: .16s; }
.bento.is-visible .bento-card:nth-child(4),
.moment-card.is-visible:nth-child(4) { animation-delay: .24s; }
@keyframes grid-pop {
  0% { opacity: 0; transform: translateY(34px) rotateX(-8deg) scale(.96); }
  100% { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
}
.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(244,240,232,.1);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  --mx: 50%;
  --my: 50%;
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(196,164,124,.3), transparent 62%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.bento-card:hover::before { opacity: 1; }
.bento-card .glow-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(184,121,69,.18), transparent 65%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.bento-card:hover .glow-overlay { opacity: 1; }
.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .54;
  transition: transform .6s ease, opacity .3s ease;
}
.bento-card:hover img { transform: scale(1.04); opacity: .68; }
.bento-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(11,13,16,.94));
  pointer-events: none;
}
.bento-card h3, .bento-card p, .bento-card .kicker, .bento-card .num { position: relative; z-index: 1; }
.bento-card h3 { margin: 0 0 8px; color: #fff; font: 600 21px/1.25 var(--serif); }
.bento-card p { margin: 0; color: rgba(244,240,232,.66); font-size: 13px; line-height: 1.6; }
.bento-card .kicker {
  display: block;
  margin-bottom: 10px;
  color: #f1c78f;
  font: 600 10px var(--accent);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bento-card-large { grid-column: span 2; grid-row: span 2; }
.bento-card-photo { grid-column: span 2; }
.bento-stat .num { color: #ffb088; font: 600 50px/1 var(--serif); margin-bottom: 12px; }

.about { background: var(--paper); padding-top: 56px; }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.about-images { position: relative; min-height: 650px; --visual-drift: 0px; }
.about-images.is-visible { transform: translateY(var(--visual-drift, 0px)); }
.image-main { position: absolute; inset: 0 20% 8% 0; overflow: hidden; border-radius: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.5); }
.image-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.image-secondary { position: absolute; right: 0; bottom: 0; width: 48%; border: 8px solid var(--paper); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.image-secondary img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.experience-seal { position: absolute; top: 11%; right: 8%; display: grid; place-items: center; width: 138px; height: 138px; padding: 15px; border: 1px solid rgba(197,168,128,.4); border-radius: 50%; color: var(--forest-deep); background: var(--paper); box-shadow: 0 14px 40px rgba(0,0,0,.08); text-align: center; font: 600 25px/1.1 var(--serif); }
.experience-seal::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(197,168,128,.35); border-radius: 50%; }
.experience-seal small { display: block; margin-top: 5px; color: var(--forest); font: 500 8px/1.4 var(--accent); letter-spacing: .07em; text-transform: uppercase; }
.section h2 { font-size: clamp(38px, 4vw, 61px); line-height: 1.08; }
.about-copy .lead { margin: 27px 0 16px; color: var(--forest-deep); font: 500 19px/1.65 var(--serif); }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.principles { margin: 30px 0; border-top: 1px solid var(--line); }
.principles div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.principles strong { color: var(--forest-deep); font: 600 14px var(--accent); }
.principles span { color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 15px; color: var(--forest); font: 600 12px var(--accent); border-bottom: 1px solid rgba(197,168,128,.45); padding-bottom: 5px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

.journey { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%); }
.section-heading { margin-bottom: 58px; }
.section-heading.centered { text-align: center; }
.section-heading.centered h2 { max-width: 760px; margin-inline: auto; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.timeline::before { content: ""; position: absolute; top: 37px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--bronze), transparent); }
.timeline-item { position: relative; z-index: 1; min-height: 275px; padding: 0 20px 22px; overflow: hidden; border-radius: 18px; text-align: center; --story-position: center 18%; transition: transform .25s ease, box-shadow .25s ease; }
.timeline-item::before { content: ""; position: absolute; inset: 0; z-index: -2; border-radius: inherit; background: var(--story-image) var(--story-position)/cover no-repeat; opacity: 0; transform: scale(1.08); transition: opacity .3s ease, transform .45s ease; }
.timeline-item::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.9)); opacity: 0; transition: opacity .3s ease; }
.timeline-item:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(25,55,44,.18); }
.timeline-item:hover::before, .timeline-item:hover::after { opacity: 1; transform: scale(1); }
.timeline-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 20px; border: 1px solid rgba(176,125,79,.55); border-radius: 50%; color: var(--forest); background: var(--paper); transition: transform .25s ease, background .25s ease, color .25s ease; }
.timeline-icon svg { width: 28px; height: 28px; }
.timeline-item:nth-child(1) { --story-position: center 11%; }
.timeline-item:nth-child(2) { --story-position: center 10%; }
.timeline-item:nth-child(3) { --story-position: center 20%; }
.timeline-item:nth-child(4) { --story-position: center 12%; }
.timeline-item:nth-child(5) { --story-position: center 22%; }
.timeline-item:hover .timeline-icon { transform: translate(-74px, -5px) scale(.82); color: var(--forest-deep); background: rgba(251,247,239,.9); backdrop-filter: blur(8px); }
.timeline-item:hover h3, .timeline-item:hover p, .timeline-item:hover .timeline-number { color: white; }
.timeline-number { color: var(--bronze); font: 500 9px var(--accent); letter-spacing: .12em; }
.timeline-item h3 { margin: 8px 0; color: var(--forest-deep); font: 600 17px/1.25 var(--serif); }
.timeline-item p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }

.work { background: var(--paper); }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading.split h2 { max-width: 700px; }
.filter-group { display: flex; gap: 7px; padding: 6px; border: 1px solid var(--line); border-radius: 50px; background: var(--paper-soft); }
.filter { padding: 8px 13px; border: 0; border-radius: 30px; color: var(--muted); background: transparent; font: 500 10px var(--accent); cursor: pointer; }
.filter:hover, .filter.active { color: white; background: var(--forest); }
.work-grid { display: grid; grid-template-columns: 1.5fr repeat(2, 1fr); gap: 18px; }
.feature-card { grid-row: span 2; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.35); transition: transform .45s var(--ease-out-expo), box-shadow .25s; }
.feature-card:hover, .work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-image { position: relative; height: 285px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.feature-card:hover .card-image img { transform: scale(1.035); }
.card-image > span { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 30px; color: white; background: rgba(42,37,33,.86); backdrop-filter: blur(10px); font: 500 9px var(--accent); letter-spacing: .06em; text-transform: uppercase; }
.card-content { padding: 29px; }
.publication-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 13px; }
.publication-badges span { padding: 6px 9px; border: 1px solid rgba(176,125,79,.28); border-radius: 30px; color: var(--bronze-dark); background: rgba(176,125,79,.07); font: 600 8px var(--accent); letter-spacing: .06em; text-transform: uppercase; }
.card-kicker { margin: 0 0 10px; color: var(--bronze-dark); font: 600 9px var(--accent); letter-spacing: .12em; text-transform: uppercase; }
.card-content h3, .work-card h3, .venture-card h3 { margin: 0; color: var(--forest-deep); font: 600 25px/1.25 var(--serif); }
.card-content > p:not(.card-kicker), .work-card > p:not(.card-kicker), .venture-card p { color: var(--muted); font-size: 13px; }
.card-content a, .venture-card a { color: var(--bronze-dark); font: 600 11px var(--accent); }
.work-card { position: relative; min-height: 250px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.45), rgba(236,228,215,.62)); transition: transform .45s var(--ease-out-expo), box-shadow .25s, opacity .25s; }
.work-card-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 24px; border-radius: 50%; color: var(--bronze-dark); background: rgba(176,125,79,.1); }
.work-card-icon svg { width: 22px; }
.work-card h3 { font-size: 21px; }
.card-meta { position: absolute; bottom: 21px; left: 27px; color: var(--forest); font: 500 9px var(--accent); }
[data-category].hidden { display: none; }
.source-note { max-width: 650px; margin: 28px auto 0; color: #777; font-size: 10px; text-align: center; }

.media { color: var(--charcoal); background: var(--paper-soft); }
.media .eyebrow { color: var(--bronze-dark); }
.media h2 { color: var(--forest-deep); }
.media-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.media-heading h2 { max-width: 720px; }
.media-heading > p { max-width: 390px; margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "stage stage green"
    "teach white green"
    "blue orange orange";
  grid-template-rows: repeat(3, 280px);
  gap: 16px;
}
.gallery-item { position: relative; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; color: white; background: #2A2521; cursor: pointer; text-align: left; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(18,16,14,.85)); transition: background .25s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.75,.25,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item:hover::after { background: linear-gradient(180deg, rgba(176,125,79,.05), rgba(18,16,14,.9)); }
.gallery-item > span { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 17px; font: 500 17px var(--serif); }
.gallery-item small { display: block; margin-bottom: 4px; color: #dfb58d; font: 500 8px var(--accent); letter-spacing: .14em; text-transform: uppercase; }
.gallery-item:nth-child(1) { grid-area: stage; }
.gallery-item:nth-child(2) { grid-area: green; }
.gallery-item:nth-child(3) { grid-area: teach; }
.gallery-item:nth-child(4) { grid-area: white; }
.gallery-item:nth-child(5) { grid-area: blue; }
.gallery-item:nth-child(6) { grid-area: orange; }
.gallery-item:nth-child(1) img { object-position: center 26%; }
.gallery-item:nth-child(2) img { object-position: center 18%; }
.gallery-item:nth-child(3) img { object-position: center 20%; }
.gallery-item:nth-child(4) img { object-position: center 16%; }
.gallery-item:nth-child(5) img { object-position: center 14%; }
.gallery-item:nth-child(6) img { object-position: center 20%; }
.gallery-actions { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 34px; }
.gallery-actions p { margin: 0; color: rgba(255,255,255,.58); font-size: 11px; }
.gallery-actions strong { color: white; font-weight: 500; }
.gallery-view-all { gap: 12px; border: 1px solid rgba(255,255,255,.28); color: white; background: rgba(255,255,255,.08); cursor: pointer; }
.gallery-view-all:hover { border-color: #d7ad83; background: rgba(215,173,131,.14); }

.full-gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  border: 0;
  color: white;
  background: var(--forest-dark);
  transform: translateY(18px) scale(.985);
  opacity: 0;
  transition: opacity .35s ease, transform .5s var(--ease-out-expo);
}
.full-gallery-dialog[open] {
  opacity: 1;
  transform: none;
}
.full-gallery-dialog::backdrop { background: rgba(13,12,11,.88); backdrop-filter: blur(10px); }
.full-gallery-shell { width: min(1400px, calc(100% - 56px)); margin-inline: auto; padding: 42px 0 70px; }
.full-gallery-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.15); }
.full-gallery-header .eyebrow { color: #d7ad83; }
.full-gallery-header h2 { margin: 6px 0 0; color: white; }
.full-gallery-close { position: sticky; top: 20px; z-index: 3; display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: white; background: rgba(255,255,255,.08); font: 400 28px/1 Arial, sans-serif; cursor: pointer; transition: border-color .2s, background .2s; }
.full-gallery-close:hover { border-color: #d7ad83; background: rgba(215,173,131,.14); }
.full-gallery-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 24px 0 30px; }
.full-gallery-toolbar > p { margin: 0; color: rgba(255,255,255,.5); font: 500 10px var(--accent); letter-spacing: .08em; text-transform: uppercase; }
.full-gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.full-gallery-filters button { padding: 9px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 30px; color: rgba(255,255,255,.66); background: transparent; font: 500 10px var(--accent); cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
.full-gallery-filters button span { margin-left: 5px; color: #d7ad83; }
.full-gallery-filters button:hover, .full-gallery-filters button.active { border-color: var(--bronze); color: white; background: rgba(176,125,79,.18); }
.full-gallery-grid { columns: 4 260px; column-gap: 16px; }
.full-gallery-item { position: relative; width: 100%; margin: 0 0 16px; padding: 0; overflow: hidden; break-inside: avoid; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; color: white; background: #2A2521; cursor: pointer; text-align: left; }
.full-gallery-item[hidden] { display: none; }
.full-gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 54%, rgba(18,16,14,.88)); transition: background .25s; }
.full-gallery-item img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.full-gallery-item.full-gallery-landscape img { aspect-ratio: 4 / 3; }
.full-gallery-item img[src$="portrait-green.jpeg"] { object-position: center 12%; }
.full-gallery-item img[src$="portrait-ivory.jpeg"],
.full-gallery-item img[src$="suit-white-tie.jpeg"],
.full-gallery-item img[src$="suit-teal-lobby.jpeg"],
.full-gallery-item img[src$="1.jpeg"],
.full-gallery-item img[src$="portrait-blue-painting.jpeg"] { object-position: center 18%; }
.full-gallery-item img[src$="hero-orange-suit.jpeg"],
.full-gallery-item img[src$="hero-white-blazer.jpeg"] { object-position: center 26%; }
.full-gallery-item:hover img { transform: scale(1.035); }
.full-gallery-item:hover::after { background: linear-gradient(180deg, rgba(176,125,79,.05), rgba(18,16,14,.92)); }
.full-gallery-item > span { display: none; }
.full-gallery-item small { display: block; margin-bottom: 3px; color: #dfb58d; font: 600 8px var(--accent); letter-spacing: .14em; text-transform: uppercase; }

.recognition { background: var(--paper); }
.recognition-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(55px, 9vw, 130px); align-items: center; }
.award-visual { position: relative; height: 600px; --visual-drift: 0px; }
.award-visual.is-visible { transform: translateY(var(--visual-drift, 0px)); }
.award-visual::before { content: ""; position: absolute; inset: 5% 7% -4% -5%; border: 1px solid rgba(176,125,79,.35); border-radius: 28px; }
.award-visual img { position: relative; width: 100%; height: 100%; object-fit: cover; object-position: center 15%; border-radius: 28px; }
.award-badge { position: absolute; z-index: 2; right: 20px; bottom: 50px; display: flex; max-width: calc(100% - 40px); align-items: center; gap: 9px; padding: 13px 18px; border-radius: 8px; color: var(--forest-deep); background: var(--paper); box-shadow: var(--shadow); font: 600 11px var(--accent); white-space: nowrap; }
.award-badge svg { width: 20px; color: var(--bronze); fill: rgba(176,125,79,.14); }
.award-list { margin-top: 35px; border-top: 1px solid var(--line); }
.award-list article { display: grid; grid-template-columns: 45px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.award-list > article > span { color: var(--bronze); font: 500 10px var(--accent); }
.award-list h3 { margin: 0 0 6px; color: var(--forest-deep); font: 600 20px var(--serif); }
.award-list p { margin: 0; color: var(--muted); font-size: 13px; }

.signature-section {
  color: white;
  background:
    radial-gradient(circle at 15% 20%, rgba(196,164,124,.14), transparent 30%),
    linear-gradient(180deg, #1A1715, #0D0C0B);
  border-block: 1px solid rgba(255,255,255,.08);
}
.manifesto-shell { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.manifesto-statement { position: relative; padding: 25px 0 25px 35px; border-left: 1px solid rgba(197,168,128,.55); }
.manifesto-statement::before { content: none; }
.manifesto-statement .eyebrow { color: #dfb58d; }
.manifesto-statement h2 { position: relative; color: white; }
.manifesto-statement > p:not(.eyebrow) { max-width: 650px; margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: 15px; }
.manifesto-signoff { display: inline-flex; flex-direction: column; margin-top: 32px; }
.signature-name { color: #dfb58d; font: italic 500 38px/1 "Playfair Display", serif; }
.manifesto-signoff small { margin-top: 8px; color: rgba(255,255,255,.72); font: 600 8px var(--accent); letter-spacing: .15em; text-transform: uppercase; }
.manifesto-principles { border-top: 1px solid rgba(255,255,255,.12); }
.manifesto-principles article { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.manifesto-principles article > span { color: #dfb58d; font: 600 9px var(--accent); letter-spacing: .1em; }
.manifesto-principles h3 { margin: 0 0 6px; color: white; font: 500 20px var(--serif); }
.manifesto-principles p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.6; }

.ventures { background: var(--paper-soft); }
.venture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.venture-card { position: relative; min-height: 280px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(251,247,239,.74); transition: transform .45s var(--ease-out-expo), box-shadow .25s; }
.venture-card::after { content: ""; position: absolute; width: 140px; height: 140px; right: -65px; bottom: -70px; border: 1px solid rgba(197,168,128,.1); border-radius: 50%; box-shadow: 0 0 0 23px rgba(197,168,128,.02); }
.venture-card:hover { transform: translateY(-6px); border-color: rgba(197, 168, 128, 0.3); box-shadow: var(--shadow); }
.venture-card > span { display: inline-block; margin-bottom: 40px; color: var(--forest); font: 600 9px var(--accent); letter-spacing: .12em; text-transform: uppercase; }

.tilt-card {
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift-y: 0px;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, var(--lift-y), 0);
  transform-style: preserve-3d;
  transition: transform .28s var(--ease-out-expo), box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(420px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(196,164,124,.28), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.24), transparent 42%),
    repeating-linear-gradient(135deg, rgba(196,164,124,.07) 0 1px, transparent 1px 13px);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.tilt-card:hover {
  --lift-y: -9px;
  border-color: rgba(196,164,124,.42);
  box-shadow: 0 30px 80px rgba(31,27,24,.22);
}
.tilt-card:hover::before {
  opacity: 1;
}
.tilt-card > * {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.contact {
  color: white;
  background:
    radial-gradient(circle at 82% 20%, rgba(196,164,124,.13), transparent 28%),
    linear-gradient(180deg, #0D0C0B, #080706);
}
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.contact .eyebrow { color: #d7ad83; }
.contact h2 { color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.67); }
.contact-links { display: grid; gap: 10px; margin-top: 35px; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-links span { color: rgba(255,255,255,.54); font-size: 11px; }
.contact-links strong { color: white; font: 500 11px var(--accent); }
.contact-form { display: grid; gap: 19px; padding: 35px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.03); backdrop-filter: blur(15px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 7px; color: rgba(255,255,255,.7); font: 500 10px var(--accent); letter-spacing: .04em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; outline: 0; color: white; background: transparent; }
.contact-form input, .contact-form select { height: 42px; }
.contact-form textarea { padding-top: 10px; resize: vertical; }
.contact-form select option { color: var(--charcoal); background: var(--paper); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #d7ad83; box-shadow: 0 2px 0 rgba(215,173,131,.18); }
.contact-form .button { justify-self: start; margin-top: 3px; }
.form-status { min-height: 18px; margin: 0; color: #d7ad83; font-size: 11px; }

.site-footer { padding: 38px 0; color: rgba(255,255,255,.75); background: #080706; border-top: 1px solid rgba(255,255,255,.1); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.3fr) minmax(260px, 1fr);
  grid-template-areas:
    "brand note socials"
    "legal credit top";
  align-items: center;
  gap: 18px clamp(30px, 5vw, 82px);
}
.footer-brand { grid-area: brand; display: flex; align-items: center; gap: 12px; justify-self: start; }
.footer-brand-logo { flex: 0 0 56px; width: 56px; height: 56px; border-radius: 50%; object-fit: contain; background: white; }
.footer-brand-copy { min-width: 0; }
.footer-brand strong { display: block; color: white; font: 600 18px var(--serif); }
.footer-brand p, .footer-note { margin: 4px 0 0; font-size: 9px; }
.footer-note { grid-area: note; justify-self: center; max-width: 520px; text-align: center; }
.footer-socials { grid-area: socials; display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 12px; justify-self: end; }
.footer-legal { grid-area: legal; justify-self: start; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.5; }
.footer-top { grid-area: top; justify-self: end; color: rgba(255,255,255,.82); font-size: 10px; }
.footer-top:hover { color: #d7ad83; }
.footer-social-link { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: rgba(255,255,255,.76); transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover { color: #080706; border-color: #d7ad83; background: #d7ad83; transform: translateY(-2px); }
.footer-social-link:focus-visible { outline: 2px solid #d7ad83; outline-offset: 3px; }
.footer-credit { grid-area: credit; justify-self: center; color: rgba(255,255,255,.78); font-size: 9px; white-space: nowrap; }
.footer-credit:hover { color: #d7ad83; }

.video-modal { width: min(680px, calc(100% - 28px)); padding: 0; overflow: visible; border: 0; border-radius: var(--radius); color: var(--charcoal); background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.35); }
.video-modal::backdrop { background: rgba(0,0,0,.8); backdrop-filter: blur(8px); }
.modal-content { padding: 38px; }
.modal-content h2 { font-size: 38px; }
.modal-content img { width: 100%; margin: 25px 0 18px; border-radius: 12px; }
.modal-content > p:last-child { color: var(--muted); font-size: 12px; }
.modal-close { position: absolute; z-index: 2; top: -15px; right: -15px; display: grid; place-items: center; width: 38px; height: 38px; border: 0; border-radius: 50%; color: var(--forest); background: var(--paper); box-shadow: 0 8px 20px rgba(0,0,0,.2); font-size: 24px; cursor: pointer; }
.gallery-modal { width: min(1000px, calc(100% - 80px)); max-height: 90vh; padding: 0; overflow: visible; border: 0; border-radius: 20px; background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.5); transform: translateY(18px) scale(.96); opacity: 0; transition: opacity .35s ease, transform .45s var(--ease-out-expo); }
.gallery-modal[open] { opacity: 1; transform: none; }
.gallery-modal::backdrop { background: rgba(0,0,0,.85); backdrop-filter: blur(10px); }
.gallery-modal figure { margin: 0; }
.gallery-modal img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: 20px 20px 0 0; background: var(--cream); }
.gallery-modal-info { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 22px; }
.gallery-modal figcaption { padding: 0; color: rgba(255,255,255,.8); font: 500 12px var(--accent); }
.gallery-modal-count { color: var(--forest); font: 600 10px var(--accent); letter-spacing: .12em; white-space: nowrap; }
.gallery-modal-close { position: absolute; z-index: 2; top: -14px; right: -14px; display: grid; place-items: center; width: 40px; height: 40px; border: 0; border-radius: 50%; color: var(--forest); background: var(--paper); box-shadow: 0 8px 20px rgba(0,0,0,.25); font-size: 25px; cursor: pointer; }
.gallery-modal-nav { position: absolute; z-index: 2; top: 50%; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; color: white; background: rgba(20,22,28,.82); backdrop-filter: blur(10px); cursor: pointer; transform: translateY(-50%); transition: background .2s, border-color .2s; }
.gallery-modal-nav:hover { border-color: var(--forest); background: rgba(197,168,128,.2); }
.gallery-modal-nav svg { width: 22px; }
.gallery-modal-prev { left: -62px; }
.gallery-modal-next { right: -62px; }

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.992);
  transition:
    opacity .42s ease,
    transform .56s var(--ease-out-expo),
    clip-path .56s var(--ease-out-expo);
}
.reveal-mask { clip-path: inset(0 0 100% 0 round 14px); }
.reveal-side { transform: translateX(-16px); }
.reveal-scale { transform: translateY(14px) scale(.975); }
.reveal.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0);
  transform: none;
}
.section-heading h2,
.moments-heading h2,
.media-heading h2,
.about-copy h2,
.recognition-copy h2,
.contact-copy h2,
.manifesto-statement h2 {
  visibility: visible;
}
.reveal.is-visible h2 {
  opacity: 1;
  clip-path: none;
}

@media (max-width: 1100px) {
  .nav-cta { display: none; }
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .quote-card { right: 0; bottom: 72px; width: 195px; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3n + 1) { border-left: 0; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .innovations-layout { grid-template-columns: 1fr; }
  .innovations-sticky { position: relative; top: auto; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-card-large { grid-row: span 1; min-height: 360px; }
  .bento-card-large img { object-position: center 28%; }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 45px; }
  .timeline::before { display: none; }
  .work-grid { grid-template-columns: 1.2fr 1fr; }
  .feature-card { grid-row: span 3; }
  .work-card:last-of-type { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --container: min(100% - 32px, 680px); }
  .section { padding: 80px 0; }
  .defining-moments { padding-bottom: 40px; }
  .about { padding-top: 40px; }
  .site-header {
    background:
      linear-gradient(90deg, rgba(255, 250, 242, .98), rgba(232, 215, 190, .94));
    backdrop-filter: blur(15px);
  }
  .site-header .brand strong { color: var(--forest-deep); }
  .site-header .site-nav a { color: var(--forest-deep); }
  .site-header .brand small { color: var(--bronze-dark); }
  .brand strong { font-size: 16px; }
  .menu-toggle { display: grid; gap: 6px; width: 42px; height: 42px; margin-left: auto; place-content: center; border: 1px solid rgba(196,164,124,.42); border-radius: 50%; background: rgba(255,255,255,.38); cursor: pointer; }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: var(--forest-deep); transition: transform .2s; }
  .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); }
  .site-nav { position: fixed; inset: 76px 16px auto; display: grid; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,253,249,.97); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: none; }
  .site-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border: 0; }
  .site-nav a::before { display: none; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; padding-top: 95px; }
  .hero-grid { display: flex; flex-direction: column; }
  .hero-copy { padding: 55px 0 10px; text-align: center; }
  .hero-roles, .hero-actions { justify-content: center; }
  .hero-intro { margin-inline: auto; }
  .hero-visual { width: 100%; min-height: 625px; }
  .portrait-frame { right: 7%; bottom: 42px; width: 86%; height: 550px; }
  .hero-enhanced.hero-ready .portrait-frame {
    transform: none;
    transition: opacity .45s ease, clip-path .55s var(--ease-out-expo), box-shadow .35s ease;
  }
  .quote-card { right: 0; bottom: 20px; width: 225px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(n) { border-left: 1px solid var(--line); }
  .stat:nth-child(odd) { border-left: 0; }
  .about-grid, .recognition-grid, .contact-shell { grid-template-columns: 1fr; }
  .about-images { min-height: 570px; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .section-heading.split { align-items: start; flex-direction: column; }
  .moments-heading { align-items: start; flex-direction: column; gap: 20px; }
  .innovation-track { padding-left: 42px; }
  .milestone .node { left: -31px; }
  .bento { grid-auto-rows: minmax(210px, auto); }
  .bento-card-large, .bento-card-photo { grid-column: span 2; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { grid-column: span 2; grid-row: auto; }
  .work-card:last-of-type { grid-column: auto; }
  .recognition-grid { gap: 75px; }
  .award-visual { width: min(500px, 90%); margin-inline: auto; }
  .venture-grid { grid-template-columns: 1fr; }
  .ventures .venture-card {
    opacity: 1;
    transform: none;
  }
  .manifesto-shell { grid-template-columns: 1fr; gap: 45px; }
  .media-heading { align-items: start; flex-direction: column; gap: 20px; }
  .webgl-gallery-pin-wrapper { height: auto; }
  .webgl-canvas-container { display: none; }
  .webgl-gallery-overlay {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    display: flex;
    justify-content: center;
    padding: 22px 0 0;
  }
  .webgl-gallery-overlay .gallery-view-all {
    align-self: center;
    margin: 0 auto;
  }
  .webgl-caption-box, .webgl-controls { display: none; }
  .webgl-gallery-source {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 430px);
    margin: 24px auto 0;
  }
  .webgl-source-item {
    position: relative;
    min-height: 246px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--source-image) center / cover no-repeat, #2A2521;
    box-shadow: var(--shadow);
  }
  .webgl-source-item:nth-child(n + 7) { display: none; }
  .webgl-source-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18,16,14,.88));
  }
  .webgl-source-item::after {
    display: none;
  }
  .webgl-source-item[data-image="images/portrait-ivory.jpeg"] { --source-image: url("images/portrait-ivory.jpeg"); }
  .webgl-source-item[data-image="images/teaching-1.jpeg"] { --source-image: url("images/teaching-1.jpeg"); }
  .webgl-source-item[data-image="images/portrait-green.jpeg"] { --source-image: url("images/portrait-green.jpeg"); }
  .webgl-source-item[data-image="images/suit-white-tie.jpeg"] { --source-image: url("images/suit-white-tie.jpeg"); }
  .webgl-source-item[data-image="images/portrait-blue-painting.jpeg"] { --source-image: url("images/portrait-blue-painting.jpeg"); }
  .webgl-source-item[data-image="images/hero-orange-suit-1.jpeg"] { --source-image: url("images/hero-orange-suit-1.jpeg"); }
  .webgl-source-item[data-image="images/suit-teal-lobby.jpeg"] { --source-image: url("images/suit-teal-lobby.jpeg"); }
  .webgl-source-item[data-image="images/hero-white-blazer-1.jpeg"] { --source-image: url("images/hero-white-blazer-1.jpeg"); }
  .webgl-source-item[data-image="images/1.jpeg"] { --source-image: url("images/1.jpeg"); }
  .webgl-source-item[data-image="images/speaking-conference.jpeg"] { --source-image: url("images/speaking-conference.jpeg"); }
  .full-gallery-shell { width: min(100% - 36px, 1400px); padding-top: 28px; }
  .full-gallery-grid { columns: 3 220px; }
  .gallery-modal { width: min(900px, calc(100% - 32px)); }
  .gallery-modal-prev { left: 14px; }
  .gallery-modal-next { right: 14px; }
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "stage stage"
      "green teach"
      "green white"
      "blue blue"
      "orange orange";
    grid-template-rows: 250px 240px 240px 280px 270px;
  }
  .venture-card { min-height: 230px; }
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "note"
      "socials"
      "legal"
      "credit"
      "top";
    justify-items: center;
    text-align: center;
  }
  .footer-brand,
  .footer-note,
  .footer-socials,
  .footer-legal,
  .footer-credit,
  .footer-top { justify-self: center; }
  .footer-brand-logo { margin: 0; }
  .footer-socials { justify-content: center; }
}

@media (max-width: 540px) {
  :root { --container: calc(100% - 26px); }
  .section { padding: 68px 0; }
  .site-loader {
    height: 100dvh;
    min-height: 0;
    padding: 0 18px;
    place-items: center;
  }
  .loader-ambient {
    width: min(88vw, 390px);
    height: min(88vw, 390px);
    top: 50%;
  }
  .loader-stage {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(360px, 82vw, 62svh);
    height: min(360px, 82vw, 62svh);
    max-height: 62svh;
  }
  .precision-ring { inset: 8%; }
  .loader-stage::before {
    inset: 7%;
    box-shadow: 0 0 70px rgba(196,164,124,.16), inset 0 0 46px rgba(184,121,69,.05);
  }
  .loader-stage::after {
    width: 48%;
    height: 48%;
  }
  .loader-words {
    width: min(300px, 76vw);
    min-height: 98px;
  }
  .loader-words span {
    font-size: clamp(21px, 6.8vw, 29px);
    line-height: 1.16;
    white-space: normal;
    text-wrap: balance;
  }
  .loader-mark {
    width: min(330px, 82vw);
  }
  .loader-mark p {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }
  .loader-mark span {
    margin-top: 10px;
    font-size: 9px;
    line-height: 1.55;
    letter-spacing: .11em;
  }
  .loader-identity {
    top: calc(50% + clamp(58px, 17vw, 78px));
    width: min(310px, 80vw);
  }
  .loader-identity strong {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .08em;
  }
  .loader-reveal-ring { width: 76%; }
  .gallery-actions { flex-direction: column; gap: 12px; margin-top: 26px; text-align: center; }
  .webgl-gallery-source {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: min(100%, 360px);
    margin-top: 24px;
  }
  .webgl-source-item {
    min-height: 245px;
    border-radius: 14px;
  }
  .full-gallery-shell { width: min(100% - 24px, 1400px); padding: 20px 0 42px; }
  .full-gallery-header { position: relative; display: block; padding: 0 54px 20px 0; }
  .full-gallery-header h2 { font-size: 34px; }
  .full-gallery-close { position: absolute; top: 0; right: 0; width: 42px; height: 42px; }
  .full-gallery-toolbar { align-items: flex-start; flex-direction: column; gap: 14px; padding: 18px 0 22px; }
  .full-gallery-filters { flex-wrap: nowrap; width: calc(100vw - 24px); padding-bottom: 5px; overflow-x: auto; scrollbar-width: none; }
  .full-gallery-filters::-webkit-scrollbar { display: none; }
  .full-gallery-filters button { flex: 0 0 auto; }
  .full-gallery-grid { columns: 2 145px; column-gap: 10px; }
  .full-gallery-item { margin-bottom: 10px; border-radius: 12px; }
  .full-gallery-item > span,
  .full-gallery-item::after { display: none; }
  .gallery-modal { width: calc(100% - 20px); border-radius: 14px; }
  .gallery-modal img { max-height: 76vh; border-radius: 14px 14px 0 0; }
  .gallery-modal-close { top: 8px; right: 8px; }
  .gallery-modal-nav { top: auto; bottom: 58px; width: 42px; height: 42px; transform: none; }
  .gallery-modal-prev { left: 12px; }
  .gallery-modal-next { right: 12px; }
  .gallery-modal-info { padding: 13px 16px; }
  .defining-moments { padding-bottom: 34px; }
  .about { padding-top: 34px; }
  .nav-shell { gap: 10px; }
  .brand { min-width: 0; gap: 8px; }
  .brand-logo { flex-basis: 55px; width: 55px; height: 38px; }
  .brand strong { font-size: 14px; }
  .menu-toggle { flex: 0 0 42px; }
  .brand small { display: none; }
  .hero-copy { padding-top: 40px; }
  .hero .eyebrow { max-width: 300px; margin-inline: auto; line-height: 1.8; }
  .hero-words { display: none; }
  .hero h1 { font-size: 48px; }
  .hero .hero-impact-title { overflow: visible; }
  .hero h1 em { display: block; }
  .hero-roles { display: block; font-size: 13px; line-height: 2.1; }
  .hero-roles i { display: inline-block; margin: 0 5px; vertical-align: middle; }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 600px; }
  .portrait-frame { right: 0; bottom: 80px; width: 100%; height: 480px; padding: 10px; border-radius: 24px; }
  .portrait-frame::after { inset: 10px; border-radius: 17px; }
  .portrait-frame img { height: 100%; border-radius: 17px; object-position: 50% 30%; }
  .quote-card { right: 12px; bottom: 25px; width: min(245px, 76%); padding: 18px 20px; }
  .quote-card blockquote { margin: 9px 0; font-size: 12px; line-height: 1.5; }
  .quote-card svg { width: 21px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 10px; }
  .stat strong { font-size: 32px; }
  .stat:nth-child(odd) { border-left: 0; }
  .moments-grid { grid-template-columns: 1fr; }
  .moment-card { min-height: auto; }
  .moment-icon { margin-bottom: 30px; }
  .innovations-layout { gap: 34px; }
  .milestone { padding-bottom: 46px; }
  .milestone h3 { font-size: 22px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: minmax(210px, auto); }
  .bento-card, .bento-card-large, .bento-card-photo { grid-column: auto; min-height: 220px; }
  .bento-card-large { min-height: 340px; }
  .bento-stat .num { font-size: 42px; }
  .about-images { min-height: 480px; }
  .image-main { right: 10%; }
  .experience-seal { width: 110px; height: 110px; right: 0; font-size: 20px; }
  .principles div { grid-template-columns: 1fr; gap: 4px; }
  .timeline { grid-template-columns: 1fr; gap: 35px; }
  .timeline-item { max-width: 320px; margin-inline: auto; }
  .work-grid { grid-template-columns: 1fr; }
  .feature-card { grid-column: auto; }
  .card-image { height: 220px; }
  .filter-group { width: 100%; overflow-x: auto; }
  .photo-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "green"
      "teach"
      "white"
      "blue"
      "orange";
    grid-template-rows: 240px 360px 230px 340px 340px 250px;
    gap: 12px;
  }
  .gallery-item > span { left: 14px; bottom: 13px; font-size: 14px; }
  .award-visual { height: 460px; }
  .manifesto-statement { padding-left: 22px; }
  .signature-name { font-size: 32px; }
  .award-badge { right: -8px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .modal-content { padding: 27px 22px; }
  .modal-content h2 { font-size: 30px; }
  .modal-close { top: 8px; right: 8px; }
}

@media (max-width: 540px) and (max-height: 720px) {
  .loader-stage {
    inset: 0;
    width: min(310px, 76vw, 54svh);
    height: min(310px, 76vw, 54svh);
    max-height: 54svh;
  }
  .loader-ambient {
    top: 50%;
  }
  .loader-words {
    width: min(270px, 74vw);
    min-height: 86px;
  }
  .loader-words span {
    font-size: clamp(19px, 6vw, 25px);
  }
  .loader-mark p {
    font-size: clamp(24px, 7vw, 30px);
  }
  .loader-mark span,
  .loader-identity strong {
    font-size: 8px;
    letter-spacing: .08em;
  }
  .loader-identity {
    top: calc(50% + 54px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .physics-canvas,
  .page-light-ribbon,
  body::after { display: none !important; }
  .svg-draw { stroke-dashoffset: 0; }
  .loader-origin,
  .precision-ring,
  .loader-words,
  .loader-particles { display: none !important; }
  .site-loader {
    background:
      radial-gradient(circle at 18% 16%, rgba(196,164,124,.16), transparent 34%),
      radial-gradient(circle at 78% 36%, rgba(184,121,69,.12), transparent 32%),
      linear-gradient(180deg, #080706 0%, #080706 70%, #0D0C0B 100%);
  }
  .loader-stage { width: min(420px, 90vw); aspect-ratio: 1; }
  .hero .hero-grid::before,
  .hero .hero-grid::after,
  .hero .hero-impact-title::after {
    display: none !important;
  }
  .loader-mark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  .loader-identity {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
