:root {
  --black: #09090b;
  --black-soft: #111216;
  --ink: #121216;
  --white: #fff;
  --cream: #f2efe8;
  --cream-2: #e3ded3;
  --orange: #ff7a00;
  --orange-bright: #ff9d2e;
  --blue: #375dff;
  --silver: #bcc0c8;
  --muted: rgba(255,255,255,.58);
  --line: rgba(255,255,255,.14);
  --ease-lux: cubic-bezier(.16, 1, .3, 1);
  --shell: min(92vw, 1440px);
  --mx: 50%;
  --my: 30%;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a, input, textarea, select { touch-action: manipulation; }
::selection { background: var(--orange); color: var(--black); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 1rem;
  top: -5rem;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  background: var(--black);
  transition: opacity .7s var(--ease-lux), visibility .7s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark { width: 78px; height: 78px; }
.preloader-word {
  font-family: 'Manrope', sans-serif;
  font-size: .76rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: .13em;
}
.preloader-word span { color: var(--orange); }
.preloader-line { width: 180px; height: 1px; overflow: hidden; background: rgba(255,255,255,.12); }
.preloader-line i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--blue)); transform: translateX(-100%); animation: loaderLine 1.4s var(--ease-lux) infinite; }
@keyframes loaderLine { 65%,100% { transform: translateX(100%); } }

.cursor-dot, .cursor-ring, .cursor-glow { display: none; pointer-events: none; position: fixed; z-index: 9997; }
.cursor-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.cursor-ring { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; mix-blend-mode: difference; }
.cursor-glow {
  z-index: 0;
  width: 38vw;
  height: 38vw;
  left: var(--mx);
  top: var(--my);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55,93,255,.10), transparent 66%);
  filter: blur(10px);
}

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(180deg, rgba(9,9,11,.72), transparent);
  transition: transform .55s var(--ease-lux), background .35s ease, backdrop-filter .35s ease;
}
.site-nav.scrolled { background: rgba(9,9,11,.78); backdrop-filter: blur(18px); }
.site-nav.nav-hidden { transform: translateY(-100%); }
.brand { display: inline-flex; align-items: center; gap: .7rem; position: relative; z-index: 2; }
.brand-bolt {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: var(--black);
  background: var(--orange);
  font-size: 1.35rem;
  font-weight: 900;
  clip-path: polygon(18% 0, 100% 0, 67% 38%, 94% 38%, 22% 100%, 42% 55%, 8% 55%);
}
.brand-type { font-family: 'Manrope', sans-serif; font-size: .93rem; font-weight: 800; font-style: italic; letter-spacing: -.035em; }
.brand-type strong { color: var(--orange); font-weight: inherit; }
.nav-links, .nav-cta { display: none; }
.menu-toggle {
  position: relative;
  z-index: 102;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  cursor: pointer;
}
.menu-toggle span { position: absolute; left: 12px; width: 18px; height: 1px; background: var(--white); transition: transform .35s var(--ease-lux), top .35s var(--ease-lux); }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0;
  padding: 120px 8vw 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: radial-gradient(circle at 80% 20%, rgba(255,122,0,.18), transparent 33%), var(--black);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .4s ease, visibility .4s, transform .6s var(--ease-lux);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: 'Manrope', sans-serif; font-size: clamp(2.6rem, 12vw, 5rem); font-weight: 500; line-height: 1; letter-spacing: -.06em; }
