:root {
  color-scheme: dark;
  --ink: #090806;
  --ink-2: #11100e;
  --ink-3: #191612;
  --cream: #f2eadb;
  --cream-2: #d7cdbc;
  --muted: #a69d8f;
  --gold: #c7a45b;
  --gold-2: #9c7b39;
  --teal: #76afa7;
  --merlot: #5a3032;
  --line: rgba(242, 234, 219, 0.16);
  --line-dark: rgba(9, 8, 6, 0.16);
  /* Definitive luxury reset: deeper shadows and warmer gold bloom for a more cinematic, high-ticket surface. */
  --shadow: 0 64px 190px rgba(0, 0, 0, 0.62);
  --gold-glow: 0 42px 148px rgba(199, 164, 91, 0.42), 0 0 74px rgba(199, 164, 91, 0.24);
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  --header-height: 74px;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(199, 164, 91, 0.08), transparent 26rem),
    radial-gradient(circle at 6% 20%, rgba(118, 175, 167, 0.045), transparent 24rem),
    var(--ink);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(199, 164, 91, 0.32);
}

.skip-link {
  background: var(--gold);
  color: var(--ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: 12px;
  transform: translateY(-140%);
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(9, 8, 6, 0.9), rgba(9, 8, 6, 0.76));
  border-bottom: 1px solid var(--line);
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  left: 0;
  padding: 0 22px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  max-width: 100vw;
  width: 100%;
}

/* Definitive luxury reset: the fixed nav should feel like a thin pane of smoked glass, not a basic sticky bar. */
.site-header.is-scrolled {
  background: rgba(9, 8, 6, 0.92);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.24);
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: 40px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.73rem;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 22px;
}

