:root {
  --void: #070a07;
  --ink: #11150f;
  --deep-green: #132016;
  --moss: #2d4724;
  --antique-gold: #c28e18;
  --soft-gold: #efc765;
  --copper: #8a4826;
  --ivory: #f2eee2;
  --pearl: #ded8c7;
  --gold: #c5901a;
  --sage: #91ad70;
  --forest: #17351f;
  --white: #fffaf0;
  --muted-light: rgba(255, 250, 244, .62);
  --muted-dark: rgba(17, 21, 15, .58);
  --line-light: rgba(255, 250, 244, .16);
  --line-dark: rgba(17, 21, 15, .16);
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, serif;
  --editorial: "Bodoni Moda", Didot, "Times New Roman", serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --hero-logo-size: 380px;
  --nav-logo-size: 73px;
  --nav-brand-text-size: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--void);
  color: var(--white);
  font-family: var(--sans);
  letter-spacing: 0;
}
body.menu-locked { overflow: hidden; }
body.intro-running { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { background: var(--antique-gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--soft-gold); outline-offset: 5px; }

/* Opening sequence. Adjust the logo scale here; the timing lives at the top of script.js. */
.site-intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: all;
  color: var(--white);
  isolation: isolate;
}
.intro-curtain {
  position: absolute;
  z-index: -2;
  left: 0;
  width: 100%;
  height: calc(50% + 1px);
  background: #080b08;
  transition: transform .95s var(--ease);
  will-change: transform;
}
.intro-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(194,142,24, .2), transparent 42%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.018) 50%, transparent);
}
.intro-curtain-top { top: 0; }
.intro-curtain-bottom { bottom: 0; transform: rotate(180deg); }
.intro-seam {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 0;
  height: 1px;
  background: rgba(242,205,116, .78);
  box-shadow: 0 0 16px rgba(219,170,54, .72), 0 0 60px rgba(194,142,24, .4);
  transform: translate(-50%, -50%);
  transition: width .85s var(--ease), opacity .4s ease;
}
.intro-composition {
  width: min(520px, 88vw);
  display: grid;
  justify-items: center;
  transform: translateY(-1.5vh);
  transition: opacity .42s ease, filter .55s ease, transform .65s var(--ease);
}
.intro-aura {
  position: relative;
  width: min(238px, 48vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.intro-aura::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(194,142,24, .12);
  filter: blur(34px);
  opacity: 0;
  transform: scale(.6);
}
.intro-ring {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(245, 236, 207, .22);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.54);
}
.intro-ring-two { inset: 0; border-color: rgba(239,199,101, .13); }
.intro-ring-three { inset: -11%; border-color: rgba(217, 183, 122, .09); }
.intro-logo {
  position: relative;
  width: 82%;
  height: 82%;
  object-fit: contain;
  opacity: 0;
  filter: blur(15px) brightness(1.15) drop-shadow(0 0 25px rgba(194,142,24, .34));
  transform: scale(.82);
}
.intro-wordmark {
  margin-top: -4px;
  width: 100%;
  display: grid;
  justify-items: center;
}
.intro-wordmark > p {
  margin: 0;
  font: 400 clamp(42px, 6vw, 62px)/1 var(--serif);
  opacity: 0;
  transform: translateY(12px);
}
.intro-breath {
  position: relative;
  width: min(270px, 58vw);
  height: 22px;
  margin-top: 15px;
  overflow: hidden;
}
.intro-breath::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,250,244,.55) 20%, var(--soft-gold) 50%, rgba(255,250,244,.55) 80%, transparent);
  transform: scaleX(0);
}
.intro-breath span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 12px var(--soft-gold), 0 0 30px var(--antique-gold);
  opacity: 0;
  transform: translate(-50%, -50%);
}
.intro-promise {
  display: flex;
  gap: 17px;
  color: rgba(255,250,244,.62);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.intro-promise span { opacity: 0; transform: translateY(8px); }

body.intro-ready .intro-aura::before { animation: intro-aura-in 1.8s var(--ease) .08s both; }
body.intro-ready .intro-logo { animation: intro-logo-in 1.15s var(--ease) .06s both, intro-logo-breathe 2.8s ease-in-out 1.12s infinite; }
body.intro-ready .intro-ring-one { animation: intro-ring-in 1.35s var(--ease) .22s both; }
body.intro-ready .intro-ring-two { animation: intro-ring-in 1.5s var(--ease) .36s both; }
body.intro-ready .intro-ring-three { animation: intro-ring-in 1.7s var(--ease) .48s both; }
body.intro-ready .intro-wordmark > p { animation: intro-copy-in .8s var(--ease) .52s both; }
body.intro-ready .intro-breath::before { animation: intro-breath-line 1.05s var(--ease) .72s both; }
body.intro-ready .intro-breath span { animation: intro-breath-pulse 1.4s ease-in-out .9s both; }
body.intro-ready .intro-promise span { animation: intro-copy-in .65s var(--ease) both; }
body.intro-ready .intro-promise span:nth-child(1) { animation-delay: .94s; }
body.intro-ready .intro-promise span:nth-child(2) { animation-delay: 1.08s; }
body.intro-ready .intro-promise span:nth-child(3) { animation-delay: 1.22s; }
body.intro-running .hero-title .line > span { animation-play-state: paused; }

.site-intro.is-leaving { pointer-events: none; }
.site-intro.is-leaving .intro-composition { opacity: 0; filter: blur(12px); transform: translateY(-1.5vh) scale(.96); }
.site-intro.is-leaving .intro-seam { width: 100%; opacity: 0; }
.site-intro.is-leaving .intro-curtain-top { transform: translate3d(0, -101%, 0); }
.site-intro.is-leaving .intro-curtain-bottom { transform: translate3d(0, 101%, 0) rotate(180deg); }

@keyframes intro-logo-in {
  0% { opacity: 0; filter: blur(15px) brightness(1.25) drop-shadow(0 0 36px rgba(194,142,24,.45)); transform: scale(.82); }
  65% { opacity: 1; filter: blur(0) brightness(1.08) drop-shadow(0 0 34px rgba(194,142,24,.32)); transform: scale(1.025); }
  100% { opacity: 1; filter: blur(0) brightness(1) drop-shadow(0 0 20px rgba(194,142,24,.25)); transform: scale(1); }
}
@keyframes intro-logo-breathe { 50% { transform: scale(1.025); filter: brightness(1.05) drop-shadow(0 0 30px rgba(194,142,24,.34)); } }
@keyframes intro-aura-in { 45%, 100% { opacity: 1; transform: scale(1); } 78% { opacity: .72; transform: scale(1.13); } }
@keyframes intro-ring-in { 55% { opacity: .55; } 100% { opacity: .16; transform: scale(1); } }
@keyframes intro-copy-in { to { opacity: 1; transform: none; } }
@keyframes intro-breath-line { to { transform: scaleX(1); } }
@keyframes intro-breath-pulse { 20%, 70% { opacity: 1; } 50% { transform: translate(-50%, -50%) scale(1.8); } 100% { opacity: .35; transform: translate(-50%, -50%) scale(1); } }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.page-noise {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.18) 0, rgba(255,255,255,.18) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: soft-light;
}
.cursor-light {
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(210,166,61, .13), rgba(194,142,24, .04) 42%, transparent 70%);
  transform: translate3d(calc(var(--cursor-x, -300px) - 50%), calc(var(--cursor-y, -300px) - 50%), 0);
  transition: opacity .4s ease;
}
body.cursor-ready .cursor-light { opacity: 1; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 22px;
  left: 38px;
  right: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font: 400 var(--nav-brand-text-size)/1 var(--serif);
}
.brand img { width: var(--nav-logo-size); height: var(--nav-logo-size); object-fit: contain; filter: drop-shadow(0 0 14px rgba(210,166,61, .28)); }
.nav-glass {
  min-height: 54px;
  padding: 5px 6px 5px 24px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  background: rgba(10,15,10, .38);
  box-shadow: 0 22px 70px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.04);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  transition: background .35s ease, border-color .35s ease;
}
.site-header.scrolled .nav-glass { background: rgba(7,10,7,.84); border-color: rgba(255,255,255,.2); }
.nav-glass nav { display: flex; align-items: center; gap: 25px; }
.nav-glass nav a {
  position: relative;
  padding: 5px 0;
  color: rgba(255,250,244,.72);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav-glass nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, var(--soft-gold), var(--gold));
  transition: right .35s var(--ease);
}
.nav-glass nav a:hover::after, .nav-glass nav a.is-current::after { right: 0; }
.nav-book {
  min-width: 112px;
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 3px;
  background: linear-gradient(110deg, #c9992c, #8f6418);
  box-shadow: 0 0 34px rgba(194,142,24,.2);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: background .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}
.nav-book:hover { background: #d9aa35; box-shadow: 0 0 46px rgba(218,173,55,.3); }
.menu-button { display: none; }

.eyebrow, .hero-kicker {
  margin: 0 0 18px;
  color: var(--soft-gold);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero {
  position: relative;
  height: 100svh;
  min-height: 800px;
  max-height: 1080px;
  overflow: hidden;
  background: var(--void);
  isolation: isolate;
}
.hero-media, .hero-video, .hero-film { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08); will-change: transform; }
.hero-video { object-fit: cover; filter: saturate(.78) sepia(.06) contrast(1.04); }
.hero-film {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,10,7,.86) 0%, rgba(7,10,7,.54) 42%, rgba(7,10,7,.16) 74%),
    linear-gradient(0deg, rgba(7,10,7,.92) 0%, rgba(7,10,7,.2) 52%, rgba(7,10,7,.42) 100%);
}
.hero-light {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: blur(14px);
  will-change: transform;
}
.hero-light-one { width: 64vw; height: 26vh; left: 7vw; bottom: 10vh; background: radial-gradient(ellipse, rgba(73,105,54,.2), transparent 68%); transform: translate3d(0,var(--parallax-y,0),0) rotate(-8deg); }
.hero-light-two { width: 34vw; height: 70vh; right: -6vw; top: 8vh; background: radial-gradient(ellipse, rgba(217,183,122,.13), transparent 66%); transform: translate3d(0,var(--parallax-y,0),0); }
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1420px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 160px 7vw 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-kicker { color: rgba(255,250,244,.62); }
.hero-title { margin: 0; font: 500 180px/.72 var(--serif); }
.hero-title .line { display: block; overflow: hidden; padding: .03em 0 .13em; }
.hero-title .line > span { display: block; transform: translateY(115%); animation: title-rise 1.35s var(--ease) .18s forwards; text-shadow: 0 0 48px rgba(255,255,255,.08); }
.hero-lower {
  margin-top: 4px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1.1fr .8fr auto;
  align-items: end;
  gap: 44px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-tagline { margin: 0; font: 400 38px/1.05 var(--serif); }
.hero-tagline em { color: var(--soft-gold); font-weight: 400; }
.hero-intro { max-width: 530px; margin: 0; color: var(--muted-light); font-size: 14px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.liquid-button {
  min-height: 54px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 3px;
  background: linear-gradient(110deg, rgba(194,142,24,.96), rgba(118,80,18,.94));
  box-shadow: 0 16px 50px rgba(70,52,12,.25), inset 0 1px rgba(255,255,255,.18);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: box-shadow .3s ease, filter .3s ease, transform .3s var(--ease);
}
.liquid-button:hover { filter: brightness(1.16); box-shadow: 0 18px 64px rgba(194,142,24,.32), inset 0 1px rgba(255,255,255,.24); }
.text-link { color: rgba(255,250,244,.8); text-underline-offset: 7px; font-size: 12px; white-space: nowrap; }
.text-link:hover { color: white; }
.hero-emblem {
  position: absolute;
  z-index: 2;
  top: 110px;
  right: 7vw;
  width: var(--hero-logo-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate3d(0,var(--parallax-y,0),0);
  will-change: transform;
}
.hero-emblem img { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 28px 35px rgba(0,0,0,.34)) drop-shadow(0 0 26px rgba(194,142,24,.14)); animation: emblem-float 8s ease-in-out infinite; }
.emblem-ring { position: absolute; z-index: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.ring-one { inset: 0; box-shadow: 0 0 90px rgba(194,142,24,.12), inset 0 0 90px rgba(194,142,24,.05); animation: breathe 8s ease-in-out infinite; }
.ring-two { inset: 13%; border-color: rgba(239,199,101,.18); animation: slow-spin 24s linear infinite; }
.emblem-leaf { position: absolute; z-index: 3; width: 16px; height: 34px; border-radius: 100% 0 100% 0; background: linear-gradient(145deg, var(--soft-gold), var(--antique-gold)); box-shadow: 0 0 22px rgba(239,199,101,.3); }
.leaf-one { top: 8%; right: 22%; transform: rotate(38deg); background: linear-gradient(145deg,var(--sage),#315b24); }
.leaf-two { bottom: 12%; left: 18%; transform: rotate(212deg); background: linear-gradient(145deg,var(--gold),#8a4d25); }
.leaf-three { top: 43%; left: -1%; transform: rotate(195deg) scale(.75); background: linear-gradient(145deg,#5f8c31,var(--forest)); }
.hero-rail { position: absolute; z-index: 3; left: 24px; bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,250,244,.42); font-size: 8px; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-rail i { width: 1px; height: 78px; background: linear-gradient(var(--soft-gold),rgba(255,255,255,.1)); }

.facing {
  position: relative;
  min-height: 1180px;
  overflow: hidden;
  padding: 150px 5vw 120px;
  background: var(--ivory);
  color: var(--ink);
  isolation: isolate;
}
.ambient-field { position: absolute; z-index: -1; inset: 0; background: radial-gradient(ellipse at 76% 42%, rgba(194,142,24,.1), transparent 38%), radial-gradient(ellipse at 18% 72%, rgba(67,103,48,.11), transparent 34%); }
.facing-heading { width: min(1320px, 100%); margin: 0 auto; }
.facing-heading h2, .services-heading h2, .booking-intro h2, .faq-heading h2 { margin: 0; font: 400 84px/.9 var(--editorial); }
.facing-heading h2 em, .services-heading h2 em, .booking-intro h2 em, .faq-heading h2 em { color: var(--antique-gold); font-weight: 400; }
.concern-constellation { position: relative; width: min(1320px, 100%); height: 760px; margin: 30px auto 0; }
.constellation-rings { position: absolute; left: 50%; top: 50%; width: 660px; aspect-ratio: 1; transform: translate(-50%,-50%); border: 1px solid rgba(17,21,15,.08); border-radius: 50%; }
.constellation-rings::before, .constellation-rings::after, .constellation-rings span { content: ""; position: absolute; border: 1px solid rgba(194,142,24,.08); border-radius: 50%; }
.constellation-rings::before { inset: 11%; }
.constellation-rings::after { inset: 24%; }
.constellation-rings span:nth-child(1) { inset: -8%; border-color: rgba(18,59,54,.06); }
.constellation-rings span:nth-child(2) { left: 50%; top: -5%; bottom: -5%; width: 1px; border: 0; border-left: 1px solid rgba(17,21,15,.06); border-radius: 0; }
.constellation-rings span:nth-child(3) { top: 50%; left: -5%; right: -5%; height: 1px; border: 0; border-top: 1px solid rgba(17,21,15,.06); border-radius: 0; }
.concern-core {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 420px;
  min-height: 420px;
  padding: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(17,32,19,.96), rgba(7,10,7,.98));
  box-shadow: 0 45px 90px rgba(18,34,20,.22), 0 0 80px rgba(194,142,24,.08), inset 0 1px rgba(255,255,255,.12);
  color: var(--white);
  transform: translate(-50%,-50%);
  text-align: center;
  transition: box-shadow .45s ease;
}
.concern-core.is-changing { animation: core-pulse .55s var(--ease); }
.concern-core > p:first-child { margin: 0 0 13px; color: var(--soft-gold); font-size: 9px; font-weight: 600; text-transform: uppercase; }
.concern-core h3 { margin: 0; font: 400 43px/.94 var(--serif); }
.concern-core > p:nth-child(3) { margin: 21px 0; color: var(--muted-light); font-size: 13px; line-height: 1.65; }
.concern-core a { align-self: center; color: white; text-underline-offset: 6px; font-size: 11px; }
.concern-cloud { position: absolute; inset: 0; }
.concern-node {
  --node-size: 118px;
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  width: var(--node-size);
  height: var(--node-size);
  padding: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,21,15,.15);
  background: rgba(255,255,255,.32);
  box-shadow: 0 18px 44px rgba(44,48,30,.1), inset 0 1px rgba(255,255,255,.65);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  color: var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  animation: node-float 8s ease-in-out var(--delay) infinite;
  transition: color .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease, scale .5s var(--ease);
}
.node-orb { border-radius: 50%; }
.node-leaf { width: 155px; height: 92px; border-radius: 80% 18% 80% 18%; transform: rotate(-8deg); }
.node-leaf span { transform: rotate(8deg); }
.node-leaf-flip { border-radius: 18% 80% 18% 80%; transform: rotate(8deg); }
.node-leaf-flip span { transform: rotate(-8deg); }
.node-pill { width: 180px; height: 62px; border-radius: 40px; }
.node-large { --node-size: 142px; }
.node-small { --node-size: 98px; }
.node-wide { width: 176px; }
.concern-node:hover, .concern-node:focus-visible, .concern-node.is-active {
  z-index: 8;
  border-color: rgba(194,142,24,.45);
  background: rgba(17,32,19,.92);
  box-shadow: 0 24px 58px rgba(17,32,19,.2), 0 0 42px rgba(194,142,24,.2), inset 0 1px rgba(255,255,255,.12);
  color: white;
  scale: 1.08;
  animation-play-state: paused;
}

.quote-stage {
  position: relative;
  min-height: 130vh;
  overflow: hidden;
  padding: 18vh 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #090d09;
}
.quote-stage > *:not(.quote-light) { position: relative; z-index: 2; }
.quote-light { position: absolute; width: 90vw; height: 55vh; left: 5vw; top: 25%; background: radial-gradient(ellipse, rgba(194,142,24,.18), rgba(50,72,30,.06) 40%, transparent 70%); filter: blur(20px); transform: translate3d(0,var(--parallax-y,0),0) rotate(-4deg); }
.quote-stage blockquote { width: min(1280px, 100%); margin: 0 auto; }
.quote-stage > .eyebrow { width: min(1280px,100%); margin-left: auto; margin-right: auto; }
.scrub-quote { margin: 0; color: rgba(255,250,244,.1); font: 400 88px/1.02 var(--serif); }
.scrub-quote .word {
  --word-glow: 0;
  color: rgba(255,250,244,.11);
  transition: color .16s linear, text-shadow .16s linear;
  text-shadow: 0 0 10px rgba(239,199,101,var(--word-glow)), 0 0 30px rgba(194,142,24,var(--word-glow)), 0 0 70px rgba(194,142,24,calc(var(--word-glow) * .6));
}
.scrub-quote .word.lit { color: var(--white); }
.scrub-quote .word.hot { color: #fff8e8; }
.quote-stage cite { display: block; margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--line-light); color: rgba(255,250,244,.52); font-size: 10px; font-style: normal; text-transform: uppercase; }

.sticky-stage { position: relative; height: 520vh; }
.sticky-viewport { position: sticky; top: 0; height: 100vh; min-height: 720px; overflow: hidden; }
.pathway { background: #0b120c; color: white; }
.pathway .sticky-viewport { padding: 88px 0 32px; }
.pathway-heading {
  position: relative;
  z-index: 8;
  width: min(1400px, calc(100% - 10vw));
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.pathway-heading h2 { margin: 0; font: 400 58px/.91 var(--editorial); }
.pathway-heading h2 em { color: var(--soft-gold); font-weight: 400; }
.carousel-controls { display: flex; align-items: center; gap: 14px; }
.carousel-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: white;
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.carousel-controls button:hover { background: var(--antique-gold); border-color: var(--antique-gold); transform: scale(1.06); }
.carousel-controls span { min-width: 56px; color: rgba(255,255,255,.52); font-size: 10px; text-align: center; }
.path-horizontal-track {
  position: absolute;
  left: 5vw;
  top: 275px;
  display: flex;
  gap: 22px;
  transform: translate3d(0,0,0);
  will-change: transform;
}
.path-card {
  position: relative;
  width: min(76vw, 1040px);
  height: calc(100vh - 345px);
  min-height: 410px;
  max-height: 580px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 40px 110px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.04);
  opacity: .52;
  transform: scale(.965);
  transition: opacity .45s ease, transform .6s var(--ease), border-color .45s ease, box-shadow .45s ease;
}
.path-card.is-current { opacity: 1; transform: scale(1); border-color: rgba(239,199,101,.38); box-shadow: 0 45px 120px rgba(0,0,0,.34), 0 0 60px rgba(194,142,24,.08), inset 0 1px rgba(255,255,255,.08); }
.path-card-top { position: relative; z-index: 2; display: flex; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.62); font-size: 9px; text-transform: uppercase; }
.path-card-copy { position: relative; z-index: 2; margin-top: auto; }
.path-card-copy > p:first-child { margin: 0 0 10px; color: var(--soft-gold); font-size: 9px; font-weight: 600; text-transform: uppercase; }
.path-card-copy h3 { margin: 0; font: 400 114px/.75 var(--serif); }
.path-card-copy > p:last-child { max-width: 560px; margin: 30px 0 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.65; }
.path-question { position: relative; z-index: 2; margin: auto 0 0; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.82); font: 400 17px/1.3 var(--serif); }
.card-atmosphere { position: absolute; inset: 0; pointer-events: none; }
.fog-atmosphere { background: radial-gradient(ellipse at 78% 24%, rgba(195,180,122,.16), transparent 35%), linear-gradient(135deg,#20271b,#111710 52%,#26341c); }
.fog-atmosphere i { position: absolute; width: 48%; height: 28%; border-radius: 50%; filter: blur(36px); background: rgba(158,166,123,.1); animation: fog-drift 12s ease-in-out infinite; }
.fog-atmosphere i:nth-child(1) { right: 4%; top: 12%; }
.fog-atmosphere i:nth-child(2) { left: 22%; top: 38%; animation-delay: -4s; }
.fog-atmosphere i:nth-child(3) { right: 16%; bottom: 12%; animation-delay: -8s; }
.grounding-atmosphere { background: radial-gradient(circle at 72% 50%, rgba(217,183,122,.15), transparent 30%), linear-gradient(135deg,#18331e,#0d1a10 60%,#2a2417); }
.grounding-atmosphere span { position: absolute; right: 11%; top: 50%; width: 320px; aspect-ratio: 1; border: 1px solid rgba(145,173,112,.2); border-radius: 50%; transform: translateY(-50%); animation: breathe 8s ease-in-out infinite; }
.grounding-atmosphere span:nth-child(2) { right: calc(11% + 42px); width: 236px; border-color: rgba(217,183,122,.18); animation-delay: -4s; }
.grounding-atmosphere img { position: absolute; right: calc(11% + 68px); top: 50%; width: 184px; transform: translateY(-50%); opacity: .68; filter: drop-shadow(0 0 30px rgba(194,142,24,.15)); }
.clarity-atmosphere { background: linear-gradient(120deg,#f7f0e8,#dcd5ce); }
.path-clarity { color: var(--ink); }
.path-clarity .path-card-top, .path-clarity .path-card-copy > p:last-child, .path-clarity .path-question { color: rgba(17,21,15,.62); border-color: rgba(17,21,15,.15); }
.clarity-atmosphere i { position: absolute; left: 57%; top: -10%; width: 1px; height: 120%; background: rgba(17,21,15,.16); transform-origin: bottom; }
.clarity-atmosphere i:nth-child(1) { transform: rotate(-30deg); }
.clarity-atmosphere i:nth-child(2) { transform: rotate(-10deg); }
.clarity-atmosphere i:nth-child(3) { transform: rotate(12deg); }
.clarity-atmosphere i:nth-child(4) { transform: rotate(32deg); }
.clarity-atmosphere span { position: absolute; left: 57%; top: 44%; width: 22px; aspect-ratio: 1; border-radius: 50%; background: var(--antique-gold); box-shadow: 0 0 0 15px rgba(194,142,24,.1), 0 0 45px rgba(194,142,24,.24); transform: translate(-50%,-50%); animation: clarity-pulse 5s ease-in-out infinite; }
.growth-atmosphere { background: radial-gradient(ellipse at 80% 30%,rgba(239,199,101,.14),transparent 38%), linear-gradient(135deg,#26391d,#0d140e 60%,#18301d); }
.growth-atmosphere span { position: absolute; right: 23%; bottom: -10%; width: 3px; height: 82%; background: linear-gradient(transparent,var(--gold)); transform: rotate(16deg); transform-origin: bottom; }
.growth-atmosphere i { position: absolute; right: 20%; bottom: var(--leaf-bottom); width: 28px; height: 58px; border-radius: 100% 0 100% 0; background: linear-gradient(145deg,var(--sage),#3f6d29); box-shadow: 0 0 26px rgba(112,149,69,.18); transform: rotate(var(--leaf-rotate)); animation: leaf-breathe 7s ease-in-out infinite; }
.growth-atmosphere i:nth-child(1) { --leaf-bottom: 12%; --leaf-rotate: 48deg; right: 16%; }
.growth-atmosphere i:nth-child(2) { --leaf-bottom: 29%; --leaf-rotate: 210deg; right: 28%; animation-delay: -2s; }
.growth-atmosphere i:nth-child(3) { --leaf-bottom: 46%; --leaf-rotate: 50deg; right: 10%; animation-delay: -4s; }
.growth-atmosphere i:nth-child(4) { --leaf-bottom: 60%; --leaf-rotate: 212deg; right: 31%; animation-delay: -1s; }
.growth-atmosphere i:nth-child(5) { --leaf-bottom: 72%; --leaf-rotate: 48deg; right: 14%; animation-delay: -5s; }
.living-atmosphere { background: linear-gradient(130deg,#c28e18,#725317 42%,#17351f); }
.living-atmosphere span { position: absolute; right: -8%; top: -30%; width: 56%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,255,255,.05); }
.living-atmosphere i { position: absolute; width: 38%; height: 1px; right: 0; background: linear-gradient(90deg,transparent,rgba(255,255,255,.35)); transform-origin: right; }
.living-atmosphere i:nth-child(2) { top: 36%; transform: rotate(22deg); }
.living-atmosphere i:nth-child(3) { top: 53%; transform: rotate(-18deg); }
.path-progress { position: absolute; z-index: 8; left: 5vw; right: 5vw; bottom: 20px; height: 2px; background: rgba(255,255,255,.12); }
.path-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--soft-gold),var(--gold),var(--sage)); box-shadow: 0 0 16px rgba(239,199,101,.45); }

.services { padding: 150px 5vw; background: var(--ivory); color: var(--ink); }
.services-heading { width: min(1320px,100%); margin: 0 auto 75px; display: grid; grid-template-columns: 1.15fr .6fr; column-gap: 8vw; }
.services-heading .eyebrow, .services-heading h2 { grid-column: 1; }
.services-heading > p:last-child { grid-column: 2; grid-row: 2; align-self: end; margin: 0; color: var(--muted-dark); line-height: 1.7; }
.service-deck { width: min(1320px,100%); height: 620px; margin: 0 auto; display: flex; gap: 8px; }
.service-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(17,21,15,.15);
  border-radius: 5px;
  background: var(--deep-green);
  color: var(--white);
  transition: flex .75s var(--ease), transform .45s var(--ease), box-shadow .45s ease;
}
.service-card:nth-child(2) { background: #d9d2c1; color: var(--ink); }
.service-card:nth-child(3) { background: var(--forest); color: var(--white); }
.service-card:nth-child(4) { background: #7d3f20; color: white; }
.service-card.is-open { flex: 2.25 1 0; box-shadow: 0 32px 80px rgba(31,40,24,.18); }
.service-trigger { position: relative; z-index: 2; width: 100%; height: 100%; padding: 30px; display: grid; grid-template-rows: auto 1fr auto; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.service-trigger > span { font-size: 9px; font-weight: 600; }
.service-trigger h3 { align-self: end; margin: 0 0 70px; font: 400 43px/.93 var(--serif); writing-mode: vertical-rl; transform: rotate(180deg); transition: font-size .55s var(--ease), margin .55s var(--ease), transform .55s var(--ease), writing-mode .01s .35s; }
.service-trigger i { justify-self: end; font-style: normal; font-size: 20px; transition: transform .35s var(--ease); }
.service-card.is-open .service-trigger { height: auto; min-height: 330px; }
.service-card.is-open .service-trigger h3 { margin: auto 0 0; font-size: 70px; writing-mode: horizontal-tb; transform: none; }
.service-card.is-open .service-trigger i { transform: rotate(45deg); }
.service-detail { position: absolute; z-index: 3; left: 30px; right: 30px; bottom: 30px; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .3s ease .05s, transform .5s var(--ease) .05s; }
.service-card.is-open .service-detail { opacity: 1; transform: none; pointer-events: auto; transition-delay: .26s; }
.service-detail > p { max-width: 520px; margin: 0 0 22px; opacity: .7; line-height: 1.6; }
.service-detail ul { margin: 0; padding: 18px 0 0; display: flex; flex-wrap: wrap; gap: 7px; border-top: 1px solid currentColor; border-color: color-mix(in srgb,currentColor 22%,transparent); list-style: none; }
.service-detail li { padding: 7px 9px; border: 1px solid currentColor; border-color: color-mix(in srgb,currentColor 26%,transparent); border-radius: 2px; font-size: 9px; text-transform: uppercase; }
.service-glow { position: absolute; width: 360px; height: 360px; top: -190px; right: -170px; border-radius: 50%; background: radial-gradient(circle,rgba(239,199,101,.3),transparent 68%); opacity: 0; transition: opacity .5s ease; }
.service-card:nth-child(1) .service-glow { background: radial-gradient(circle,rgba(145,173,112,.26),transparent 68%); }
.service-card:nth-child(3) .service-glow { background: radial-gradient(circle,rgba(197,144,26,.24),transparent 68%); }
.service-card:nth-child(4) .service-glow { background: radial-gradient(circle,rgba(239,199,101,.25),transparent 68%); }
.service-card.is-open .service-glow { opacity: 1; }

.people { min-height: 1100px; padding: 150px 5vw; display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; background: #0a110b; }
.people-sticky { position: sticky; top: 140px; align-self: start; }
.people-sticky h2 { margin: 0; font: 400 70px/.94 var(--editorial); }
.people-sticky h2 em { color: var(--soft-gold); font-weight: 400; }
.people-stream { padding-top: 110px; }
.people-line { min-height: 150px; padding: 30px 0; display: grid; grid-template-columns: 1fr 80px .68fr; align-items: center; gap: 22px; border-bottom: 1px solid rgba(255,255,255,.14); translate: 0 var(--parallax-y,0); }
.people-line > span { font: 400 38px/1 var(--serif); }
.people-line i { height: 1px; background: linear-gradient(90deg,var(--soft-gold),transparent); }
.people-line p { margin: 0; color: var(--muted-light); line-height: 1.55; }

.story-film { position: relative; min-height: 100svh; height: 1050px; max-height: 1200px; overflow: hidden; background: var(--void); isolation: isolate; }
.story-media, .story-video, .story-film-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.story-media { transform: translate3d(0,var(--parallax-y,0),0) scale(1.08); }
.story-video { object-fit: cover; filter: saturate(.8) sepia(.05) contrast(1.03); }
.story-film-shade { z-index: 1; background: linear-gradient(90deg,rgba(7,10,7,.88) 0%,rgba(7,10,7,.55) 45%,rgba(7,10,7,.18) 76%),linear-gradient(0deg,rgba(7,10,7,.7),transparent 65%); }
.story-logo { position: absolute; z-index: 2; right: 8vw; top: 50%; width: 390px; transform: translate3d(0,calc(-50% + var(--parallax-y,0)),0); }
.story-logo::before { content: ""; position: absolute; inset: -12%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 110px rgba(194,142,24,.14),inset 0 0 90px rgba(194,142,24,.06); animation: breathe 8s ease-in-out infinite; }
.story-logo img { position: relative; filter: drop-shadow(0 24px 45px rgba(0,0,0,.35)); }
.story-copy { position: relative; z-index: 3; width: min(1320px,calc(100% - 10vw)); height: 100%; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.story-copy h2 { margin: 0; font: 400 92px/.88 var(--editorial); }
.story-copy > p:not(.eyebrow) { max-width: 610px; margin: 28px 0 0; color: var(--muted-light); font-size: 15px; line-height: 1.75; }
.story-copy .liquid-button { margin-top: 35px; }

.booking { position: relative; overflow: hidden; padding: 150px 5vw; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; background: linear-gradient(145deg,#142016,#070a07 65%); }
.booking-light { position: absolute; width: 72vw; height: 52vh; left: -15vw; top: 7%; background: radial-gradient(ellipse,rgba(194,142,24,.19),transparent 68%); filter: blur(18px); }
.booking-intro, .booking-form { position: relative; z-index: 2; }
.booking-intro h2 { color: white; }
.booking-intro h2 em { color: var(--soft-gold); }
.booking-intro > p:not(.eyebrow) { max-width: 520px; margin: 30px 0 0; color: var(--muted-light); line-height: 1.75; }
.booking-meta { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 8px; }
.booking-meta span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 2px; color: rgba(255,255,255,.68); font-size: 9px; text-transform: uppercase; }
.glass-panel { border: 1px solid rgba(255,255,255,.16); border-radius: 5px; background: rgba(255,255,255,.055); box-shadow: 0 35px 100px rgba(0,0,0,.28),inset 0 1px rgba(255,255,255,.07); backdrop-filter: blur(28px) saturate(130%); -webkit-backdrop-filter: blur(28px) saturate(130%); }
.booking-form { padding: 54px; }
.booking-form label > span, .form-mode legend { display: block; margin-bottom: 9px; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 600; text-transform: uppercase; }
.form-mode { margin: 0 0 35px; padding: 0; border: 0; }
.form-mode legend { margin-bottom: 12px; }
.form-mode label { display: inline-block; margin: 0 7px 7px 0; cursor: pointer; }
.form-mode input { position: absolute; opacity: 0; pointer-events: none; }
.form-mode label span { margin: 0; padding: 10px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 2px; color: white; font-size: 10px; text-transform: none; transition: background .25s,border-color .25s,box-shadow .25s; }
.form-mode input:checked + span { border-color: var(--soft-gold); background: rgba(194,142,24,.22); box-shadow: 0 0 24px rgba(194,142,24,.1); }
.form-mode input:focus-visible + span { outline: 2px solid var(--soft-gold); outline-offset: 3px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.booking-form > label, .field-row label { display: block; margin-bottom: 27px; }
.booking-form input:not([type="radio"]), .booking-form select, .booking-form textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.24); border-radius: 0; outline: 0; background: transparent; color: white; font-size: 15px; transition: border-color .25s,box-shadow .25s; }
.booking-form select { color-scheme: dark; }
.booking-form textarea { min-height: 100px; resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--soft-gold); box-shadow: 0 8px 15px -14px var(--soft-gold); }
.booking-form .field-error { border-color: #ff8585 !important; }
.form-bottom { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.form-bottom p { max-width: 390px; margin: 0; color: rgba(255,255,255,.38); font-size: 9px; line-height: 1.6; }
.submit-button { min-width: 165px; min-height: 52px; padding: 0 19px; display: inline-flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 3px; background: linear-gradient(110deg,var(--antique-gold),#6d4e13); box-shadow: 0 14px 40px rgba(194,142,24,.18); color: white; font-size: 11px; font-weight: 600; cursor: pointer; }
.form-status { min-height: 20px; margin: 17px 0 0; color: var(--soft-gold); font-size: 12px; }

.faq { padding: 150px 5vw; display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; background: var(--ivory); color: var(--ink); }
.faq-heading { position: sticky; top: 140px; align-self: start; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-list details { border-bottom: 1px solid var(--line-dark); }
.faq-list summary { min-height: 94px; display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 16px; cursor: pointer; list-style: none; font: 400 27px/1.2 var(--serif); transition: color .25s ease,padding .4s var(--ease); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { padding-left: 8px; color: var(--antique-gold); }
.faq-list summary span { color: var(--antique-gold); font: 600 9px/1 var(--sans); }
.faq-list summary i { position: relative; width: 18px; height: 18px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { max-width: 720px; margin: -3px 0 34px 54px; color: var(--muted-dark); line-height: 1.75; }

.closing { min-height: 780px; padding: 100px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(ellipse at 50% 45%,rgba(194,142,24,.14),transparent 34%),#080b08; text-align: center; }
.closing-emblem { position: relative; width: 185px; aspect-ratio: 1; display: grid; place-items: center; }
.closing-emblem span { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 80px rgba(194,142,24,.12); animation: breathe 8s ease-in-out infinite; }
.closing-emblem img { width: 78%; }
.closing > p { margin: 35px 0 0; font: 400 92px/.84 var(--editorial); }
.closing > p em { color: var(--soft-gold); font-weight: 400; text-shadow: 0 0 40px rgba(194,142,24,.2); }
.back-top { margin-top: 46px; display: inline-flex; align-items: center; gap: 26px; color: rgba(255,255,255,.72); text-underline-offset: 7px; font-size: 11px; }
.site-footer { min-height: 112px; padding: 24px 5vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); background: var(--void); color: rgba(255,255,255,.4); font-size: 10px; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; justify-self: start; color: white; text-decoration: none; font: 400 20px/1 var(--serif); }
.footer-brand img { width: 40px; height: 40px; object-fit: contain; }
.site-footer > p:nth-child(2) { text-align: center; }
.site-footer > p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s var(--ease),transform .85s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

@keyframes title-rise { to { transform: translateY(0); } }
@keyframes emblem-float { 50% { transform: translateY(-10px); } }
@keyframes breathe { 50% { transform: scale(1.06); opacity: .78; } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes node-float { 50% { translate: 0 -12px; } }
@keyframes core-pulse { 45% { box-shadow: 0 45px 100px rgba(18,34,20,.28),0 0 90px rgba(194,142,24,.2),inset 0 1px rgba(255,255,255,.15); transform: translate(-50%,-50%) scale(1.018); } }
@keyframes fog-drift { 50% { transform: translate3d(-30px,18px,0) scale(1.12); } }
@keyframes clarity-pulse { 50% { transform: translate(-50%,-50%) scale(1.3); box-shadow: 0 0 0 22px rgba(194,142,24,.07),0 0 58px rgba(194,142,24,.3); } }
@keyframes leaf-breathe { 50% { filter: brightness(1.28); scale: 1.08; } }
@keyframes mobile-menu-in { to { opacity: 1; transform: none; } }

@media (hover: hover) and (pointer: fine) {
  .service-card:hover { flex: 2.25 1 0; }
  .service-deck:hover .service-card:not(:hover) { flex: .92 1 0; }
}

@media (max-width: 1100px) {
  :root { --hero-logo-size: 285px; }
  .hero-title { font-size: 132px; }
  .hero-lower { grid-template-columns: 1fr 1fr; }
  .hero-actions { grid-column: 2; }
  .hero-emblem { width: var(--hero-logo-size); }
  .facing-heading h2, .services-heading h2, .booking-intro h2, .faq-heading h2 { font-size: 70px; }
  .concern-constellation { transform: scale(.88); transform-origin: center top; margin-bottom: -80px; }
  .scrub-quote { font-size: 70px; }
  .service-trigger h3 { font-size: 36px; }
  .service-card.is-open .service-trigger h3 { font-size: 58px; }
  .people-sticky h2 { font-size: 56px; }
  .story-copy h2 { font-size: 76px; }
  .story-logo { width: 300px; }
}

@media (max-width: 900px) {
  :root { --hero-logo-size: 225px; }
  .cursor-light { display: none; }
  .site-header { top: 14px; left: 18px; right: 18px; }
  .brand span { display: none; }
  .nav-glass { width: 52px; min-height: 52px; padding: 0; justify-content: center; }
  .nav-glass nav, .nav-book { display: none; }
  .menu-button { width: 50px; height: 50px; padding: 0; border: 0; background: transparent; display: grid; place-content: center; gap: 7px; cursor: pointer; }
  .menu-button span { width: 22px; height: 1px; background: white; transition: transform .35s var(--ease); }
  .site-header.menu-open .nav-glass { position: fixed; top: 9px; left: 9px; right: 9px; width: auto; height: calc(100svh - 18px); padding: 92px 30px 30px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; background: rgba(7,10,7,.97); }
  .site-header.menu-open .brand { position: fixed; z-index: 2; top: 21px; left: 24px; }
  .site-header.menu-open nav { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .site-header.menu-open nav a { padding: 13px 0; border-bottom: 1px solid var(--line-light); font: 400 40px/1 var(--serif); text-transform: none; opacity: 0; transform: translateY(-14px) rotateX(20deg); animation: mobile-menu-in .55s var(--ease) forwards; }
  .site-header.menu-open nav a:nth-child(2) { animation-delay: .05s; }.site-header.menu-open nav a:nth-child(3) { animation-delay: .1s; }.site-header.menu-open nav a:nth-child(4) { animation-delay: .15s; }.site-header.menu-open nav a:nth-child(5) { animation-delay: .2s; }
  .site-header.menu-open .nav-book { margin-top: 24px; display: flex; min-height: 54px; }
  .site-header.menu-open .menu-button { position: fixed; z-index: 3; top: 10px; right: 10px; }
  .site-header.menu-open .menu-button span:first-child { transform: translateY(4px) rotate(45deg); }.site-header.menu-open .menu-button span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: 760px; max-height: 920px; }
  .hero-copy { padding: 130px 28px 40px; }
  .hero-title { font-size: 104px; }
  .hero-lower { grid-template-columns: 1fr; gap: 22px; }
  .hero-tagline { font-size: 32px; }
  .hero-actions { grid-column: auto; }
  .hero-emblem { top: 88px; right: -15px; width: var(--hero-logo-size); opacity: .72; }
  .hero-rail { display: none; }
  .facing { min-height: auto; padding: 110px 24px; }
  .facing-heading h2, .services-heading h2, .booking-intro h2, .faq-heading h2 { font-size: 58px; }
  .concern-constellation { width: calc(100vw - 48px); height: auto; margin-top: 55px; padding: 0 0 18px; display: grid; grid-template-columns: 1fr; gap: 20px; transform: none; overflow: visible; }
  .constellation-rings { display: none; }
  .concern-core { position: relative; left: auto; top: auto; width: 100%; min-height: 350px; padding: 44px 30px; border-radius: 5px; transform: none; text-align: left; order: -1; }
  .concern-core a { align-self: flex-start; }
  .concern-core.is-changing { animation: none; }
  .concern-cloud { position: relative; inset: auto; width: calc(100vw - 24px); margin-left: -24px; padding: 8px 24px 18px; display: flex; align-items: center; gap: 10px; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .concern-cloud::-webkit-scrollbar { display: none; }
  .concern-node { position: relative; left: auto; top: auto; width: 152px; min-width: 152px; height: 92px; padding: 0 18px; display: flex; justify-content: center; border-radius: 50%; transform: none !important; animation: none; text-align: center; scroll-snap-align: center; }
  .concern-node:nth-child(3n + 2) { height: 74px; border-radius: 70% 22% 70% 22%; }
  .concern-node:nth-child(3n) { width: 184px; min-width: 184px; height: 60px; border-radius: 40px; }
  .concern-node span { transform: none; }
  .concern-node:hover, .concern-node:focus-visible, .concern-node.is-active { scale: 1; }
  .quote-stage { min-height: 980px; padding: 140px 28px; }
  .scrub-quote { font-size: 54px; }
  .sticky-stage { height: auto; }
  .sticky-viewport { position: relative; height: auto; min-height: 0; overflow: visible; }
  .pathway .sticky-viewport { padding: 100px 0 70px; overflow: hidden; }
  .pathway-heading { width: calc(100% - 48px); align-items: flex-end; }
  .pathway-heading h2 { font-size: 48px; }
  .path-horizontal-track { position: relative; left: auto; top: auto; width: 100%; margin-top: 55px; padding: 0 24px 24px; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 24px; transform: none !important; scrollbar-width: none; }
  .path-horizontal-track::-webkit-scrollbar { display: none; }
  .path-card { width: 84vw; height: 560px; min-height: 0; max-height: none; scroll-snap-align: start; opacity: 1; transform: none; }
  .path-progress { left: 24px; right: 24px; bottom: 35px; }
  .services { padding: 110px 24px; }
  .services-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 55px; }
  .services-heading .eyebrow, .services-heading h2, .services-heading > p:last-child { grid-column: 1; grid-row: auto; }
  .service-deck { height: auto; display: grid; }
  .service-card, .service-card.is-open { flex: none; min-height: 115px; max-height: 115px; transition: max-height .7s var(--ease),box-shadow .45s ease; }
  .service-card.is-open { min-height: 510px; max-height: 510px; }
  .service-trigger { min-height: 113px; height: 113px; padding: 25px; display: grid; grid-template-columns: 36px 1fr auto; grid-template-rows: 1fr; align-items: center; }
  .service-card.is-open .service-trigger { min-height: 250px; height: 250px; }
  .service-trigger h3, .service-card.is-open .service-trigger h3 { margin: 0; align-self: center; font-size: 35px; writing-mode: horizontal-tb; transform: none; }
  .service-detail { left: 25px; right: 25px; bottom: 30px; }
  .people { min-height: auto; padding: 110px 24px; grid-template-columns: 1fr; gap: 60px; }
  .people-sticky { position: relative; top: auto; }
  .people-stream { padding-top: 0; }
  .people-line { min-height: 130px; grid-template-columns: 1fr 40px; }
  .people-line p { grid-column: 1; }
  .story-film { min-height: 850px; height: 100svh; }
  .story-copy { width: calc(100% - 48px); justify-content: flex-end; padding-bottom: 70px; }
  .story-copy h2 { font-size: 65px; }
  .story-logo { top: 120px; right: 20px; width: 230px; transform: translate3d(0,var(--parallax-y,0),0); opacity: .74; }
  .booking { padding: 110px 24px; grid-template-columns: 1fr; gap: 65px; }
  .faq { padding: 110px 24px; grid-template-columns: 1fr; gap: 55px; }
  .faq-heading { position: relative; top: auto; }
  .closing > p { font-size: 70px; }
  .site-footer { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .footer-brand, .site-footer > p:nth-child(2), .site-footer > p:last-child { justify-self: center; text-align: center; margin: 0; }
}

@media (max-width: 560px) {
  :root { --hero-logo-size: 180px; }
  .hero { height: 100svh; min-height: 720px; }
  .hero-video { object-position: 58% center; }
  .hero-copy { padding: 120px 18px 26px; }
  .hero-title { font-size: 72px; }
  .hero-emblem { top: 82px; right: -35px; width: var(--hero-logo-size); opacity: .58; }
  .hero-tagline { font-size: 28px; }
  .hero-intro { font-size: 13px; }
  .hero-actions { width: 100%; justify-content: space-between; gap: 14px; }
  .liquid-button { min-height: 50px; padding: 0 15px; gap: 14px; }
  .text-link { font-size: 11px; }
  .facing { padding-left: 18px; padding-right: 18px; }
  .facing-heading h2, .services-heading h2, .booking-intro h2, .faq-heading h2 { font-size: 48px; }
  .concern-constellation { width: calc(100vw - 36px); }
  .concern-cloud { width: 100vw; margin-left: -18px; padding-left: 18px; padding-right: 18px; }
  .concern-core { min-height: 380px; }
  .concern-core h3 { font-size: 39px; }
  .quote-stage { min-height: 900px; padding: 120px 18px; }
  .scrub-quote { font-size: 43px; }
  .pathway-heading { width: calc(100% - 36px); align-items: flex-start; flex-direction: column; gap: 22px; }
  .pathway-heading h2 { font-size: 43px; }
  .carousel-controls { align-self: flex-end; }
  .path-horizontal-track { padding-left: 18px; padding-right: 18px; scroll-padding-left: 18px; }
  .path-card { width: 88vw; height: 520px; padding: 28px 24px; }
  .path-card-copy h3 { font-size: 76px; }
  .path-card-copy > p:last-child { font-size: 14px; }
  .grounding-atmosphere span { right: -22%; width: 270px; }.grounding-atmosphere span:nth-child(2) { right: -10%; width: 190px; }.grounding-atmosphere img { right: 5%; width: 140px; }
  .services { padding-left: 18px; padding-right: 18px; }
  .service-card.is-open { min-height: 535px; max-height: 535px; }
  .service-trigger, .service-card.is-open .service-trigger { padding: 21px; }
  .service-trigger h3, .service-card.is-open .service-trigger h3 { font-size: 30px; }
  .people { padding-left: 18px; padding-right: 18px; }
  .people-sticky h2 { font-size: 48px; }
  .people-line > span { font-size: 30px; }
  .story-film { min-height: 760px; }
  .story-video { object-position: 60% center; }
  .story-copy { width: calc(100% - 36px); padding-bottom: 40px; }
  .story-copy h2 { font-size: 52px; }
  .story-copy > p:not(.eyebrow) { font-size: 13px; margin-top: 18px; }
  .story-logo { width: 185px; }
  .booking { padding-left: 18px; padding-right: 18px; }
  .booking-form { padding: 30px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-bottom { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .faq { padding-left: 18px; padding-right: 18px; }
  .faq-list summary { min-height: 82px; grid-template-columns: 26px 1fr 18px; font-size: 20px; }
  .faq-list details > p { margin-left: 42px; }
  .closing { min-height: 650px; }
  .closing-emblem { width: 145px; }
  .closing > p { font-size: 54px; }
  .intro-aura { width: min(190px, 50vw); }
  .intro-wordmark > p { font-size: 43px; }
  .intro-promise { gap: 10px; font-size: 8px; }
}

/* Phone art direction: isolated from the desktop composition. */
@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  main > section { scroll-margin-top: 72px; }
  :root {
    --nav-logo-size: 54px;
    --hero-logo-size: 205px;
  }

  .site-header {
    top: max(12px, env(safe-area-inset-top));
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
    align-items: flex-start;
  }
  .brand img { filter: drop-shadow(0 8px 18px rgba(0,0,0,.2)) drop-shadow(0 0 12px rgba(194,142,24,.18)); }
  .brand { transition: opacity .35s ease, transform .45s var(--ease); }
  .site-header.scrolled:not(.menu-open) .brand { opacity: 0; transform: translateY(-10px); pointer-events: none; }
  .nav-glass {
    width: 50px;
    min-height: 50px;
    border-color: rgba(255,255,255,.16);
    background: rgba(7,10,7,.72);
    box-shadow: 0 16px 42px rgba(0,0,0,.18), inset 0 1px rgba(255,255,255,.06);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
  }
  .menu-button { width: 48px; height: 48px; }
  .site-header.menu-open .nav-glass {
    top: max(8px, env(safe-area-inset-top));
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    height: calc(100svh - max(16px, env(safe-area-inset-top)) - env(safe-area-inset-bottom));
    padding: 88px 26px max(28px, env(safe-area-inset-bottom));
    justify-content: flex-end;
    background:
      radial-gradient(circle at 18% 12%, rgba(194,142,24,.13), transparent 28%),
      rgba(7,10,7,.97);
  }
  .site-header.menu-open .brand { opacity: 1; transform: none; }
  .site-header.menu-open nav a { padding: 15px 0; font-size: 38px; }
  .site-header.menu-open .nav-book { margin-top: 20px; }

  .hero {
    height: 100svh;
    min-height: 700px;
    max-height: none;
  }
  .hero-media { scale: 1.03; }
  .hero-film {
    background:
      linear-gradient(0deg, rgba(7,10,7,.94) 0%, rgba(7,10,7,.5) 48%, rgba(7,10,7,.35) 100%),
      linear-gradient(90deg, rgba(7,10,7,.46), rgba(7,10,7,.08));
  }
  .hero-copy {
    padding: 118px 18px max(26px, calc(20px + env(safe-area-inset-bottom)));
  }
  .hero-kicker { margin-bottom: 12px; font-size: 9px; }
  .hero-title { font-size: 78px; line-height: .78; }
  .hero-lower { margin-top: 9px; padding-top: 18px; gap: 17px; }
  .hero-tagline { max-width: 350px; font-size: 29px; line-height: 1.04; }
  .hero-intro { max-width: 355px; font-size: 12px; line-height: 1.7; }
  .hero-actions { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 16px; }
  .liquid-button { min-height: 50px; justify-content: space-between; }
  .hero-emblem { top: 67px; right: -50px; width: var(--hero-logo-size); opacity: .48; }
  .ring-two { display: none; }

  .facing {
    padding: 94px 18px 76px;
    background:
      radial-gradient(circle at 94% 22%, rgba(194,142,24,.1), transparent 25%),
      var(--ivory);
  }
  .facing-heading h2,
  .services-heading h2,
  .booking-intro h2,
  .faq-heading h2 { font-size: 52px; line-height: .92; }
  .concern-constellation { width: 100%; margin-top: 42px; padding-bottom: 0; gap: 14px; }
  .concern-core {
    min-height: 330px;
    padding: 35px 30px;
    border-color: rgba(239,199,101,.24);
    background:
      radial-gradient(circle at 86% 10%, rgba(194,142,24,.14), transparent 34%),
      linear-gradient(145deg, #15251a, #080e09 72%);
    box-shadow: 0 28px 75px rgba(17,32,19,.18), inset 0 1px rgba(255,255,255,.09);
  }
  .concern-core h3 { max-width: 290px; font-size: 43px; }
  .concern-core > p:nth-child(3) { max-width: 310px; margin: 19px 0 24px; }
  .concern-cloud {
    width: calc(100vw - 18px);
    margin-left: 0;
    padding: 8px 18px 20px 0;
    gap: 9px;
    scroll-padding-left: 0;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg,#000 0,#000 calc(100% - 34px),transparent 100%);
    -webkit-mask-image: linear-gradient(90deg,#000 0,#000 calc(100% - 34px),transparent 100%);
  }
  .concern-node {
    min-width: 142px;
    width: 142px;
    height: 78px;
    border-color: rgba(17,21,15,.13);
    background: rgba(255,255,255,.38);
    box-shadow: 0 14px 34px rgba(44,48,30,.08), inset 0 1px rgba(255,255,255,.76);
    scroll-snap-align: start;
  }
  .concern-node:nth-child(3n + 2) { height: 78px; }
  .concern-node:nth-child(3n) { min-width: 168px; width: 168px; height: 64px; }
  .concern-node.is-active {
    border-color: rgba(194,142,24,.5);
    background: var(--deep-green);
    box-shadow: 0 18px 40px rgba(17,32,19,.2), 0 0 28px rgba(194,142,24,.1);
  }

  .quote-stage {
    min-height: 100svh;
    padding: 96px 18px 72px;
    justify-content: center;
  }
  .quote-light { width: 130vw; height: 46vh; left: -20vw; top: 31%; }
  .scrub-quote { font-size: 46px; line-height: 1.015; }
  .quote-stage cite { margin-top: 30px; }

  .pathway .sticky-viewport { padding: 88px 0 58px; }
  .pathway-heading { width: calc(100% - 36px); align-items: flex-end; }
  .pathway-heading h2 { font-size: 43px; }
  .carousel-controls { gap: 9px; }
  .carousel-controls button { width: 42px; height: 42px; }
  .path-horizontal-track {
    margin-top: 40px;
    padding: 0 18px 25px;
    gap: 12px;
    scroll-padding-left: 18px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }
  .path-card {
    width: min(82vw, 335px);
    height: 525px;
    padding: 27px 24px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-color: rgba(255,255,255,.18);
  }
  .path-card-copy h3 { font-size: 72px; }
  .path-card-copy > p:last-child { margin-top: 23px; font-size: 13px; line-height: 1.6; }
  .path-question { font-size: 16px; }
  .path-progress { left: 18px; right: 18px; bottom: 28px; }

  .services { padding: 94px 18px; }
  .services-heading { gap: 20px; margin-bottom: 43px; }
  .services-heading > p:last-child { max-width: 330px; font-size: 13px; }
  .service-deck { gap: 8px; }
  .service-card,
  .service-card.is-open {
    min-height: 98px;
    max-height: 98px;
    scroll-margin-top: 82px;
    border-radius: 4px;
  }
  .service-card.is-open { min-height: 455px; max-height: 455px; }
  .service-trigger {
    min-height: 96px;
    height: 96px;
    padding: 20px;
    grid-template-columns: 30px 1fr 22px;
  }
  .service-card.is-open .service-trigger { min-height: 205px; height: 205px; }
  .service-trigger h3,
  .service-card.is-open .service-trigger h3 { font-size: 30px; line-height: .92; }
  .service-detail { left: 20px; right: 20px; bottom: 25px; }
  .service-detail > p { margin-bottom: 18px; font-size: 13px; line-height: 1.55; }
  .service-detail ul { padding-top: 14px; }

  .people {
    min-height: auto;
    padding: 94px 0 76px;
    gap: 42px;
    overflow: hidden;
  }
  .people-sticky { padding: 0 18px; }
  .people-sticky h2 { font-size: 50px; line-height: .94; }
  .people-stream {
    width: 100%;
    padding: 0 18px 22px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 18px;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .people-stream::-webkit-scrollbar { display: none; }
  .people-line {
    position: relative;
    width: min(78vw, 310px);
    min-width: min(78vw, 310px);
    min-height: 292px;
    padding: 28px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 4px;
    background: linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.018));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    translate: none;
  }
  .people-line::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -70px;
    width: 170px;
    aspect-ratio: 1;
    border: 1px solid rgba(239,199,101,.13);
    border-radius: 50%;
    box-shadow: 0 0 55px rgba(194,142,24,.08);
  }
  .people-line > span { max-width: 240px; font-size: 34px; line-height: .98; }
  .people-line i { width: 54px; background: linear-gradient(90deg,var(--soft-gold),transparent); }
  .people-line p { max-width: 210px; font-size: 13px; }
  .people-line:nth-child(even) { background: linear-gradient(145deg,rgba(79,113,55,.13),rgba(255,255,255,.018)); }

  .story-film { height: 100svh; min-height: 700px; }
  .story-film-shade {
    background:
      linear-gradient(0deg,rgba(7,10,7,.97) 0%,rgba(7,10,7,.68) 50%,rgba(7,10,7,.2) 100%),
      linear-gradient(90deg,rgba(7,10,7,.58),transparent);
  }
  .story-logo { top: 78px; right: -24px; width: 175px; opacity: .46; }
  .story-copy { width: calc(100% - 36px); padding-bottom: max(38px, calc(24px + env(safe-area-inset-bottom))); }
  .story-copy h2 { font-size: 53px; line-height: .88; }
  .story-copy > p:not(.eyebrow) { max-width: 350px; font-size: 12px; line-height: 1.65; }
  .story-copy .liquid-button { margin-top: 26px; }

  .booking { padding: 94px 18px; gap: 44px; }
  .booking-intro > p:not(.eyebrow) { margin-top: 23px; font-size: 13px; }
  .booking-meta { margin-top: 28px; }
  .booking-form { padding: 28px 20px; }
  .form-mode { margin-bottom: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .form-mode legend { grid-column: 1 / -1; }
  .form-mode label { display: block; margin: 0; }
  .form-mode label span { min-height: 42px; display: grid; place-items: center; padding: 8px; text-align: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking-form > label,
  .field-row label { margin-bottom: 24px; }
  .booking-form input:not([type="radio"]),
  .booking-form select,
  .booking-form textarea { font-size: 16px; }
  .form-bottom { align-items: stretch; flex-direction: column; gap: 22px; }
  .submit-button { width: 100%; min-height: 54px; }

  .faq { padding: 94px 18px; gap: 38px; }
  .faq-list summary { min-height: 78px; grid-template-columns: 25px 1fr 18px; gap: 12px; font-size: 20px; }
  .faq-list details > p { margin: 0 0 28px 37px; padding-right: 5px; font-size: 13px; }

  .closing {
    min-height: 100svh;
    padding: 84px 18px max(55px, calc(35px + env(safe-area-inset-bottom)));
  }
  .closing-emblem { width: 132px; }
  .closing > p { margin-top: 30px; font-size: 57px; line-height: .88; }
  .back-top { margin-top: 36px; }
  .site-footer { padding: 34px 18px max(34px, calc(22px + env(safe-area-inset-bottom))); gap: 18px; }
}

@media (max-width: 370px) {
  :root { --nav-logo-size: 50px; --hero-logo-size: 185px; }
  .hero-title { font-size: 68px; }
  .hero-tagline { font-size: 26px; }
  .hero-actions { gap: 11px; }
  .liquid-button { padding: 0 13px; gap: 10px; font-size: 11px; }
  .facing-heading h2,
  .services-heading h2,
  .booking-intro h2,
  .faq-heading h2 { font-size: 46px; }
  .scrub-quote { font-size: 41px; }
  .pathway-heading h2 { font-size: 39px; }
  .carousel-controls button { width: 39px; height: 39px; }
  .path-card { width: calc(100vw - 50px); height: 510px; }
  .path-card-copy h3 { font-size: 64px; }
  .service-trigger h3,
  .service-card.is-open .service-trigger h3 { font-size: 27px; }
  .people-sticky h2 { font-size: 45px; }
  .story-copy h2 { font-size: 47px; }
  .closing > p { font-size: 51px; }
}

@media (max-width: 900px) and (max-height: 620px) and (orientation: landscape) {
  .hero { min-height: 620px; }
  .hero-copy { padding-top: 90px; }
  .hero-title { font-size: 68px; }
  .hero-emblem { width: 160px; top: 58px; }
  .story-film { min-height: 620px; }
  .story-copy { padding-top: 100px; }
  .story-copy h2 { font-size: 46px; }
  .closing { min-height: 620px; }
}

@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, .hero-title .line > span { opacity: 1; transform: none; }
  [data-parallax] { --parallax-y: 0px !important; }
  .concern-node { translate: none !important; }
  .intro-logo, .intro-wordmark > p, .intro-promise span { opacity: 1; filter: none; transform: none; }
}