.mobile-menu nav small { display: inline-block; width: 30px; color: var(--orange); font-size: .62rem; letter-spacing: .08em; }
.mobile-menu > a { color: var(--muted); font-size: .85rem; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}
#hero-webgl { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; opacity: .72; }
.gradient-mesh { position: absolute; z-index: -2; inset: 0; overflow: hidden; background: linear-gradient(125deg, #08090d 10%, #0b0b0c 54%, #17120e 100%); }
.mesh-orb { position: absolute; border-radius: 50%; filter: blur(58px); opacity: .52; animation: floatOrb 11s ease-in-out infinite alternate; }
.orb-one { width: 70vw; height: 70vw; left: -35vw; top: -23vw; background: rgba(55,93,255,.25); }
.orb-two { width: 60vw; height: 60vw; right: -34vw; bottom: -26vw; background: rgba(255,122,0,.26); animation-delay: -4s; }
.cloud { position: absolute; width: 80vw; height: 25vw; border-radius: 50%; filter: blur(70px); opacity: .12; background: white; animation: cloudDrift 22s ease-in-out infinite alternate; }
.cloud-one { left: -32vw; top: 12%; }
.cloud-two { right: -45vw; bottom: 5%; animation-delay: -8s; }
@keyframes floatOrb { to { transform: translate3d(8vw, 5vw, 0) scale(1.12); } }
@keyframes cloudDrift { to { transform: translateX(35vw) scale(.8); opacity: .04; } }

.hero-photo { position: absolute; z-index: -1; inset: 35% 0 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 120%; object-fit: cover; object-position: 53% 40%; filter: saturate(.82) contrast(1.06); }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--black) 0%, rgba(9,9,11,.15) 36%, rgba(9,9,11,.56) 100%), linear-gradient(90deg, rgba(9,9,11,.56), transparent 70%); }
.hero-content { width: var(--shell); min-height: 100svh; margin: 0 auto; padding: 132px 0 82px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 1.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; color: rgba(255,255,255,.64); font-size: .64rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.eyebrow i { width: 26px; height: 1px; background: var(--orange); }
.eyebrow span { display: none; }
.hero h1 { margin: 0; font-family: 'Manrope', sans-serif; font-size: clamp(4rem, 19vw, 8.2rem); line-height: .84; font-weight: 600; letter-spacing: -.085em; }
.hero-line { display: block; overflow: hidden; padding-right: .08em; }
.hero-line > span { display: block; }
.hero-line.accent { color: var(--orange); }
.hero-bottom { display: grid; gap: 1.6rem; margin-top: 2.2rem; }
.hero-intro { max-width: 540px; margin: 0; color: rgba(255,255,255,.7); font-size: .98rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.pill-button {
  min-height: 58px;
  padding: .5rem .55rem .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border: 0;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .35s var(--ease-lux), box-shadow .35s ease;
}
.pill-button b { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.16); font-size: 1rem; }
.pill-button.primary { background: var(--orange); color: var(--black); box-shadow: 0 16px 50px rgba(255,122,0,.18); }
.pill-button:hover { box-shadow: 0 18px 70px rgba(255,122,0,.32); }
.text-link { display: inline-flex; flex-direction: column; color: rgba(255,255,255,.48); font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; }
.text-link span { color: var(--white); font-size: .8rem; text-transform: none; letter-spacing: 0; }
.hero-glass-card {
  position: absolute;
  left: 4vw;
  bottom: 24px;
  display: none;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 16px;
  background: rgba(12,12,15,.46);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.status-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: #50eb82; box-shadow: 0 0 0 7px rgba(80,235,130,.12); }
.hero-glass-card div { display: flex; flex-direction: column; gap: .16rem; }
.hero-glass-card small { color: rgba(255,255,255,.46); font-size: .6rem; text-transform: uppercase; letter-spacing: .08em; }
.hero-glass-card strong { font-size: .7rem; font-weight: 600; }
.scroll-cue { position: absolute; right: 4vw; bottom: 26px; display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.38); font-size: .56rem; text-transform: uppercase; letter-spacing: .15em; transform: rotate(90deg); transform-origin: right center; }
.scroll-cue i { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.scroll-cue i::after { content: ''; position: absolute; inset: 0; background: var(--orange); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.brand-marquee { overflow: hidden; padding: .9rem 0; border-block: 1px solid rgba(255,255,255,.12); background: var(--black-soft); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 1.2rem; animation: marquee 38s linear infinite; }
.marquee-track span { font-family: 'Manrope', sans-serif; font-size: .66rem; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.marquee-track i {
  width: 10px;
  height: 17px;
  flex: 0 0 10px;
  display: block;
  background: var(--orange);
  clip-path: polygon(55% 0, 100% 0, 66% 39%, 92% 39%, 27% 100%, 43% 56%, 14% 56%);
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section-light { background: var(--cream); color: var(--ink); }
.section-shell { width: var(--shell); margin-inline: auto; }
.services { overflow: hidden; padding: 90px 0 0; }
.section-label { display: flex; align-items: center; gap: .9rem; margin: 0 0 2rem; color: #6f6c66; font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.section-label span { color: #a94f00; }
.heading-grid { display: grid; gap: 1.7rem; }
.display-heading { margin: 0; font-family: 'Manrope', sans-serif; font-size: clamp(3.1rem, 14vw, 7rem); line-height: .9; font-weight: 500; letter-spacing: -.075em; }
.display-heading em { color: var(--orange); font-style: normal; }
.section-copy { max-width: 480px; margin: 0; color: #67645e; font-size: .95rem; line-height: 1.75; }
.service-stage { width: 100%; margin-top: 3.5rem; overflow: hidden; }
.service-track { display: flex; width: max-content; padding: 0 4vw 90px; gap: 14px; }
.service-panel {
  position: relative;
  width: min(82vw, 410px);
  height: min(108vw, 540px);
  min-height: 470px;
  padding: 1.7rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 6px;
  color: var(--white);
  transform: translateZ(0);
  transition: transform .55s var(--ease-lux), border-radius .55s var(--ease-lux);
}
.service-panel:hover { transform: translateY(-9px); border-radius: 26px; }
.service-orange { background: var(--orange); color: var(--black); }
.service-dark { background: #121318; }
.service-blue { background: var(--blue); }
.service-cream { background: #dbd5c9; color: var(--ink); }
.service-paper { background: #e7e5df; color: var(--ink); }
.service-panel > * { position: relative; z-index: 1; }
.service-index { font-size: .65rem; font-weight: 700; letter-spacing: .1em; }
.service-art {
  width: 100%;
  height: 40%;
  margin-block: .25rem;
  display: grid;
  place-items: center;
  color: inherit;
  --art-accent: var(--orange);
}
.service-orange .service-art { --art-accent: #2447d8; }
.service-dark .service-art { --art-accent: var(--orange); }
.service-paper .service-art { --art-accent: var(--blue); }
.service-blue .service-art { --art-accent: #ffb462; }
.service-cream .service-art { --art-accent: #e65f00; }
.service-art svg { width: 100%; height: 100%; overflow: visible; transition: transform .7s var(--ease-lux); }
.service-art path, .service-art circle, .service-art rect, .service-art polyline {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.service-art .art-fill { fill: currentColor; stroke: none; opacity: .07; }
.service-art .art-ghost { opacity: .22; }
.service-art .art-accent { stroke: var(--art-accent); stroke-width: 3; }
.service-art .art-accent-fill { fill: var(--art-accent); stroke: none; }
.service-art .art-motion { stroke-dasharray: 7 8; opacity: .5; transition: stroke-dashoffset .8s var(--ease-lux); }
.service-art .art-route { stroke: var(--art-accent); stroke-width: 3; stroke-dasharray: 8 10; transition: stroke-dashoffset 1s var(--ease-lux); }
.service-art .route-dot { filter: drop-shadow(0 0 8px color-mix(in srgb, var(--art-accent) 70%, transparent)); }
@media (pointer: fine) {
  .service-panel:hover .service-art svg { transform: translateY(-7px) rotate(-1deg) scale(1.025); }
  .service-panel:hover .art-motion, .service-panel:hover .art-route { stroke-dashoffset: -32; }
}
.service-panel h3 { margin: 0 0 1.2rem; font-family: 'Manrope', sans-serif; font-size: clamp(2.3rem, 10vw, 4rem); line-height: .92; font-weight: 500; letter-spacing: -.065em; }
.service-panel p { max-width: 320px; margin: 0; font-size: .83rem; line-height: 1.65; opacity: .68; }

.section-label-dark { color: rgba(255,255,255,.5); }
.section-copy-dark { color: rgba(255,255,255,.58); }

.breathing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: radial-gradient(circle at 70% 45%, #17203e 0%, #0d0e14 34%, var(--black) 72%);
}
.breath-light { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .2; pointer-events: none; }
.breath-light-one { width: 55vw; height: 55vw; right: -22vw; top: -18vw; background: var(--blue); }
.breath-light-two { width: 45vw; height: 45vw; left: -25vw; bottom: -22vw; background: var(--orange); }
.breath-layout { position: relative; display: grid; gap: 4rem; align-items: center; }
.breath-heading { color: var(--white); }
.breath-copy .section-copy { margin-top: 1.8rem; }
.breath-button {
  margin-top: 2rem;
  min-height: 56px;
  padding: 5px 6px 5px 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  font-size: .74rem;
  font-weight: 700;
  cursor: pointer;
}
.breath-button b { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--black); font-size: .72rem; }
.breath-experience { display: grid; place-items: center; gap: 2.3rem; }
.breath-rings { position: relative; width: min(76vw, 420px); aspect-ratio: 1; display: grid; place-items: center; will-change: transform; }
.breath-ring { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.breath-ring.ring-b { inset: 12%; border-color: rgba(55,93,255,.35); box-shadow: inset 0 0 60px rgba(55,93,255,.08); }
.breath-ring.ring-c { inset: 25%; border-color: rgba(255,122,0,.35); }
.breath-core { position: relative; width: 42%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #ffb35c, var(--orange) 45%, #b84100 100%); box-shadow: 0 0 55px rgba(255,122,0,.32), 0 0 150px rgba(55,93,255,.18); }
#breath-lottie { width: 82%; height: 82%; opacity: .9; }
.breath-state { display: flex; flex-direction: column; align-items: center; text-align: center; }
.breath-state small { color: rgba(255,255,255,.38); font-size: .6rem; text-transform: uppercase; letter-spacing: .16em; }
.breath-state strong { margin-top: .45rem; font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 500; }
.breath-state span { margin-top: .25rem; color: rgba(255,255,255,.4); font-size: .68rem; }
.breath-rings.is-breathing .ring-a { animation: pulseRing 12s ease-in-out infinite; }
.breath-rings.is-breathing .ring-b { animation: pulseRing 12s 120ms ease-in-out infinite; }
.breath-rings.is-breathing .ring-c { animation: pulseRing 12s 220ms ease-in-out infinite; }
@keyframes pulseRing { 0%,100% { transform: scale(.94); opacity: .45; } 34%,50% { transform: scale(1.06); opacity: 1; } }

.story { background: var(--cream); color: var(--ink); padding-bottom: 100px; }
.story-image { position: relative; height: min(78svh, 800px); overflow: hidden; }
.story-image > img { width: 100%; height: 120%; object-fit: cover; object-position: 50% 62%; }
.story-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,11,.05), rgba(9,9,11,.42)); }
.story-badge { position: absolute; left: 4vw; bottom: 28px; padding: 1rem 1.2rem; display: flex; flex-direction: column; border-radius: 14px; color: var(--white); }
.story-badge span { color: rgba(255,255,255,.5); font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; }
.story-badge strong { margin-top: .2rem; font-size: .78rem; }
.glass-card { border: 1px solid rgba(255,255,255,.16); background: rgba(15,15,18,.56); backdrop-filter: blur(20px); box-shadow: 0 24px 90px rgba(0,0,0,.24); }
.story-content { padding-top: 90px; }
.story-grid { display: grid; gap: 2rem; }
.story-heading em { color: var(--orange); }
.story-copy { max-width: 540px; color: #595750; }
.story-copy p { margin: 0 0 1.2rem; font-size: .96rem; line-height: 1.8; }
.text-arrow { display: inline-flex; align-items: center; gap: 2rem; margin-top: 1rem; padding-bottom: .55rem; border-bottom: 1px solid #77736b; color: var(--ink); font-size: .76rem; font-weight: 700; }
.text-arrow span { color: var(--orange); }
.promise-row { display: grid; gap: 1px; margin-top: 4rem; background: #cfc9bd; border: 1px solid #cfc9bd; }
.promise-item { min-height: 210px; padding: 1.5rem; background: var(--cream); }
.promise-item > span { color: #a84e00; font-size: .65rem; }
.promise-item h3 { margin: 2.6rem 0 .75rem; font-family: 'Manrope', sans-serif; font-size: 1.35rem; letter-spacing: -.035em; }
.promise-item p { max-width: 300px; margin: 0; color: #77736d; font-size: .8rem; line-height: 1.65; }

.process { min-height: 100svh; padding: 100px 0; overflow: hidden; background: #111217; }
.process-grid { display: grid; gap: 4rem; }
.process-intro .pill-button { margin-top: 2rem; }
.process-heading { color: var(--white); }
.process-intro .section-copy { margin-top: 1.8rem; }
.process-steps { position: relative; padding-left: 2.4rem; }
.process-line { position: absolute; left: 7px; top: 0; bottom: 0; width: 1px; overflow: hidden; background: rgba(255,255,255,.12); }
.process-line i { display: block; width: 100%; height: 100%; background: linear-gradient(var(--orange), var(--blue)); transform: scaleY(0); transform-origin: top; }
.process-step { min-height: 290px; padding: 0 0 4rem; display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; opacity: .35; transition: opacity .5s ease; }
.process-step.is-active { opacity: 1; }
.process-step > span { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--orange); font-size: .62rem; background: #111217; }
.process-step small { color: rgba(255,255,255,.36); font-size: .6rem; text-transform: uppercase; letter-spacing: .14em; }
.process-step h3 { margin: .65rem 0 1rem; font-family: 'Manrope', sans-serif; font-size: clamp(2rem, 9vw, 3.7rem); line-height: 1; font-weight: 500; letter-spacing: -.055em; }
.process-step p { max-width: 390px; margin: 0; color: rgba(255,255,255,.5); font-size: .84rem; line-height: 1.7; }

.gallery { padding: 100px 0; overflow: hidden; background: var(--cream); color: var(--ink); }
.gallery-heading em { color: var(--orange); font-style: normal; }
.gallery-window { margin-top: 3.5rem; overflow: hidden; }
.gallery-rail { width: max-content; display: flex; align-items: stretch; gap: 14px; padding-left: 4vw; animation: galleryMove 54s linear infinite; }
.gallery-rail:hover { animation-play-state: paused; }
.gallery-rail figure { position: relative; width: min(78vw, 520px); height: min(92vw, 590px); margin: 0; overflow: hidden; background: #bbb; }
.gallery-rail figure.portrait { width: min(64vw, 430px); }
.gallery-rail img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-lux); }
.gallery-rail figure:hover img { transform: scale(1.045); }
.gallery-rail figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .6rem .75rem; border: 1px solid rgba(255,255,255,.2); background: rgba(10,10,12,.52); backdrop-filter: blur(12px); color: var(--white); font-size: .64rem; }
@keyframes galleryMove { to { transform: translateX(calc(-50% - 7px)); } }

.booking { position: relative; overflow: hidden; padding: 100px 0; background: radial-gradient(circle at 15% 20%, rgba(55,93,255,.2), transparent 32%), var(--black); }
.booking-glow { position: absolute; width: 65vw; height: 65vw; right: -35vw; bottom: -32vw; border-radius: 50%; background: rgba(255,122,0,.16); filter: blur(100px); }
.booking-grid { position: relative; display: grid; gap: 4rem; }
.booking-heading { color: var(--white); }
.booking-heading em { color: var(--orange); }
.booking-copy { margin-top: 1.8rem; color: rgba(255,255,255,.56); }
.contact-lines { margin-top: 2.4rem; display: grid; gap: 1px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.11); }
.contact-lines a, .contact-lines span { padding: 1rem; display: flex; flex-direction: column; background: rgba(9,9,11,.55); }
.contact-lines small { color: rgba(255,255,255,.36); font-size: .55rem; text-transform: uppercase; letter-spacing: .13em; }
.contact-lines strong { margin-top: .25rem; font-size: .78rem; font-weight: 500; }
.booking-form { padding: 1.3rem; border-radius: 18px; }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.form-heading > div { display: flex; flex-direction: column; gap: .2rem; }
.form-heading span { font-family: 'Manrope', sans-serif; font-size: 1.25rem; font-weight: 600; }
.form-heading small { color: rgba(255,255,255,.42); font-size: .61rem; }
.form-heading > strong { color: var(--orange); font-size: .68rem; letter-spacing: .06em; }
.form-progress { height: 2px; margin: 1.1rem 0 1.6rem; overflow: hidden; background: rgba(255,255,255,.11); }
.form-progress i { display: block; width: 33.333%; height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-bright)); transition: width .5s var(--ease-lux); }
.form-step[hidden] { display: none; }
.form-step.is-active { animation: formStepIn .45s var(--ease-lux) both; }
.form-step-intro { margin-bottom: 1.4rem; }
.form-step-intro small { color: var(--orange); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.form-step-intro h3 { margin: .45rem 0 .35rem; font-family: 'Manrope', sans-serif; font-size: clamp(1.65rem, 6vw, 2.35rem); line-height: 1; font-weight: 500; letter-spacing: -.045em; }
.form-step-intro p { max-width: 440px; margin: 0; color: rgba(255,255,255,.45); font-size: .72rem; line-height: 1.55; }
@keyframes formStepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.field-row { display: grid; gap: 1rem; }
.field { display: block; margin-bottom: 1rem; }
.field > span { display: block; margin: 0 0 .48rem .2rem; color: rgba(255,255,255,.55); font-size: .61rem; text-transform: uppercase; letter-spacing: .09em; }
.field > span em { margin-left: .35rem; color: rgba(255,255,255,.28); font-style: normal; text-transform: none; letter-spacing: 0; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.055); color: var(--white); padding: .9rem 1rem; outline: 0; transition: border-color .25s ease, background .25s ease; }
.field input, .field select { min-height: 52px; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.25); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: rgba(255,255,255,.075); }
.field select option { color: var(--ink); }
.field .invalid { border-color: #ff6b6b; }
.form-actions { margin-top: .4rem; display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.form-actions-end { justify-content: flex-end; }
.form-next, .form-submit { min-height: 56px; padding: .4rem .45rem .4rem 1.15rem; border: 0; border-radius: 999px; display: inline-flex; align-items: center; justify-content: space-between; gap: 1.4rem; background: var(--orange); color: var(--black); font-size: .74rem; font-weight: 800; cursor: pointer; }
.form-next b, .form-submit b { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.15); }
.form-back { min-height: 50px; padding: .65rem .8rem; border: 0; background: transparent; color: rgba(255,255,255,.62); font-size: .71rem; font-weight: 700; cursor: pointer; }
.form-status { min-height: 1.2rem; margin: .7rem 0 0; color: #ffb0b0; font-size: .72rem; }
.booking-review { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.1); }
.booking-review div { min-width: 0; padding: .9rem; background: rgba(9,9,11,.75); }
.booking-review .review-details { grid-column: 1 / -1; }
.booking-review dt { color: rgba(255,255,255,.35); font-size: .52rem; text-transform: uppercase; letter-spacing: .11em; }
.booking-review dd { margin: .22rem 0 0; overflow-wrap: anywhere; color: rgba(255,255,255,.88); font-size: .73rem; line-height: 1.45; }
.whatsapp-handoff { margin: 1rem 0; padding: .85rem; display: flex; align-items: center; gap: .75rem; border: 1px solid rgba(80,235,130,.18); border-radius: 12px; background: rgba(80,235,130,.06); }
.whatsapp-handoff > span { display: grid; place-items: center; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: #50eb82; color: var(--black); font-size: .72rem; font-weight: 900; }
.whatsapp-handoff p { margin: 0; display: flex; flex-direction: column; color: rgba(255,255,255,.42); font-size: .62rem; line-height: 1.45; }
.whatsapp-handoff strong { color: rgba(255,255,255,.86); font-size: .68rem; }
.form-note { margin: .75rem auto 0; max-width: 390px; color: rgba(255,255,255,.32); text-align: center; font-size: .57rem; line-height: 1.5; }

.faq { padding: 100px 0; background: var(--cream); color: var(--ink); }
.faq-grid { display: grid; gap: 3rem; }
.faq-list { border-top: 1px solid #c9c3b8; }
.faq-item { border-bottom: 1px solid #c9c3b8; }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; padding: 1.4rem 0; border: 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.faq-item button span { font-family: 'Manrope', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: -.025em; }
.faq-item button b { color: var(--orange); font-size: 1.2rem; font-weight: 400; transition: transform .4s var(--ease-lux); }
.faq-item button[aria-expanded="true"] b { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease-lux); }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding-right: 2rem; color: #6c6861; font-size: .82rem; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 1.4rem; }

.final-cta { position: relative; min-height: 85svh; display: grid; place-items: center; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,11,.95), rgba(9,9,11,.46)), url('riders.webp') center/cover no-repeat; transform: scale(1.05); }
.final-cta-inner { position: relative; }
.final-cta h2 { margin: 0 0 2rem; font-family: 'Manrope', sans-serif; font-size: clamp(3.8rem, 15vw, 9.8rem); line-height: .86; font-weight: 500; letter-spacing: -.08em; }
.final-cta h2 em { color: var(--orange); font-style: normal; }
.site-footer { padding: 55px 0 25px; background: var(--black); }
.footer-top { display: grid; gap: 2rem; align-items: start; }
.footer-top p { margin: 0; color: rgba(255,255,255,.42); font-size: .76rem; line-height: 1.7; }
.footer-top nav { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.5rem; }
.footer-top nav a { color: rgba(255,255,255,.62); font-size: .7rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.3); font-size: .58rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-bottom b { font-weight: inherit; }

.early-cta { padding: 84px 0; background: var(--black); }
.early-cta-inner { display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start; }
.early-cta p { margin: 0; font-family: 'Manrope', sans-serif; font-size: clamp(2.2rem, 10vw, 5rem); font-weight: 500; letter-spacing: -.06em; }
.mini-footer { padding: 30px 4vw 100px; display: flex; flex-direction: column; gap: 1.2rem; border-top: 1px solid var(--line); background: var(--black); }
.mini-footer p { margin: 0; color: rgba(255,255,255,.48); font-size: .72rem; }
.floating-whatsapp { position: fixed; z-index: 80; right: 18px; bottom: 18px; display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--orange); color: var(--black); box-shadow: 0 16px 50px rgba(0,0,0,.35); font-size: .63rem; font-weight: 900; }
.noscript { position: fixed; z-index: 9999; left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem; background: var(--orange); color: var(--black); font-weight: 600; }

.enhanced-motion .hero-line > span, .enhanced-motion .hero-eyebrow, .enhanced-motion .hero-bottom, .enhanced-motion .hero-glass-card { opacity: 0; }

section[id], #booking-form { scroll-margin-top: 84px; }

@media (max-width: 1023px), (pointer: coarse) {
  html { scroll-behavior: smooth; }
  body { overscroll-behavior-y: none; }
  .preloader, #hero-webgl, .cursor-dot, .cursor-ring, .cursor-glow, .cloud, .breath-light, .booking-glow { display: none !important; }
  .site-nav { height: 72px; padding-inline: 5vw; background: rgba(9,9,11,.94); transition: background .2s ease; }
  .site-nav.scrolled { background: rgba(9,9,11,.98); backdrop-filter: none; }
  .site-nav.nav-hidden { transform: none; }
  .mesh-orb { filter: none; animation: none; opacity: .18; }
  .hero-photo img, .story-image > img { height: 100%; transform: none !important; }
  .hero-content, .hero-photo, .hero-glass-card, .final-cta-bg { transform: none !important; }
  .glass-card, .hero-glass-card, .breath-button, .gallery-rail figcaption { backdrop-filter: none; }
  .glass-card { background: rgba(17,18,22,.94); box-shadow: 0 18px 55px rgba(0,0,0,.25); }
  .brand-marquee .marquee-track { animation-duration: 64s; }
  .service-stage { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .service-stage::-webkit-scrollbar, .gallery-window::-webkit-scrollbar { display: none; }
  .service-track { padding-bottom: 54px; }
  .service-panel { scroll-snap-align: center; scroll-snap-stop: always; transform: none !important; transition: border-radius .25s ease; }
  .service-panel:hover { transform: none; border-radius: 6px; }
  .breathing { min-height: auto; background: radial-gradient(circle at 72% 44%, #17203e, #0d0e14 42%, var(--black) 76%); }
  .breath-rings { will-change: auto; }
  .story-image { height: min(66svh, 620px); }
  .process-step { opacity: 1; }
  .process-line i { transform: scaleY(1); opacity: .65; }
  .gallery-window { overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .gallery-rail { padding-right: 4vw; animation: none; }
  .gallery-rail figure { scroll-snap-align: center; }
  .gallery-rail figure[aria-hidden="true"] { display: none; }
  .gallery-rail img { transition: none; }
  .gallery-rail figure:hover img { transform: none; }
  .final-cta-bg { background-image: linear-gradient(90deg, rgba(9,9,11,.92), rgba(9,9,11,.48)), url('riders.webp'); }
  .enhanced-motion .hero-line > span, .enhanced-motion .hero-eyebrow, .enhanced-motion .hero-bottom, .enhanced-motion .hero-glass-card { opacity: 1; }
  .js:not(.enhanced-motion) .hero-eyebrow { animation: mobileRise .55s .08s var(--ease-lux) both; }
  .js:not(.enhanced-motion) .hero-line:first-of-type > span { animation: mobileRise .7s .14s var(--ease-lux) both; }
  .js:not(.enhanced-motion) .hero-line:last-of-type > span { animation: mobileRise .7s .22s var(--ease-lux) both; }
  .js:not(.enhanced-motion) .hero-bottom { animation: mobileRise .65s .32s var(--ease-lux) both; }
  .reveal.lite-ready, .promise-item.lite-ready { opacity: 0; transform: translateY(18px); transition: opacity .52s ease, transform .65s var(--ease-lux); }
  .reveal.lite-ready.is-visible, .promise-item.lite-ready.is-visible { opacity: 1; transform: none; }
  .floating-whatsapp { right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); width: 66px; height: 50px; border-radius: 999px; box-shadow: 0 10px 32px rgba(0,0,0,.32); }
  .form-step.is-active { animation-duration: .28s; }
}

@keyframes mobileRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (min-width: 720px) {
  .site-nav { height: 88px; }
  .hero-content { padding-top: 148px; }
  .eyebrow span { display: inline; margin-left: .45rem; padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.25); }
  .hero h1 { font-size: clamp(6rem, 14vw, 11rem); }
  .hero-bottom { grid-template-columns: minmax(280px, 520px) auto; align-items: end; justify-content: space-between; }
  .hero-glass-card { display: flex; }
  .heading-grid { grid-template-columns: 1.2fr .55fr; align-items: end; gap: 5vw; }
  .service-panel { width: min(54vw, 520px); height: min(68vw, 650px); padding: 2.2rem; }
  .breath-layout { grid-template-columns: .85fr 1.15fr; gap: 6vw; }
  .story-grid { grid-template-columns: 1.1fr .62fr; gap: 6vw; align-items: end; }
  .promise-row { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: .86fr 1fr; gap: 7vw; }
  .process-intro { position: sticky; top: 130px; align-self: start; }
  .gallery-rail figure { width: min(48vw, 610px); height: min(58vw, 700px); }
  .gallery-rail figure.portrait { width: min(38vw, 450px); }
  .booking-grid { grid-template-columns: .82fr 1.18fr; gap: 7vw; align-items: start; }
  .booking-intro { position: sticky; top: 120px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .booking-form { padding: 2rem; }
  .faq-grid { grid-template-columns: .72fr 1.28fr; gap: 8vw; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .early-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .mini-footer { flex-direction: row; align-items: center; justify-content: space-between; padding-bottom: 38px; }
}

@media (min-width: 720px) and (max-width: 1023px), (min-width: 720px) and (pointer: coarse) {
  .process-intro, .booking-intro { position: static; }
}

@media (min-width: 1024px) {
  html.cursor-ready .cursor-dot, html.cursor-ready .cursor-ring, html.cursor-ready .cursor-glow { display: block; }
  html.cursor-ready body, html.cursor-ready a, html.cursor-ready button, html.cursor-ready input, html.cursor-ready textarea, html.cursor-ready select, html.cursor-ready label { cursor: none; }
  .site-nav { padding-inline: 3vw; }
  .nav-links { display: flex; gap: clamp(1.4rem, 2.4vw, 2.6rem); margin-left: auto; margin-right: 2.2rem; }
  .nav-links a { position: relative; color: rgba(255,255,255,.68); font-size: .67rem; font-weight: 600; letter-spacing: .06em; }
  .nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--orange); transition: right .35s var(--ease-lux); }
  .nav-links a:hover::after { right: 0; }
  .nav-cta { min-width: 168px; height: 44px; padding: 0 6px 0 18px; display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .66rem; font-weight: 700; }
  .nav-cta b { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: var(--black); }
  .menu-toggle { display: none; }
  .hero-photo { inset: 0 0 0 48%; }
  .hero-photo-overlay { background: linear-gradient(90deg, var(--black) 0%, rgba(9,9,11,.72) 22%, rgba(9,9,11,.04) 68%), linear-gradient(0deg, rgba(9,9,11,.55), transparent 44%); }
  .hero-content { justify-content: center; padding-top: 110px; }
  .hero h1 { width: 76%; font-size: clamp(6.8rem, 11.6vw, 11.5rem); }
  .hero-bottom { width: 72%; }
  .services { padding-top: 130px; }
  .service-stage { min-height: 100vh; display: flex; align-items: center; margin-top: 1rem; }
  .service-track { padding-block: 70px; }
  .service-panel { width: min(38vw, 540px); height: min(53vw, 680px); }
  .breathing, .process, .booking, .faq { padding-block: 140px; }
  .story { padding-bottom: 140px; }
  .story-content { padding-top: 120px; }
  .story-badge { left: 6vw; bottom: 42px; }
  .promise-item { min-height: 250px; padding: 2rem; }
  .process-step { min-height: 340px; }
  .gallery { padding-block: 140px; }
  .faq-item button { padding-block: 1.7rem; }
  .faq-item button span { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .enhanced-motion .hero-line > span, .enhanced-motion .hero-eyebrow, .enhanced-motion .hero-bottom, .enhanced-motion .hero-glass-card { opacity: 1; }
  .reveal.lite-ready, .promise-item.lite-ready { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring, .cursor-glow, #hero-webgl { display: none !important; }
}