.site-nav a {
  color: var(--cream-2);
  font-size: 0.9rem;
  position: relative;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a::after {
  background: linear-gradient(90deg, transparent, rgba(199, 164, 91, 0.88), transparent);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transform: translateX(-50%) scaleX(0.36);
  transition: opacity 220ms ease, transform 220ms var(--ease-luxury);
  width: 100%;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(199, 164, 91, 0.5);
  border-radius: var(--radius);
  color: var(--cream) !important;
  padding: 9px 14px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(199, 164, 91, 0.14);
  box-shadow: 0 18px 46px rgba(199, 164, 91, 0.14);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: none;
  height: 42px;
  padding: 0;
  position: relative;
  width: 42px;
}

.nav-toggle span {
  background: var(--cream);
  height: 2px;
  left: 12px;
  position: absolute;
  right: 12px;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  bottom: 16px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section-inner {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 48px;
  width: 100%;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.section-warm {
  background:
    linear-gradient(90deg, rgba(199, 164, 91, 0.08) 1px, transparent 1px) 0 0 / 64px 64px,
    var(--ink-2);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

section {
  position: relative;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero {
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

/* Upgrade: free local cinematic hero video background. */
.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.h-screen {
  min-height: 100vh;
  min-height: 100svh;
}

.absolute {
  position: absolute;
}

.inset-0 {
  inset: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

/* Definitive cinematic reset: deeper full-screen stage with room for a dominant Spline sculpture. */
.hero-video-container {
  align-items: end;
  display: grid;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  padding: 196px 0 146px;
  --hero-depth-x: 0px;
  --hero-depth-y: 0px;
}

.hero-video-container video {
  filter: brightness(0.58) saturate(1.08) contrast(1.08);
  object-position: center;
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.045);
  transform-origin: center;
  transition: filter 600ms var(--ease-luxury);
  will-change: transform, filter;
  z-index: 0;
}

.hero-scrim {
  inset: 0;
  position: absolute;
}

.hero-scrim {
  background:
    radial-gradient(circle at 76% 30%, rgba(199, 164, 91, 0.42), transparent 34%),
    radial-gradient(circle at 84% 48%, rgba(118, 175, 167, 0.2), transparent 27%),
    radial-gradient(circle at 44% 70%, rgba(90, 48, 50, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(9, 8, 6, 0.98) 0%, rgba(9, 8, 6, 0.78) 42%, rgba(9, 8, 6, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.34) 0%, rgba(9, 8, 6, 0.95) 100%);
  z-index: 1;
}

.hero-video-container::after {
  background:
    linear-gradient(90deg, transparent 0, rgba(242, 234, 219, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0, rgba(242, 234, 219, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.hero-grid {
  align-items: end;
  display: grid;
  gap: 136px;
  grid-template-columns: minmax(0, 0.94fr) minmax(370px, 0.48fr);
  position: relative;
  z-index: 4;
}

.hero-copy {
  max-width: 980px;
}

/* Definitive cinematic reset: Spline is primary; the local WebGL canvas sits underneath as a fast fallback. */
.hero-spline-layer {
  bottom: 2%;
  filter: drop-shadow(0 66px 190px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 108px rgba(199, 164, 91, 0.26));
  max-width: 1040px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: max(-2vw, -28px);
  top: 6%;
  transform: translate3d(var(--hero-depth-x), var(--hero-depth-y), 0) scale(1);
  transition: opacity 980ms var(--ease-luxury), transform 260ms ease-out, filter 420ms ease;
  width: min(55vw, 920px);
  z-index: 3;
}

.hero-spline-layer.reveal.is-visible {
  opacity: 1;
}

.spline-frame {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-spline-frame {
  border-radius: 28px;
  mask-image: radial-gradient(circle at 52% 48%, #000 42%, rgba(0, 0, 0, 0.76) 62%, transparent 84%);
}

.hero-spline-frame::before {
  background:
    radial-gradient(circle at 55% 42%, rgba(199, 164, 91, 0.18), transparent 34%),
    radial-gradient(circle at 35% 68%, rgba(118, 175, 167, 0.1), transparent 26%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.spline-fallback {
  inset: 0;
  position: absolute;
}

/* Definitive cinematic reset: Spline fades in over the local WebGL fallback only after the viewer starts. */
.spline-embed {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 620ms var(--ease-luxury);
  width: 100%;
  z-index: 2;
}

.spline-loaded .spline-embed {
  opacity: 1;
  z-index: 5;
}

.spline-loaded .three-canvas,
.spline-loaded .spline-fallback,
.spline-loaded .pillar-3d-fallback {
  opacity: 0;
}

/* Definitive luxury reset: the exported hero Spline camera is conservative, so scale it up and keep a faint WebGL underlay for cinematic depth. */
.hero-spline-frame .spline-embed {
  transform: scale(1.86);
  transform-origin: center;
}

.hero-spline-frame.spline-loaded .three-canvas {
  opacity: 0.34;
  z-index: 4;
}

.hero-geometry {
  animation: heroFloat 12s ease-in-out infinite;
  filter: drop-shadow(0 24px 70px rgba(199, 164, 91, 0.24));
  transform-style: preserve-3d;
}

.geo {
  border: 1px solid rgba(199, 164, 91, 0.62);
  display: block;
  position: absolute;
}

.geo-orbit {
  animation: iconRotate 18s linear infinite;
  border-radius: 999px;
  height: 62%;
  left: 15%;
  top: 14%;
  transform: rotateX(62deg) rotateZ(18deg);
  width: 70%;
}

.geo-core {
  background:
    radial-gradient(circle at 38% 32%, rgba(242, 234, 219, 0.82), transparent 8%),
    linear-gradient(135deg, rgba(199, 164, 91, 0.62), rgba(90, 48, 50, 0.2));
  border-radius: 40% 60% 52% 48%;
  height: 130px;
  left: 42%;
  top: 32%;
  transform: translate(-50%, -50%) rotate(-18deg);
  width: 152px;
}

.geo-lever {
  background: linear-gradient(90deg, transparent, rgba(199, 164, 91, 0.84), transparent);
  height: 3px;
  left: 24%;
  top: 58%;
  transform: rotate(-28deg);
  width: 64%;
}

.geo-lever::after {
  background: var(--teal);
  border-radius: 999px;
  content: "";
  height: 13px;
  position: absolute;
  right: 0;
  top: -5px;
  width: 13px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.91;
}

/* Definitive luxury reset: larger editorial headlines with slower line rhythm, closer to bespoke executive sites. */
h1 {
  font-size: clamp(5.9rem, 8.75vw, 9.9rem);
  margin-bottom: 48px;
  max-width: 1180px;
}

h2 {
  font-size: clamp(4.2rem, 5.9vw, 5.9rem);
  margin-bottom: 0;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-lede,
.section-lede {
  color: var(--cream-2);
  font-size: 1.26rem;
  line-height: 1.82;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 800;
  justify-content: center;
  min-height: 56px;
  padding: 16px 28px;
  transition: transform 260ms var(--ease-luxury), background 260ms ease, border-color 260ms ease, box-shadow 260ms var(--ease-luxury);
  will-change: transform;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.018);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d8b86d;
  box-shadow: var(--gold-glow);
}

.button-secondary {
  background: rgba(242, 234, 219, 0.07);
  border: 1px solid var(--line);
  color: var(--cream);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(242, 234, 219, 0.11);
  border-color: rgba(199, 164, 91, 0.45);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28), 0 0 32px rgba(199, 164, 91, 0.12);
}

.section-cream .button-secondary {
  background: rgba(9, 8, 6, 0.06);
  border-color: rgba(9, 8, 6, 0.18);
  color: var(--ink);
}

.operator-panel {
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(17, 16, 14, 0.82), rgba(9, 8, 6, 0.72));
  border: 1px solid rgba(242, 234, 219, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(242, 234, 219, 0.08);
  padding: 48px;
  position: relative;
}

.operator-panel::before {
  background: linear-gradient(90deg, rgba(199, 164, 91, 0.78), transparent);
  content: "";
  height: 1px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
}

.panel-kicker,
.offer-label,
.case-tag,
.blog-card span,
.card-index,
.service-card span {
  color: var(--teal);
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.operator-panel h2 {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.operator-panel p {
  color: var(--cream-2);
}

.mini-stats {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.mini-stats div,
.metrics-row div,
.signal-card,
.pillar-card,
.service-card,
.offer-card,
.case-card,
.trust-card,
.blog-card,
.application-form,
.calendly-slot,
.lead-magnet {
  border-radius: var(--radius);
}

.mini-stats div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.mini-stats strong,
.metrics-row strong {
  color: var(--gold);
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 400;
  line-height: 1;
}

.mini-stats span,
.metrics-row span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 8px;
}

.problem,
.pillars,
.services,
.offers,
.results,
.about,
.testimonials,
.resources,
.apply {
  padding: 224px 0;
}

.split-heading {
  align-items: end;
  display: grid;
  gap: 104px;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
}

.section-cream .section-lede {
  color: rgba(9, 8, 6, 0.68);
}

.problem-grid,
.service-grid,
.case-grid,
.trust-grid,
.offers-grid {
  display: grid;
  gap: 28px;
  margin-top: 104px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.signal-card {
  background:
    radial-gradient(circle at 82% 10%, rgba(199, 164, 91, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.064), rgba(242, 234, 219, 0.028));
  border: 1px solid rgba(242, 234, 219, 0.14);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(242, 234, 219, 0.04);
  min-height: 320px;
  padding: 52px;
  position: relative;
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, box-shadow 260ms var(--ease-luxury), background 260ms ease;
}

/* Definitive luxury reset: cards get a restrained light pass so hover states feel custom-built instead of template-flat. */
.signal-card::after,
.service-card::after,
.offer-card::after,
.case-card::after,
.trust-card::after,
.blog-card::after {
  background: linear-gradient(120deg, transparent 10%, rgba(242, 234, 219, 0.13) 48%, transparent 86%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-42%);
  transition: opacity 420ms ease, transform 700ms var(--ease-luxury);
}

.signal-card:hover,
.case-card:hover,
.trust-card:hover,
.blog-card:hover {
  border-color: rgba(199, 164, 91, 0.34);
  box-shadow: 0 42px 122px rgba(0, 0, 0, 0.42), 0 0 64px rgba(199, 164, 91, 0.16);
  transform: translateY(-10px) scale(1.008);
}

.signal-card:hover::after,
.service-card:hover::after,
.offer-card:hover::after,
.case-card:hover::after,
.trust-card:hover::after,
.blog-card:hover::after {
  opacity: 0.58;
  transform: translateX(38%);
}

.signal-card h3,
.case-card h3,
.trust-card h3,
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.signal-card p,
.case-card p,
.trust-card p {
  color: var(--cream-2);
}

.pillar-layout {
  align-items: start;
  display: grid;
  gap: 148px;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  margin-top: 132px;
  min-width: 0;
}

.pillar-layout > * {
  min-width: 0;
}

.mind-map {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 164, 91, 0.1), transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 43%, rgba(242, 234, 219, 0.06) 44%, rgba(242, 234, 219, 0.06) 44.4%, transparent 45%),
    rgba(242, 234, 219, 0.018);
  border: 1px solid rgba(242, 234, 219, 0.1);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(242, 234, 219, 0.04), 0 28px 100px rgba(0, 0, 0, 0.18);
  opacity: 0.42;
  position: relative;
  position: sticky;
  top: 118px;
  width: 100%;
}

.mind-map.reveal.is-visible {
  opacity: 0.42;
}

.node {
  align-items: center;
  background: rgba(25, 22, 18, 0.78);
  border: 1px solid rgba(242, 234, 219, 0.12);
  border-radius: var(--radius);
  color: var(--cream);
  display: flex;
  font-size: 0.82rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 8px 12px;
  position: absolute;
  text-align: center;
}

.node-center {
  background: var(--gold);
  color: var(--ink);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.node-a {
  left: 10%;
  top: 15%;
}

.node-b {
  right: 8%;
  top: 20%;
}

.node-c {
  bottom: 16%;
  left: 10%;
}

.node-d {
  bottom: 12%;
  right: 8%;
}

.pillar-list {
  display: grid;
  gap: 34px;
  max-width: 100%;
  min-width: 0;
}

.pillar-card {
  align-items: start;
  background:
    radial-gradient(circle at 14% 20%, rgba(199, 164, 91, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.065), rgba(242, 234, 219, 0.026));
  border: 1px solid rgba(242, 234, 219, 0.14);
  box-shadow: 0 34px 104px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(242, 234, 219, 0.04);
  display: grid;
  gap: 42px;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  padding: 46px;
  position: relative;
  transition: border-color 280ms ease, box-shadow 280ms var(--ease-luxury), transform 280ms var(--ease-luxury), background 280ms ease;
}

/* Definitive cinematic reset: larger Spline stages make the pillar icons read as expensive 3D objects. */
.pillar-spline-card {
  align-items: center;
  background:
    radial-gradient(circle at 48% 44%, rgba(199, 164, 91, 0.34), transparent 50%),
    radial-gradient(circle at 72% 28%, rgba(118, 175, 167, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.88), rgba(9, 8, 6, 0.58));
  border: 1px solid rgba(199, 164, 91, 0.36);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(242, 234, 219, 0.08), 0 28px 80px rgba(0, 0, 0, 0.24);
  display: flex;
  height: 244px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transform: perspective(800px) rotateX(var(--mouse-tilt-x, 0deg)) rotateY(calc(var(--scroll-rotate, 0deg) + var(--mouse-tilt-y, 0deg)));
  transition: transform 300ms var(--ease-luxury), border-color 300ms ease, box-shadow 300ms var(--ease-luxury), background 300ms ease;
  will-change: transform;
}

.pillar-spline-card .spline-embed {
  height: 540px;
  left: 50%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  transform-origin: center;
  width: 500px;
}

.pillar-spline-card::after {
  background: linear-gradient(120deg, transparent 10%, rgba(242, 234, 219, 0.08) 50%, transparent 86%);
  content: "";
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
  transform: translateX(-45%);
  transition: transform 600ms var(--ease-luxury), opacity 600ms ease;
  z-index: 6;
}

.three-canvas {
  display: block;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 260ms ease;
  width: 100%;
}

.webgl-ready .three-canvas {
  opacity: 1;
  z-index: 4;
}

.webgl-ready .spline-fallback,
.webgl-ready .pillar-3d-fallback {
  opacity: 0;
}

.webgl-ready.spline-loaded .three-canvas {
  opacity: 0;
}

.webgl-ready.spline-loaded.hero-spline-frame .three-canvas {
  opacity: 0.34;
  z-index: 4;
}

.pillar-3d-fallback {
  align-items: center;
  display: flex;
  inset: 0;
  justify-content: center;
  position: absolute;
}

.pillar-3d-fallback::before,
.pillar-3d-fallback::after,
.pillar-3d-fallback span {
  border: 1px solid rgba(199, 164, 91, 0.72);
  content: "";
  display: block;
  position: absolute;
  transform-style: preserve-3d;
}

.pillar-3d-fallback::before {
  animation: iconRotate 8s linear infinite;
  box-shadow: 0 0 24px rgba(199, 164, 91, 0.2);
  height: 44px;
  width: 44px;
}

.pillar-3d-fallback::after {
  border-color: rgba(118, 175, 167, 0.6);
  height: 62px;
  transform: rotate(45deg);
  width: 62px;
}

.pillar-3d-fallback span {
  background: rgba(199, 164, 91, 0.32);
  border-radius: 999px;
  height: 12px;
  width: 12px;
}

.fallback-psychology::before {
  border-radius: 50% 50% 46% 46%;
}

.fallback-strategy::before {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.fallback-performance::before {
  border-radius: 999px 999px 8px 8px;
}

.pillar-card h3,
.service-card h3,
.offer-card h3 {
  margin-bottom: 10px;
}

.pillar-card p,
.service-card p,
.offer-card p {
  color: var(--cream-2);
  margin-bottom: 0;
}

.pillar-card:hover {
  background: linear-gradient(180deg, rgba(242, 234, 219, 0.07), rgba(242, 234, 219, 0.038));
  border-color: rgba(199, 164, 91, 0.42);
  box-shadow: 0 48px 136px rgba(0, 0, 0, 0.46), 0 0 74px rgba(199, 164, 91, 0.18);
  transform: translateY(-10px) scale(1.012);
}

.pillar-card:hover .pillar-spline-card {
  border-color: rgba(199, 164, 91, 0.66);
  box-shadow: 0 24px 62px rgba(199, 164, 91, 0.18), inset 0 1px 0 rgba(242, 234, 219, 0.1);
  transform: perspective(800px) rotateY(calc(var(--scroll-rotate, 0deg) + var(--mouse-tilt-y, 0deg) + 14deg)) rotateX(calc(var(--mouse-tilt-x, 0deg) + 4deg)) scale(1.045);
}

.pillar-card:hover .pillar-spline-card::after {
  opacity: 0.58;
  transform: translateX(35%);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background:
    radial-gradient(circle at 84% 12%, rgba(199, 164, 91, 0.1), transparent 30%),
    #fff8ea;
  border: 1px solid rgba(9, 8, 6, 0.12);
  box-shadow: 0 18px 64px rgba(9, 8, 6, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  min-height: 468px;
  overflow: hidden;
  padding: 48px;
  position: relative;
  transition: transform 300ms var(--ease-luxury), box-shadow 300ms var(--ease-luxury), border-color 300ms ease, background 300ms ease;
}

.service-card::before {
  background: linear-gradient(90deg, rgba(199, 164, 91, 0.65), transparent);
  content: "";
  height: 1px;
  left: 24px;
  position: absolute;
  right: 24px;
  top: 0;
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover {
  border-color: rgba(199, 164, 91, 0.42);
  box-shadow: 0 44px 126px rgba(9, 8, 6, 0.28), 0 0 72px rgba(199, 164, 91, 0.22);
  transform: translateY(-11px) scale(1.02);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card p {
  color: rgba(9, 8, 6, 0.72);
}

.service-card ul {
  color: rgba(9, 8, 6, 0.72);
  margin: 22px 0 0;
  padding-left: 18px;
}

.service-card a {
  border-top: 1px solid rgba(9, 8, 6, 0.14);
  color: var(--ink);
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
  transition: color 220ms ease, transform 220ms ease;
}

.service-card:hover a {
  color: var(--gold-2);
  transform: translateX(4px);
}

.offers-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  background:
    radial-gradient(circle at 78% 12%, rgba(199, 164, 91, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.064), rgba(242, 234, 219, 0.028));
  border: 1px solid rgba(242, 234, 219, 0.14);
  box-shadow: inset 0 1px 0 rgba(242, 234, 219, 0.05);
  min-height: 432px;
  padding: 50px;
  overflow: hidden;
  position: relative;
  transition: transform 300ms var(--ease-luxury), box-shadow 300ms var(--ease-luxury), border-color 300ms ease, background 300ms ease;
}

.offer-card.featured {
  background:
    radial-gradient(circle at 74% 18%, rgba(199, 164, 91, 0.18), transparent 36%),
    rgba(199, 164, 91, 0.12);
  border-color: rgba(199, 164, 91, 0.42);
}

.offer-card strong {
  color: var(--cream);
  display: block;
  margin: 24px 0;
}

.offer-card:hover {
  background: linear-gradient(180deg, rgba(242, 234, 219, 0.074), rgba(242, 234, 219, 0.04));
  border-color: rgba(199, 164, 91, 0.44);
  box-shadow: 0 52px 140px rgba(0, 0, 0, 0.5), 0 0 76px rgba(199, 164, 91, 0.2);
  transform: translateY(-11px) scale(1.02);
}

.metrics-row {
  background: var(--ink);
  border: 1px solid rgba(242, 234, 219, 0.14);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 88px;
  overflow: hidden;
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.34), 0 0 64px rgba(199, 164, 91, 0.08);
}

.metrics-row div {
  background:
    radial-gradient(circle at 72% 16%, rgba(199, 164, 91, 0.12), transparent 34%),
    var(--ink-2);
  padding: 50px 42px;
}

.case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.case-card {
  background:
    radial-gradient(circle at 84% 14%, rgba(118, 175, 167, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.062), rgba(242, 234, 219, 0.028));
  border: 1px solid rgba(242, 234, 219, 0.14);
  min-height: 376px;
  overflow: hidden;
  padding: 46px;
  position: relative;
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, box-shadow 260ms var(--ease-luxury), background 260ms ease;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: 104px;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
}

.portrait-wrap {
  background:
    radial-gradient(circle at 50% 16%, rgba(199, 164, 91, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.08), rgba(242, 234, 219, 0.02)),
    var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 58px 170px rgba(0, 0, 0, 0.5), 0 0 86px rgba(199, 164, 91, 0.14);
  overflow: hidden;
  padding: 10px;
  position: relative;
}

/* Definitive luxury reset: portrait placeholder gets a premium frame treatment until the real headshot is supplied. */
.portrait-wrap::after {
  background: linear-gradient(140deg, rgba(242, 234, 219, 0.16), transparent 36%, rgba(199, 164, 91, 0.1));
  content: "";
  inset: 10px;
  pointer-events: none;
  position: absolute;
}

.portrait-wrap img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-copy p {
  color: var(--cream-2);
  font-size: 1.03rem;
  max-width: 720px;
}

.about-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-proof span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 10px 12px;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  background:
    radial-gradient(circle at 82% 12%, rgba(199, 164, 91, 0.12), transparent 28%),
    #fff8ea;
  border: 1px solid rgba(9, 8, 6, 0.12);
  box-shadow: 0 20px 70px rgba(9, 8, 6, 0.08);
  min-height: 306px;
  overflow: hidden;
  padding: 46px;
  position: relative;
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, box-shadow 260ms var(--ease-luxury);
}

.trust-card p {
  color: rgba(9, 8, 6, 0.7);
}

.resource-grid {
  align-items: stretch;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.lead-magnet {
  background:
    radial-gradient(circle at 72% 22%, rgba(199, 164, 91, 0.22), transparent 35%),
    linear-gradient(180deg, rgba(9, 8, 6, 0.3), rgba(9, 8, 6, 0.78)),
    url("assets/miami-skyline.jpg") center / cover;
  border: 1px solid var(--line);
  box-shadow: 0 58px 170px rgba(0, 0, 0, 0.44), 0 0 88px rgba(199, 164, 91, 0.12);
  min-height: 600px;
  padding: 58px;
}

.lead-magnet p {
  color: var(--cream-2);
  max-width: 520px;
}

.blog-teasers {
  display: grid;
  gap: 18px;
}

.blog-card {
  background:
    radial-gradient(circle at 86% 18%, rgba(199, 164, 91, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.062), rgba(242, 234, 219, 0.028));
  border: 1px solid rgba(242, 234, 219, 0.14);
  overflow: hidden;
  padding: 42px;
  position: relative;
  transition: transform 260ms var(--ease-luxury), border-color 260ms ease, box-shadow 260ms var(--ease-luxury), background 260ms ease;
}

.blog-card h3 {
  max-width: 680px;
}

.apply-grid {
  align-items: start;
  display: grid;
  gap: 96px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
}

.apply-copy p {
  color: var(--cream-2);
  max-width: 660px;
}

.contact-stack {
  display: grid;
  gap: 10px;
  margin: 30px 0;
}

.contact-stack a,
.contact-stack span {
  border-bottom: 1px solid var(--line);
  color: var(--cream-2);
  padding-bottom: 10px;
}

.calendly-slot {
  background: linear-gradient(180deg, rgba(242, 234, 219, 0.048), rgba(242, 234, 219, 0.024));
  border: 1px solid rgba(242, 234, 219, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(242, 234, 219, 0.05);
  padding: 34px;
}

.calendly-slot span {
  color: var(--teal);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.calendly-slot strong {
  display: block;
  margin-bottom: 8px;
}

.application-form {
  background:
    radial-gradient(circle at 84% 10%, rgba(199, 164, 91, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(242, 234, 219, 0.07), rgba(242, 234, 219, 0.034));
  border: 1px solid rgba(242, 234, 219, 0.18);
  box-shadow: 0 48px 150px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(242, 234, 219, 0.06);
  padding: 50px;
  transition: border-color 240ms ease, box-shadow 240ms var(--ease-luxury), background 240ms ease;
}

.application-form:focus-within {
  background: rgba(242, 234, 219, 0.065);
  border-color: rgba(199, 164, 91, 0.36);
  box-shadow: 0 44px 128px rgba(0, 0, 0, 0.42), 0 0 62px rgba(199, 164, 91, 0.14);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  color: var(--cream-2);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  background: rgba(9, 8, 6, 0.4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  min-height: 48px;
  outline: none;
  padding: 12px;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(9, 8, 6, 0.58);
  border-color: rgba(199, 164, 91, 0.38);
  box-shadow: 0 0 0 4px rgba(199, 164, 91, 0.08);
}

.form-note {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 14px 0 0;
}

.site-footer {
  background: #050504;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 24px 0;
}

.footer-grid {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid nav {
  display: flex;
  gap: 18px;
}

.reveal {
  filter: blur(7px);
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 980ms var(--ease-luxury), transform 980ms var(--ease-luxury), filter 980ms var(--ease-luxury);
  will-change: opacity, transform;
}

.reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateY(-8deg);
  }
  50% {
    transform: translate3d(0, -16px, 0) rotateY(12deg);
  }
}

@keyframes iconRotate {
  from {
    transform: rotateX(58deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(58deg) rotateZ(360deg);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-grid,
  .split-heading,
  .pillar-layout,
  .about-grid,
  .resource-grid,
  .apply-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .service-grid,
  .offers-grid,
  .metrics-row,
  .case-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mind-map {
    display: none;
  }

  .hero-spline-layer {
    bottom: 8%;
    opacity: 0.42;
    right: -4vw;
    top: 13%;
    width: min(58vw, 560px);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 16px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    /* Mobile luxury polish: make the menu a full smoked-glass panel so hero content never bleeds through the navigation. */
    align-content: start;
    backdrop-filter: blur(28px);
    background:
      radial-gradient(circle at 82% 8%, rgba(199, 164, 91, 0.12), transparent 18rem),
      linear-gradient(180deg, #090806, #090806);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 44px 120px rgba(0, 0, 0, 0.72);
    display: grid;
    gap: 0;
    height: calc(100dvh - var(--header-height));
    left: 0;
    padding: 18px 16px 26px;
    position: fixed;
    right: 0;
    top: var(--header-height);
    transform: translateY(-120%);
    transition: transform 200ms ease;
    width: 100%;
    z-index: 99;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 14px;
    padding: 12px 14px !important;
    text-align: center;
  }

  .section-inner {
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .hero-video-container {
    min-height: auto;
    padding: 122px 0 72px;
  }

  .hero-video-container video {
    filter: brightness(0.62);
    transform: scale(1.02);
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(9, 8, 6, 0.9) 0%, rgba(9, 8, 6, 0.76) 52%, rgba(9, 8, 6, 0.96) 100%);
  }

  h1 {
    font-size: clamp(2.54rem, 10.7vw, 2.82rem);
    line-height: 0.98;
    max-width: 100%;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-lede,
  .section-lede {
    font-size: 1rem;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .problem,
  .pillars,
  .services,
  .offers,
  .results,
  .about,
  .testimonials,
  .resources,
  .apply {
    padding: 116px 0;
  }

  .problem-grid,
  .service-grid,
  .offers-grid,
  .metrics-row,
  .case-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .operator-panel,
  .signal-card,
  .pillar-card,
  .service-card,
  .offer-card,
  .case-card,
  .trust-card,
  .application-form,
  .calendly-slot,
  .lead-magnet,
  .blog-card {
    padding: 24px;
  }

  .hero-spline-layer {
    bottom: auto;
    display: block;
    height: 188px;
    right: -14px;
    top: 86px;
    width: 188px;
    z-index: 2;
  }

  .hero-spline-layer.reveal.is-visible {
    opacity: 0.28;
  }

  .hero-spline-frame .spline-embed {
    transform: scale(1.42);
  }

  .webgl-ready.spline-loaded.hero-spline-frame .three-canvas {
    opacity: 0.22;
  }

  .pillar-card {
    grid-template-columns: 1fr;
  }

  .pillar-spline-card {
    height: 188px;
    width: min(100%, 260px);
  }

  .pillar-spline-card .spline-embed {
    transform: translate(-50%, -50%) scale(0.31);
  }

  .mind-map {
    max-width: 100%;
    min-height: 0;
  }

  .lead-magnet {
    min-height: 390px;
  }

  .footer-grid {
    align-items: start;
    display: grid;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    filter: none;
    opacity: 1;
    transform: none;
  }

  .hero-geometry,
  .pillar-3d-fallback::before {
    animation: none;
  }
}
