:root {
  --orange: #ff5a2a;
  --navy: #0b1f33;
  --navy-mid: #122944;
  --blue-secondary: #1e3a5f;
  --blue-interactive: #2f80ed;
  --white: #fdfefe;
  --neutral: #e8ecee;
  --neutral-dim: #aeb8c1;
  --ink: #07131f;
  --font-heading: "termina", "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Spacing scale ── */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 120px;

  /* ── Fluid spacing ── */
  --space-page-x: clamp(20px, 5vw, 72px);
  --space-page-x-narrow: clamp(20px, 4vw, 64px);
  --space-section-y: clamp(72px, 9vw, 128px);
  --space-section-y-lg: clamp(72px, 9vw, 150px);
  --space-section-y-sm: clamp(48px, 6vw, 92px);
  --space-nav-gap: clamp(18px, 3vw, 44px);
  --space-fluid-xs: clamp(16px, 2vw, 24px);
  --space-fluid-s: clamp(22px, 2.4vw, 34px);
  --space-fluid-m: clamp(24px, 3vw, 42px);
  --space-fluid-gap: clamp(28px, 5vw, 72px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

::selection {
  background: var(--orange);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: var(--space-xs) var(--space-s);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-140%);
}

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

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

/* Services page styles */
body.services-page {
      --snow: oklch(0.985 0.006 230);
      --alpine: oklch(0.965 0.01 230);
      --ice: oklch(0.93 0.014 230);
      --stone: oklch(0.65 0.018 238);
      --ink: oklch(0.18 0.055 253);
      --navy: oklch(0.22 0.065 253);
      --blue: oklch(0.62 0.15 235);
      --orange: oklch(0.68 0.22 36);
      --red: oklch(0.62 0.22 28);
      --line: oklch(0.18 0.055 253 / 0.12);
      --soft-shadow: 0 18px 48px oklch(0.18 0.055 253 / 0.12);
      --strong-shadow: 0 30px 80px oklch(0.18 0.055 253 / 0.18);
      --font-heading: "termina", "Arial Black", "Helvetica Neue", sans-serif;
      --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    }

body.services-page *,
body.services-page *::before,
body.services-page *::after { box-sizing: border-box; }

body.services-page {
      margin: 0;
      color: var(--ink);
      background: var(--snow);
      font-family: var(--font-body);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

body.services-page img { display: block; max-width: 100%; }

body.services-page a { color: inherit; text-decoration: none; }

body.services-page button,
body.services-page input,
body.services-page select,
body.services-page textarea { font: inherit; }

body.services-page ::selection { color: var(--snow); background: var(--orange); }

body.services-page .skip-link {
      position: fixed; top: 12px; left: 12px; z-index: 200;
      padding: var(--space-xs) var(--space-s); color: var(--snow); background: var(--red);
      transform: translateY(-150%);
    }

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

body.services-page .site-header {
      position: fixed; inset: 0 0 auto; z-index: 100;
      color: var(--snow);
      background: oklch(0.18 0.055 253 / 0.5);
      backdrop-filter: blur(18px) saturate(1.25);
      -webkit-backdrop-filter: blur(18px) saturate(1.25);
      box-shadow: 0 1px 0 oklch(0.985 0.006 230 / 0.1);
    }

body.services-page .main-nav {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: var(--space-nav-gap);
      min-height: 64px;
      padding: 0 0 0 var(--space-nav-gap);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

body.services-page .brand { display: inline-flex; align-items: center; justify-self: start; padding: var(--space-xs) 0; }

body.services-page .brand-logo { display: block; width: clamp(118px, 10vw, 154px); height: auto; }

body.services-page .nav-links {
      display: flex; align-items: center; justify-self: end; justify-content: flex-end;
      gap: clamp(var(--space-s), 1.7vw, var(--space-m)); min-height: 64px;
    }

body.services-page .nav-links a,
body.services-page .nav-cta {
      transition: color 150ms var(--ease-out), transform 150ms var(--ease-out), opacity 150ms var(--ease-out);
    }

body.services-page .nav-links a:hover { color: var(--snow); opacity: 0.72; }

body.services-page .nav-cta {
      justify-self: end; display: inline-flex; align-items: center; align-self: stretch;
      min-height: 30px; padding: 0 clamp(var(--space-s), 2.3vw, var(--space-l));
      color: var(--snow); background: var(--orange);
    }

body.services-page .nav-cta:hover { transform: translateY(-1px); }

body.services-page h1,
body.services-page h2,
body.services-page h3 { margin: 0; font-family: var(--font-heading); text-transform: uppercase; }

body.services-page .eyebrow {
      margin: 0 0 var(--space-xs);
      color: var(--orange);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.services-page .eyebrow.blue { color: var(--blue); }

/* Page hero */
body.services-page .page-hero {
      position: relative;
      padding: clamp(var(--space-4xl), 12vw, 168px) var(--space-page-x) clamp(var(--space-xl), 6vw, var(--space-3xl));
      background: var(--snow);
      overflow: hidden;
    }

body.services-page .page-hero-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
    }

body.services-page .page-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
      gap: var(--space-fluid-gap);
      align-items: end;
    }

body.services-page .page-hero h1 {
      margin: 0;
      font-size: clamp(44px, 6.2vw, 84px);
      line-height: 0.95;
      letter-spacing: -0.04em;
      max-width: 760px;
    }

body.services-page .page-hero-aside p {
      margin: 0 0 var(--space-m);
      color: oklch(0.18 0.055 253 / 0.7);
      font-size: clamp(15px, 1.15vw, 17px);
      max-width: 420px;
    }

body.services-page .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      min-height: 48px;
      padding: 0 var(--space-s);
      border: 1px solid transparent;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: 0 12px 26px oklch(0.18 0.055 253 / 0.16);
      transition: transform 150ms var(--ease-out), background 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
    }

body.services-page .btn-icon {
      display: grid;
      place-items: center;
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      margin-left: auto;
      box-shadow: inset 0 0 0 1px currentColor;
      opacity: 0.92;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      transition: transform 150ms var(--ease-out);
    }

body.services-page .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px oklch(0.18 0.055 253 / 0.2);
    }

body.services-page .btn:hover .btn-icon { transform: translateX(2px); }

body.services-page .btn-primary { color: var(--snow); background: var(--orange); }

body.services-page .btn-primary:hover { background: var(--red); }

/* Hero strip - three image tiles with center stat */
body.services-page .hero-strip {
      padding: 0 var(--space-page-x) clamp(56px, 7vw, 96px);
    }

body.services-page .hero-strip-grid {
      width: min(100%, 1440px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-fluid-xs);
    }

body.services-page .hero-tile {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--alpine);
    }

body.services-page .hero-tile img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 400ms var(--ease-out);
    }

body.services-page .hero-tile:hover img { transform: scale(1.04); }

body.services-page .hero-stat {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(var(--space-m), 2.6vw, var(--space-l));
      color: var(--ink);
      background: #EDF5F9;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border: 1px solid oklch(0.18 0.055 253 / 0.08);
    }

body.services-page .hero-stat::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 88% 12%, oklch(0.62 0.15 235 / 0.14), transparent 34%);
      pointer-events: none;
    }

body.services-page .hero-stat-label {
      position: relative;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--navy);
    }

body.services-page .hero-stat-number {
      position: relative;
      font-family: var(--font-heading);
      font-weight: 800;
      font-size: clamp(24px, 2.6vw, 36px);
      line-height: 1.04;
      letter-spacing: -0.035em;
      max-width: 360px;
    }

body.services-page .hero-stat-foot {
      position: relative;
      display: flex;
      align-items: center;
      gap: var(--space-s);
      font-size: 12px;
      color: oklch(0.18 0.055 253 / 0.72);
    }

/* Services detail */
body.services-page .services-section {
      padding: clamp(56px, 7vw, 96px) var(--space-page-x) clamp(var(--space-2xl), 8vw, 112px);
      color: var(--ink);
      background: var(--snow);
    }

body.services-page .services-heading,
body.services-page .service-chapter,
body.services-page .service-feature,
body.services-page .service-secondary,
body.services-page .service-note {
      width: min(100%, 1440px);
      margin: 0 auto;
    }

body.services-page .services-heading {
      max-width: 860px;
      margin-bottom: clamp(var(--space-l), 5vw, 68px);
      text-align: center;
    }

body.services-page .services-heading h2 {
      color: var(--ink);
    }

body.services-page .services-heading h2 {
      font-size: clamp(30px, 3.8vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.035em;
    }

body.services-page .service-secondary-title {
      font-size: clamp(30px, 3.8vw, 42px);
      line-height: 1.02;
      letter-spacing: -0.035em;
    }

body.services-page .service-transfer-title {
      font-size: clamp(30px, 3.8vw, 42px);
      line-height: 1.02;
      letter-spacing: -0.035em;
    }

body.services-page .services-heading p:not(.eyebrow),
body.services-page .service-feature p:not(.eyebrow),
body.services-page .service-secondary-intro,
body.services-page .secondary-service-list p,
body.services-page .service-note span {
      margin: 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: clamp(15px, 1.15vw, 17px);
    }

body.services-page .services-heading p:not(.eyebrow) {
      max-width: 720px;
      margin-inline: auto;
      margin-top: var(--space-s);
    }

body.services-page .service-chapter {
      display: grid;
      grid-template-columns: minmax(340px, 1fr) minmax(0, 1fr);
      align-items: stretch;
      height: clamp(560px, 48vw, 680px);
      margin-bottom: var(--space-fluid-m);
    }

body.services-page .service-chapter-reverse {
      grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
      margin-top: var(--space-fluid-m);
    }

body.services-page .service-accordion {
      display: grid;
      grid-template-rows: minmax(0, 1.65fr) minmax(0, 0.675fr) minmax(0, 0.675fr);
      align-content: stretch;
      height: 100%;
      overflow: hidden;
      background: var(--snow);
      box-shadow: var(--soft-shadow);
      transition: grid-template-rows 260ms var(--ease-out);
    }

body.services-page .service-accordion[data-active="1"] {
      grid-template-rows: minmax(0, 0.675fr) minmax(0, 1.65fr) minmax(0, 0.675fr);
    }

body.services-page .service-accordion[data-active="2"] {
      grid-template-rows: minmax(0, 0.675fr) minmax(0, 0.675fr) minmax(0, 1.65fr);
    }

body.services-page .service-panel {
      display: flex;
      min-height: 0;
      flex-direction: column;
      overflow: hidden;
      color: var(--ink);
      background: var(--snow);
      cursor: pointer;
      transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
    }

body.services-page .service-panel + .service-panel {
      border-top: 1px solid var(--line);
    }

body.services-page .service-panel.is-active {
      color: var(--snow);
      background: var(--orange);
    }

body.services-page .service-panel:not(.is-active):hover {
      background: var(--alpine);
    }

body.services-page .service-panel-trigger {
      flex: 0 0 auto;
      width: 100%;
      padding: clamp(var(--space-s), 2.55vw, var(--space-l)) clamp(var(--space-m), 3vw, var(--space-l));
      border: 0;
      color: inherit;
      background: transparent;
      text-align: left;
      cursor: pointer;
      transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
    }

body.services-page .service-panel-trigger:focus-visible {
      outline: 3px solid oklch(0.62 0.15 235 / 0.35);
      outline-offset: -3px;
    }

body.services-page .service-panel-label {
      display: inline-flex;
      color: var(--blue);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

body.services-page .service-panel.is-active .service-panel-label {
      color: oklch(0.985 0.006 230 / 0.82);
    }

body.services-page .service-panel-title {
      display: block;
      margin-top: var(--space-s);
      font-family: var(--font-heading);
      font-size: clamp(20px, 1.55vw, 25px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -0.025em;
      text-transform: uppercase;
    }

body.services-page .service-panel-body {
      display: flex;
      flex: 0 0 auto;
      max-height: 0;
      flex-direction: column;
      overflow: hidden;
      opacity: 0;
      padding: 0 clamp(var(--space-m), 3vw, var(--space-l)) clamp(var(--space-m), 3.2vw, 40px);
      transition: max-height 260ms var(--ease-out), opacity 180ms var(--ease-out);
    }

body.services-page .service-panel.is-active .service-panel-body {
      flex: 1 1 auto;
      max-height: none;
      opacity: 1;
    }

body.services-page .service-panel-body p {
      max-width: 500px;
      margin: 0;
      color: oklch(0.985 0.006 230 / 0.84);
    }

body.services-page .service-panel-body a {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      width: min(100%, 360px);
      min-height: 58px;
      justify-content: space-between;
      margin-top: auto;
      padding: 0 var(--space-s) 0 var(--space-l);
      color: var(--snow);
      background: var(--navy);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: 0 12px 26px oklch(0.18 0.055 253 / 0.16);
      transition: transform 150ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 150ms var(--ease-out);
      will-change: transform, opacity;
    }

body.services-page .service-panel.is-active .service-panel-body a {
      opacity: 0;
      transform: translateY(22px);
    }

body.services-page .service-panel.is-active.cta-visible .service-panel-body a {
      opacity: 1;
      transform: translateY(0);
      animation: serviceCtaRise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

@keyframes serviceCtaRise {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

body.services-page .service-panel-body a::after {
      content: ">";
      display: grid;
      place-items: center;
      flex: 0 0 34px;
      width: 34px;
      height: 34px;
      border: 1px solid oklch(0.985 0.006 230 / 0.62);
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
      transition: transform 150ms var(--ease-out);
    }

body.services-page .service-panel-body a:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px oklch(0.18 0.055 253 / 0.2);
    }

body.services-page .service-panel-body a:hover::after {
      transform: translateX(3px);
    }

body.services-page .service-chapter-media {
      position: relative;
      min-height: 100%;
      height: 100%;
      overflow: hidden;
      box-shadow: var(--strong-shadow);
      background: var(--navy);
    }

body.services-page .service-chapter-media img,
body.services-page .service-feature img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

body.services-page .service-chapter-media img {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.025);
      transition:
        opacity 320ms var(--ease-out),
        transform 700ms var(--ease-out);
    }

body.services-page .service-chapter-media img.is-active {
      opacity: 1;
      transform: scale(1);
    }

body.services-page .service-feature {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      align-items: stretch;
      margin-top: var(--space-fluid-m);
      margin-bottom: var(--space-fluid-m);
      background: #EDF5F9;
      box-shadow: var(--soft-shadow);
    }

body.services-page .service-feature-copy {
      align-self: center;
      padding: clamp(38px, 5vw, 72px);
    }

body.services-page .service-feature-copy p:not(.eyebrow) {
      max-width: 620px;
      margin-top: var(--space-s);
    }

body.services-page .service-feature .btn {
      margin-top: var(--space-m);
    }

body.services-page .service-feature img {
      min-height: 460px;
    }

body.services-page .service-secondary {
      display: block;
      margin-top: clamp(var(--space-xl), 7vw, 96px);
      text-align: center;
    }

body.services-page .secondary-service-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: var(--space-fluid-m);
      background: var(--line);
      border: 1px solid var(--line);
    }

body.services-page .service-secondary-intro {
      max-width: 520px;
      margin: var(--space-m) auto 0;
    }

body.services-page .secondary-service-list article {
      background: var(--snow);
    }

body.services-page .secondary-service-list img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

body.services-page .secondary-service-list span {
      display: block;
      padding: clamp(var(--space-s), 2.2vw, var(--space-l)) var(--space-fluid-s) 0;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(16px, 1.25vw, 21px);
      font-weight: 800;
      letter-spacing: -0.02em;
      text-transform: uppercase;
    }

body.services-page .secondary-service-list p {
      margin-top: var(--space-xs);
      padding: 0 var(--space-fluid-s) var(--space-fluid-s);
    }

body.services-page .service-note {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: var(--space-s);
      margin-top: var(--space-fluid-m);
      padding: var(--space-s) var(--space-s);
      border-left: 3px solid var(--orange);
      background: oklch(0.68 0.22 36 / 0.09);
    }

body.services-page .service-note strong {
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

/* Launch notice */
body.services-page .launch-notice {
      background: var(--alpine);
      padding: clamp(var(--space-2xl), 8vw, 112px) var(--space-page-x);
    }

body.services-page .launch-notice-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
      text-align: center;
    }

body.services-page .launch-notice h2 {
      max-width: 960px;
      margin: 0 auto;
      font-size: clamp(38px, 5.4vw, 82px);
      line-height: 1.02;
      letter-spacing: -0.035em;
    }

body.services-page .pricing-block,
body.contact-page .contact-pricing-block {
      background: var(--snow);
    }

body.services-page .pricing-block-inner,
body.contact-page .pricing-block-inner {
      display: grid;
      grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
      align-items: center;
      gap: clamp(var(--space-l), 6vw, var(--space-3xl));
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: clamp(var(--space-xl), 7vw, 96px) var(--space-page-x-narrow);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

body.services-page .pricing-block h2,
body.contact-page .pricing-block-inner h2 {
      max-width: 620px;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.35vw, 54px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.035em;
      text-transform: uppercase;
    }

body.services-page .pricing-block-inner > p,
body.contact-page .pricing-block-inner > p {
      max-width: 620px;
      margin: 0;
      color: oklch(0.18 0.055 253 / 0.72);
      font-size: clamp(18px, 1.45vw, 24px);
      line-height: 1.5;
    }

/* Final CTA */
body.services-page .final-cta,
body.experiences-page .final-cta,
body.founder-page .final-cta {
      color: var(--snow);
      background:
        linear-gradient(135deg, oklch(0.68 0.22 36), oklch(0.62 0.22 28));
      overflow: hidden;
    }

body.services-page .final-cta .section-inner,
body.experiences-page .experience-final-cta-inner,
body.founder-page .founder-final-cta-inner {
      position: relative;
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: var(--space-section-y) var(--space-page-x-narrow);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: var(--space-fluid-gap);
      align-items: center;
    }

body.services-page .final-cta-copy,
body.experiences-page .final-cta-copy,
body.founder-page .final-cta-copy {
      position: relative;
      z-index: 1;
      max-width: 840px;
    }

body.services-page .final-cta .eyebrow,
body.experiences-page .final-cta .eyebrow,
body.founder-page .final-cta .eyebrow {
      color: oklch(0.985 0.006 230 / 0.78);
    }

body.services-page .final-cta h2,
body.experiences-page .final-cta h2,
body.founder-page .final-cta h2 {
      max-width: 840px;
      font-size: clamp(36px, 5vw, 55px);
      line-height: 0.95;
      letter-spacing: -0.045em;
    }

body.services-page .final-cta p,
body.experiences-page .final-cta p,
body.founder-page .final-cta p {
      margin: var(--space-s) 0 0;
      max-width: 620px;
      color: oklch(0.985 0.006 230 / 0.82);
      font-size: clamp(17px, 1.45vw, 22px);
    }

body.founder-page .final-cta p {
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.services-page .final-cta .btn,
body.experiences-page .final-cta .btn,
body.founder-page .final-cta .btn {
      position: relative;
      z-index: 1;
      color: var(--ink);
      background: var(--snow);
      align-self: center;
    }

body.services-page .final-cta .btn:hover,
body.experiences-page .final-cta .btn:hover,
body.founder-page .final-cta .btn:hover {
      background: var(--alpine);
    }

/* Footer */
.site-footer {
  --footer-text: var(--snow, var(--white));
  --footer-muted: color-mix(in srgb, var(--footer-text) 68%, transparent);
  --footer-line: color-mix(in srgb, var(--footer-text) 18%, transparent);
  --footer-panel: color-mix(in srgb, var(--blue-secondary, #1e3a5f) 16%, transparent);
  position: relative;
  overflow: hidden;
  color: var(--footer-text);
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--blue-interactive, #2f80ed) 16%, transparent), transparent 30%),
    radial-gradient(circle at 78% 36%, color-mix(in srgb, var(--blue-secondary, #1e3a5f) 22%, transparent), transparent 34%),
    var(--navy);
}

.footer-grid {
  --footer-grid-max: 1440px;
  --footer-grid-pad: var(--space-page-x-narrow);
  --footer-column-pad: clamp(var(--space-m), 4vw, var(--space-xl));
  --footer-edge-offset: calc((100vw - min(100vw, var(--footer-grid-max))) / 2 + var(--footer-grid-pad));
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "brand quiet inquiry"
    "about explore contact"
    "copyright legal note";
  gap: 0;
  width: min(100%, var(--footer-grid-max));
  margin: 0 auto;
  padding: clamp(var(--space-xl), 7vw, 92px) var(--footer-grid-pad) clamp(var(--space-l), 4vw, var(--space-xl));
}

.footer-brand-block { grid-area: brand; padding: 0 var(--footer-column-pad) var(--space-xl) 0; }
.footer-quiet-panel { grid-area: quiet; margin: 0 clamp(var(--space-s), 4vw, var(--space-xl)) var(--space-xl); }
.footer-inquiry { grid-area: inquiry; padding: 0 0 var(--space-xl) var(--footer-column-pad); }
.footer-about { grid-area: about; }
.footer-explore { grid-area: explore; }
.footer-contact { grid-area: contact; }
.footer-copyright { grid-area: copyright; }
.footer-legal { grid-area: legal; }
.footer-note { grid-area: note; }

.footer-contact,
.footer-contact * {
  font-family: var(--font-body);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: clamp(190px, 19vw, 292px);
  height: auto;
}

.footer-brand-block p,
.footer-inquiry p,
.footer-about p,
.footer-contact em,
.footer-copyright,
.footer-legal a,
.footer-note {
  color: var(--footer-muted);
}

.footer-brand-block p {
  max-width: 390px;
  margin: var(--space-m) 0 0;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.45;
}

.footer-inquiry h2,
.footer-about h3 {
  margin: 0;
  color: var(--footer-text);
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.footer-inquiry p {
  margin: var(--space-xs) 0 var(--space-m);
  font-size: clamp(17px, 1.4vw, 21px);
}

.footer-inquiry .btn {
  position: relative;
  width: min(100%, 380px);
  justify-content: flex-start;
  min-height: 64px;
  padding-left: var(--space-l);
  padding-right: var(--space-s);
}

.footer-about,
.footer-explore,
.footer-contact {
  position: relative;
  min-height: 340px;
  padding: clamp(var(--space-l), 4.4vw, var(--space-xl)) var(--footer-column-pad) clamp(var(--space-l), 4vw, var(--space-xl));
}

.footer-about {
  padding-left: 0;
}

.footer-contact {
  padding-left: var(--footer-column-pad);
  padding-right: 0;
}

.footer-about::before,
.footer-copyright::before,
.footer-copyright::after {
  content: "";
  position: absolute;
  left: calc(-1 * var(--footer-edge-offset));
  width: 100vw;
  height: 1px;
  background: var(--footer-line);
  pointer-events: none;
}

.footer-about::before,
.footer-copyright::before {
  top: 0;
}

.footer-copyright::after {
  bottom: 0;
}

.footer-explore,
.footer-contact {
  border-left: 1px solid var(--footer-line);
}

.footer-kicker {
  margin: 0 0 var(--space-m);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.footer-about .footer-kicker,
.footer-explore .footer-kicker,
.footer-contact .footer-kicker {
  color: var(--orange);
}

.footer-about h3 {
  max-width: 330px;
}

.footer-about p:not(.footer-kicker) {
  max-width: 390px;
  margin: var(--space-m) 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.footer-explore {
  display: grid;
  align-content: start;
}

.footer-explore a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s);
  min-height: 58px;
  border-bottom: 1px solid var(--footer-line);
  color: var(--footer-text);
  font-size: clamp(17px, 1.3vw, 18px);
  transition: color 180ms var(--ease-out), padding 180ms var(--ease-out);
}

.footer-explore a:last-of-type {
  border-bottom: 0;
}

.footer-explore a:hover {
  color: var(--orange);
  padding-left: var(--space-xs);
}

.footer-explore a .btn-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  box-shadow: inset 0 0 0 1px var(--footer-muted);
  color: var(--footer-muted);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: box-shadow 180ms var(--ease-out), color 180ms var(--ease-out), transform 150ms var(--ease-out);
}

.footer-explore a:hover .btn-icon {
  color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
  transform: translateX(4px);
}

.footer-contact-list {
  display: grid;
  gap: 0;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  column-gap: var(--space-s);
  min-height: 82px;
  border-bottom: 1px solid var(--footer-line);
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: var(--space-xs);
  border: 1px solid var(--footer-line);
  border-radius: 50%;
  color: var(--footer-text);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-contact-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-contact-copy {
  min-width: 0;
}

.footer-contact-copy strong,
.footer-contact-copy a {
  display: block;
  color: var(--footer-text);
  font-size: clamp(14px, 1.05vw, 16px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.footer-contact-copy a {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-contact-copy em {
  display: block;
  margin: var(--space-xs) 0 0;
  font-style: normal;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.2;
}

.footer-social {
  display: flex;
  gap: var(--space-s);
  margin-top: var(--space-s);
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: var(--space-xs);
  border: 1px solid var(--footer-line);
  border-radius: 50%;
  color: var(--footer-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: border-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out);
}

.footer-social img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-social a:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-copyright,
.footer-legal,
.footer-note {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 112px;
  margin: 0;
  padding: var(--space-m) clamp(var(--space-m), 4vw, var(--space-2xl));
  font-size: clamp(15px, 1.2vw, 18px);
}

.footer-copyright { padding-left: 0; }
.footer-note { padding-right: 0; line-height: 1.45; }

.footer-legal {
  justify-content: center;
  gap: clamp(var(--space-m), 4vw, 58px);
  border-left: 1px solid var(--footer-line);
  border-right: 1px solid var(--footer-line);
}

.footer-legal a {
  transition: color 180ms var(--ease-out);
}

.footer-legal a:hover {
  color: var(--orange);
}

.footer-ticker {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(128px, 12vw, 190px);
  overflow: hidden;
  padding-top: 0;
}

.footer-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: footer-ticker 72s linear infinite;
}

.footer-ticker span {
  display: block;
  padding-right: clamp(var(--space-xl), 7vw, 110px);
  color: color-mix(in srgb, var(--footer-text) 12%, transparent);
  font-family: var(--font-heading);
  font-size: clamp(80px, 13vw, 184px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes footer-ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand inquiry"
      "about explore"
      "contact contact"
      "copyright legal"
      "note note";
  }

  .footer-quiet-panel {
    display: none;
  }

  .footer-inquiry {
    padding-left: clamp(var(--space-m), 4vw, var(--space-xl));
  }

  .footer-contact {
    border-left: 0;
  }

  .footer-note {
    min-height: 0;
    padding-left: 0;
    border-top: 0;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "inquiry"
      "about"
      "explore"
      "contact"
      "copyright"
      "legal"
      "note";
    padding: var(--space-xl) 0 clamp(var(--space-l), 4vw, var(--space-xl));
  }

  .footer-brand-block,
  .footer-inquiry,
  .footer-about,
  .footer-explore,
  .footer-contact,
  .footer-copyright,
  .footer-legal,
  .footer-note {
    padding-right: var(--space-page-x);
    padding-left: var(--space-page-x);
  }

  .footer-brand-block,
  .footer-inquiry {
    padding-bottom: var(--space-l);
  }

  .footer-about::before,
  .footer-copyright::before,
  .footer-copyright::after {
    display: none;
  }

  .footer-about,
  .footer-explore,
  .footer-contact {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid var(--footer-line);
  }

  .footer-legal {
    justify-content: flex-start;
    border-right: 0;
    border-left: 0;
  }

  .footer-copyright,
  .footer-legal,
  .footer-note {
    border-top: 1px solid var(--footer-line);
  }

  .footer-note {
    border-bottom: 1px solid var(--footer-line);
    padding-top: var(--space-m);
    padding-bottom: var(--space-m);
  }

  .footer-ticker span {
    font-size: clamp(62px, 21vw, 112px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-ticker-track {
    animation: none;
  }
}

@media (max-width: 1120px) {
body.services-page .nav-links { display: none; }

body.services-page .page-hero-grid,
body.services-page .services-heading,
body.services-page .service-chapter,
body.services-page .service-chapter-reverse,
body.services-page .service-feature,
body.services-page .service-secondary,
body.services-page .pricing-block-inner,
body.contact-page .pricing-block-inner,
body.services-page .final-cta .section-inner,
body.experiences-page .experience-final-cta-inner,
body.founder-page .founder-final-cta-inner {
        grid-template-columns: 1fr;
        align-items: start;
      }

body.services-page .service-chapter,
body.services-page .service-chapter-reverse {
        height: auto;
      }

body.services-page .service-accordion {
        height: 520px;
      }

body.services-page .service-chapter-media {
        min-height: 420px;
        height: 420px;
      }

body.services-page .service-chapter-reverse .service-chapter-media {
        order: 2;
      }

body.services-page .service-chapter-reverse .service-accordion {
        order: 1;
      }

body.services-page .service-feature img {
        min-height: 380px;
      }

body.services-page .hero-strip-grid { grid-template-columns: 1fr; }

body.services-page .hero-stat { aspect-ratio: auto; min-height: 240px; }

    
}

@media (max-width: 720px) {
body.services-page .secondary-service-list,
body.services-page .service-note,
body.contact-page .pricing-block-inner {
        grid-template-columns: 1fr;
      }

body.services-page .service-accordion {
        height: 480px;
      }

body.services-page .footer-inner { display: grid; }


    
}

@media (prefers-reduced-motion: reduce) {
body.services-page *,
body.services-page *::before,
body.services-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
      }

    
}
/* End services page styles */

/* Alpine experiences page styles */
body.experiences-page {
      --snow: oklch(0.985 0.006 230);
      --alpine: oklch(0.965 0.01 230);
      --ice: oklch(0.93 0.014 230);
      --stone: oklch(0.65 0.018 238);
      --ink: oklch(0.18 0.055 253);
      --navy: oklch(0.22 0.065 253);
      --blue: oklch(0.62 0.15 235);
      --orange: oklch(0.68 0.22 36);
      --red: oklch(0.62 0.22 28);
      --line: oklch(0.18 0.055 253 / 0.12);
      --soft-shadow: 0 18px 48px oklch(0.18 0.055 253 / 0.12);
      --strong-shadow: 0 30px 80px oklch(0.18 0.055 253 / 0.18);
      --font-heading: "termina", "Arial Black", "Helvetica Neue", sans-serif;
      --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
      --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
      margin: 0;
      max-width: 100%;
      overflow-x: hidden;
      overflow-x: clip;
      color: var(--ink);
      background: var(--snow);
      font-family: var(--font-body);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

body.experiences-page *,
body.experiences-page *::before,
body.experiences-page *::after { box-sizing: border-box; }

body.experiences-page img { display: block; max-width: 100%; }

body.experiences-page a { color: inherit; text-decoration: none; }

body.experiences-page button,
body.experiences-page input,
body.experiences-page select,
body.experiences-page textarea { font: inherit; }

body.experiences-page ::selection { color: var(--snow); background: var(--orange); }

body.experiences-page .skip-link {
      position: fixed; top: 12px; left: 12px; z-index: 200;
      padding: var(--space-xs) var(--space-s); color: var(--snow); background: var(--red);
      transform: translateY(-150%);
    }

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

body.experiences-page .site-header {
      position: fixed; inset: 0 0 auto; z-index: 100;
      color: var(--snow);
      background: oklch(0.18 0.055 253 / 0.32);
      backdrop-filter: blur(18px) saturate(1.25);
      -webkit-backdrop-filter: blur(18px) saturate(1.25);
      box-shadow: 0 1px 0 oklch(0.985 0.006 230 / 0.12);
    }

body.experiences-page .main-nav {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: var(--space-nav-gap);
      min-height: 64px;
      padding: 0 0 0 var(--space-nav-gap);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

body.experiences-page .brand { display: inline-flex; align-items: center; justify-self: start; padding: var(--space-xs) 0; }

body.experiences-page .brand-logo { display: block; width: clamp(118px, 10vw, 154px); height: auto; }

body.experiences-page .nav-links {
      display: flex; align-items: center; justify-self: end; justify-content: flex-end;
      gap: clamp(var(--space-s), 1.7vw, var(--space-m)); min-height: 64px;
    }

body.experiences-page .nav-links a,
body.experiences-page .nav-cta {
      transition: color 150ms var(--ease-out), transform 150ms var(--ease-out), opacity 150ms var(--ease-out);
    }

body.experiences-page .nav-links a:hover { color: var(--snow); opacity: 0.72; }

body.experiences-page .nav-links a[aria-current="page"] { color: var(--snow); }

body.experiences-page .nav-cta {
      justify-self: end; display: inline-flex; align-items: center; align-self: stretch;
      min-height: 30px; padding: 0 clamp(var(--space-s), 2.3vw, var(--space-l));
      color: var(--snow); background: var(--orange);
    }

body.experiences-page .nav-cta:hover { transform: translateY(-1px); }

body.experiences-page h1,
body.experiences-page h2,
body.experiences-page h3 { margin: 0; font-family: var(--font-heading); text-transform: uppercase; }

body.experiences-page .eyebrow {
      margin: 0 0 var(--space-xs);
      color: var(--orange);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.experiences-page .experiences-hero .eyebrow {
      color: #addcf5;
    }

body.experiences-page .experiences-hero {
      position: relative;
      min-height: clamp(620px, 72vw, 820px);
      display: grid;
      align-items: center;
      overflow: hidden;
      color: var(--snow);
      background: var(--navy);
      isolation: isolate;
    }

body.experiences-page .experiences-hero-image,
body.experiences-page .experiences-hero-shade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

body.experiences-page .experiences-hero-image {
      left: -40px;
      right: auto;
      width: calc(100% + 80px);
      max-width: none;
      object-fit: cover;
      object-position: center;
      transform: translate3d(var(--experiences-hero-image-x, 0px), 0, 0);
      will-change: transform;
      z-index: -2;
    }

body.experiences-page .experiences-hero-shade {
      z-index: -1;
      background:
        linear-gradient(90deg, oklch(0.18 0.055 253 / 0.78) 0%, oklch(0.18 0.055 253 / 0.54) 32%, oklch(0.18 0.055 253 / 0.14) 62%, oklch(0.18 0.055 253 / 0.02) 100%),
        linear-gradient(0deg, oklch(0.18 0.055 253 / 0.22), transparent 42%);
    }

body.experiences-page .experiences-hero-content {
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: clamp(128px, 13vw, 190px) var(--space-page-x-narrow) clamp(72px, 8vw, 116px);
    }

body.experiences-page .experiences-hero h1 {
      max-width: 760px;
      font-size: clamp(44px, 6.2vw, 84px);
      line-height: 0.96;
      letter-spacing: -0.045em;
    }

body.experiences-page .experiences-hero-content > p:not(.eyebrow) {
      max-width: 520px;
      margin: var(--space-m) 0 0;
      color: oklch(0.985 0.006 230 / 0.88);
      font-size: clamp(15px, 1.18vw, 18px);
      line-height: 1.65;
    }

body.experiences-page .experiences-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-s);
      margin-top: var(--space-l);
    }

body.experiences-page .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      min-height: 48px;
      padding: 0 var(--space-s);
      border: 1px solid transparent;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: 0 12px 26px oklch(0.18 0.055 253 / 0.16);
      transition: transform 150ms var(--ease-out), background 150ms var(--ease-out), border-color 150ms var(--ease-out), color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
    }

body.experiences-page .btn-icon {
      display: grid;
      place-items: center;
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      margin-left: auto;
      box-shadow: inset 0 0 0 1px currentColor;
      opacity: 0.92;
      font-size: 15px;
      font-weight: 900;
      line-height: 1;
      transition: transform 150ms var(--ease-out);
    }

body.experiences-page .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px oklch(0.18 0.055 253 / 0.22);
    }

body.experiences-page .btn:hover .btn-icon { transform: translateX(2px); }

body.experiences-page .btn-primary { color: var(--snow); background: var(--orange); }

body.experiences-page .btn-primary:hover { background: var(--red); }

body.experiences-page .btn-secondary {
      color: var(--snow);
      background: oklch(0.18 0.055 253 / 0.3);
      border-color: oklch(0.985 0.006 230 / 0.42);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

body.experiences-page .btn-secondary:hover {
      background: oklch(0.985 0.006 230 / 0.12);
      border-color: oklch(0.985 0.006 230 / 0.72);
    }

body.experiences-page .section {
      padding: 0;
      background: var(--snow);
    }

body.experiences-page .section.alt {
      background: var(--alpine);
    }

body.experiences-page .experiences-intro {
      background-color: #dfdfdf;
      background-image: url("images/snow.png"), linear-gradient(to bottom, #eaeaea 0%, #dfdfdf 100%);
      background-position: calc(50% + var(--experience-intro-bg-x, 0px)) bottom, center;
      background-repeat: no-repeat, no-repeat;
      background-size: calc(100% + 80px) auto, 100% 100%;
    }

body.experiences-page .section-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
      padding-inline: var(--space-page-x-narrow);
    }

body.experiences-page .section .section-inner:not(.experience-intro-inner):not(.experience-categories-inner):not(.experience-timing-inner):not(.experience-day-inner):not(.experience-seasons-inner):not(.experience-guidance-inner) {
      padding-top: var(--space-section-y-lg);
      padding-bottom: clamp(72px, 9vw, 72px);
    }

body.experiences-page .experience-intro-inner {
      padding-top: var(--space-section-y-lg);
      padding-bottom: clamp(72px, 9vw, 132px);
    }

body.experiences-page .experience-categories-inner {
      padding-top: clamp(0px, 9vw, 0px);
      padding-bottom: var(--space-section-y-lg);
    }

body.experiences-page .experience-day-inner {
      padding-top: var(--space-section-y-lg);
      padding-bottom: clamp(72px, 9vw, var(--space-4xl));
    }

body.experiences-page .experience-seasons-inner {
      padding-top: clamp(72px, 9vw, 72px);
      padding-bottom: var(--space-section-y-lg);
    }

body.experiences-page .experience-categories-section {
      position: relative;
      overflow: hidden;
    }

body.experiences-page .experience-categories-section::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      z-index: 0;
      height: clamp(120px, 14vw, 220px);
      background: linear-gradient(to bottom, #fff 0%, var(--snow) 100%);
      pointer-events: none;
    }

body.experiences-page .experience-categories-section > .section-inner {
      position: relative;
      z-index: 1;
    }

body.experiences-page .experience-categories-section .section-heading.split > p {
      margin-top: var(--space-m);
    }

body.experiences-page .section-heading {
      max-width: 1120px;
      margin-bottom: clamp(60px, 5vw, 68px);
    }

body.experiences-page .section-heading.centered {
      margin-right: auto;
      margin-left: auto;
      text-align: center;
    }

body.experiences-page .section-heading.centered p:not(.eyebrow) {
      margin-right: auto;
      margin-left: auto;
    }

body.experiences-page .section-heading.split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
      gap: var(--space-xl);
      align-items: start;
      max-width: none;
    }

body.experiences-page .section-heading h2 {
      font-size: clamp(28px, 3.35vw, 54px);
      line-height: 1;
      letter-spacing: -0.035em;
    }

body.experiences-page .section-heading p:not(.eyebrow) {
      max-width: 720px;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: clamp(17px, 1.35vw, 21px);
    }

body.experiences-page .experience-timing-inner,
body.experiences-page .experience-guidance-inner {
      width: 100%;
      max-width: none;
      padding-top: 0;
      padding-bottom: 0;
      padding-inline: 0;
    }

body.experiences-page .lifestyle-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
      gap: 0;
      align-items: stretch;
      min-height: clamp(620px, 72vh, 860px);
    }

body.experiences-page .lifestyle-image {
      position: relative;
      min-height: 100%;
      overflow: hidden;
      background: var(--navy);
    }

body.experiences-page .lifestyle-image img,
body.experiences-page .lifestyle-image iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

body.experiences-page .lifestyle-image img {
      object-fit: cover;
    }

body.experiences-page .experience-guidance .lifestyle-image img {
      left: -40px;
      right: auto;
      width: calc(100% + 80px);
      max-width: none;
      transform: translate3d(var(--experience-guidance-image-x, 0px), 0, 0);
      will-change: transform;
    }

body.experiences-page .experience-reveal {
      cursor: crosshair;
      isolation: isolate;
      --reveal-x: 50%;
      --reveal-y: 50%;
      --reveal-size: 0px;
      --reveal-feather: 96px;
    }

body.experiences-page .experience-reveal-underlay {
      z-index: 0;
    }

body.experiences-page .experience-reveal-fallback {
      z-index: 1;
    }

body.experiences-page .experience-reveal-canvas {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: block;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 240ms var(--ease-out);
    }

body.experiences-page .experience-reveal.is-ready .experience-reveal-canvas {
      opacity: 1;
    }

body.experiences-page .experience-reveal.is-css-reveal .experience-reveal-underlay {
      z-index: 1;
    }

body.experiences-page .experience-reveal.is-css-reveal .experience-reveal-fallback {
      z-index: 2;
      -webkit-mask-image: radial-gradient(
        circle at var(--reveal-x) var(--reveal-y),
        transparent 0 var(--reveal-size),
        black calc(var(--reveal-size) + var(--reveal-feather))
      );
      mask-image: radial-gradient(
        circle at var(--reveal-x) var(--reveal-y),
        transparent 0 var(--reveal-size),
        black calc(var(--reveal-size) + var(--reveal-feather))
      );
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
    }

body.experiences-page .lifestyle-copy {
      align-self: center;
      max-width: 720px;
      padding: var(--space-section-y-sm) var(--space-page-x);
    }

body.experiences-page .lifestyle-copy h2 {
      font-size: clamp(30px, 3vw, 48px);
      line-height: 1.02;
      letter-spacing: -0.03em;
    }

body.experiences-page .lifestyle-copy p {
      max-width: 650px;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: clamp(17px, 1.35vw, 21px);
    }

body.experiences-page .lifestyle-copy .btn {
      margin-top: var(--space-m);
    }

body.experiences-page .experience-guidance .lifestyle-copy {
      justify-self: end;
      width: min(100%, 720px);
      max-width: none;
    }

body.experiences-page .experience-guidance .lifestyle-copy h2 {
      max-width: 620px;
      font-size: clamp(28px, 2.45vw, 40px);
      line-height: 1.06;
    }

body.experiences-page .eyebrow.blue {
      color: var(--blue);
    }

body.experiences-page .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-fluid-xs);
    }

body.experiences-page .experience-ticker {
      width: min(100%, 1440px);
      margin: 0 auto;
      overflow: hidden;
      background: var(--snow);
      cursor: grab;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
      touch-action: pan-y;
      user-select: none;
    }

body.experiences-page .experience-ticker.is-dragging {
      cursor: grabbing;
    }

body.experiences-page .experience-ticker .service-grid {
      display: flex;
      grid-template-columns: none;
      width: max-content;
      will-change: transform;
    }

body.experiences-page .experience-ticker .service-card {
      flex: 0 0 clamp(280px, 30vw, 440px);
      background: #fff;
      box-shadow: none;
      transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
    }

body.experiences-page .experience-ticker .service-card:hover {
      box-shadow: none;
    }

body.experiences-page .experience-ticker .service-card,
body.experiences-page .experience-ticker .service-card * {
      -webkit-user-drag: none;
    }

body.founder-page {
      --founder-body-copy-size: clamp(16px, 1.1vw, 18px);
    }

body.founder-page .founder-story {
      background: var(--snow);
    }

body.founder-page .founder-story-heading {
      max-width: 920px;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: clamp(var(--space-xl), 5vw, var(--space-3xl));
      text-align: center;
    }

body.founder-page .founder-story-eyebrow {
      margin: 0 0 var(--space-xs);
      color: var(--blue);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.founder-page .founder-story-heading h2 {
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 3.35vw, 54px);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.035em;
      text-transform: uppercase;
    }

body.founder-page .founder-story-heading p:not(.founder-story-eyebrow) {
      max-width: 720px;
      margin-right: auto;
      margin-left: auto;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.founder-page .founder-story-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--soft-shadow);
    }

body.founder-page .founder-story-copy {
      align-self: center;
      padding: clamp(42px, 5vw, var(--space-3xl));
    }

body.founder-page .founder-story-copy p {
      max-width: 650px;
      margin: 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.founder-page .founder-story-copy p + p {
      margin-top: var(--space-m);
    }

body.founder-page .founder-story-media {
      position: relative;
      min-height: clamp(420px, 42vw, 620px);
      overflow: hidden;
      background: var(--navy);
    }

body.founder-page .founder-story-media img {
      display: block;
      position: absolute;
      inset: 0 auto 0 -40px;
      width: calc(100% + 80px);
      max-width: none;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: translate3d(var(--founder-story-image-x, 0px), 0, 0);
      will-change: transform;
    }

body.founder-page .founder-global {
      background: var(--snow);
    }

body.founder-page .founder-global-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: var(--space-section-y) var(--space-page-x-narrow);
    }

body.founder-page .founder-global-eyebrow {
      margin: 0 0 var(--space-xs);
      color: var(--blue);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.founder-page .founder-credentials-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 0;
      align-items: center;
    }

body.founder-page .founder-credentials-copy {
      max-width: 620px;
      padding-right: clamp(var(--space-l), 6vw, 96px);
    }

body.founder-page .founder-credentials-copy h2 {
      font-size: clamp(28px, 2.45vw, 40px);
      line-height: 1.06;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

body.founder-page .founder-credentials-copy p:not(.founder-global-eyebrow) {
      margin: var(--space-m) 0 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.founder-page .founder-credentials-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      border: 1px solid var(--line);
      background: #fff;
    }

body.founder-page .founder-credential-card {
      display: grid;
      justify-items: center;
      align-content: center;
      min-height: 240px;
      padding: clamp(var(--space-m), 4vw, var(--space-xl)) var(--space-m);
      text-align: center;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

body.founder-page .founder-credential-card:nth-child(2n) {
      border-right: 0;
    }

body.founder-page .founder-credential-card:nth-last-child(-n + 2) {
      border-bottom: 0;
    }

body.founder-page .founder-credential-icon {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      margin-bottom: var(--space-m);
      color: var(--orange);
    }

body.founder-page .founder-credential-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
      stroke-width: 1.45;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

body.founder-page .founder-credential-card strong {
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(18px, 1.65vw, 24px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.1;
      text-transform: uppercase;
    }

body.founder-page .founder-credential-card span:last-child {
      max-width: 190px;
      margin-top: var(--space-xs);
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: 14px;
      line-height: 1.45;
    }

body.founder-page .founder-local {
      background: var(--alpine);
      overflow: hidden;
    }

body.founder-page .founder-local-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
      gap: 0;
      align-items: stretch;
      min-height: clamp(620px, 72vh, 860px);
    }

body.founder-page .founder-local-image {
      position: relative;
      min-height: 100%;
      overflow: hidden;
      background: var(--navy);
    }

body.founder-page .founder-local-image img {
      position: absolute;
      top: 0;
      bottom: 0;
      left: -40px;
      right: auto;
      width: calc(100% + 80px);
      max-width: none;
      height: 100%;
      object-fit: cover;
      transform: translate3d(var(--founder-local-image-x, 0px), 0, 0);
      will-change: transform;
    }

body.founder-page .founder-local-copy {
      align-self: center;
      max-width: 720px;
      padding: var(--space-section-y-sm) var(--space-page-x);
    }

body.founder-page .founder-local-eyebrow {
      margin: 0 0 var(--space-xs);
      color: var(--blue);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.founder-page .founder-local-copy h2 {
      max-width: 620px;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 2.45vw, 40px);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

body.founder-page .founder-local-copy p:not(.founder-local-eyebrow) {
      max-width: 650px;
      margin: var(--space-m) 0 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.founder-page .founder-mountains {
      background: var(--snow);
    }

body.founder-page .founder-mountains-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: var(--space-section-y) var(--space-page-x-narrow);
    }

body.founder-page .founder-mountains-heading {
      margin-bottom: clamp(var(--space-xl), 5vw, 68px);
    }

body.founder-page .section-heading p:not(.eyebrow) {
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.founder-page .founder-mountain-ticker {
      width: 100%;
      overflow: hidden;
      cursor: grab;
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
      mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
      touch-action: pan-y;
      user-select: none;
    }

body.founder-page .founder-mountain-ticker.is-dragging {
      cursor: grabbing;
    }

body.founder-page .founder-mountain-grid {
      display: flex;
      width: max-content;
      gap: clamp(var(--space-s), 2vw, var(--space-s));
      will-change: transform;
    }

body.founder-page .founder-mountain-card {
      display: flex;
      flex: 0 0 clamp(260px, calc((100vw - (2 * var(--space-page-x-narrow)) - (3 * var(--space-s))) / 4), 340px);
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
    }

body.founder-page .founder-mountain-card:hover {
      box-shadow: var(--soft-shadow);
    }

body.founder-page .founder-mountain-card img {
      width: 100%;
      aspect-ratio: 1.55 / 1;
      object-fit: cover;
      transition: transform 400ms var(--ease-out);
    }

body.founder-page .founder-mountain-card:hover img {
      transform: scale(1.045);
    }

body.founder-page .founder-mountain-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: clamp(var(--space-m), 2.3vw, var(--space-l));
      text-align: center;
    }

body.founder-page .founder-mountain-body span {
      color: var(--blue);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

body.founder-page .founder-mountain-body h3 {
      margin-top: var(--space-xs);
      max-width: 12ch;
      margin-inline: auto;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(18px, 1.15vw, 22px);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: 0;
      text-transform: uppercase;
      text-wrap: balance;
    }

body.founder-page .founder-mountain-body p {
      margin: var(--space-s) auto 0;
      color: oklch(0.18 0.055 253 / 0.66);
      font-size: 15px;
      line-height: 1.5;
    }

body.founder-page .founder-mountain-route {
      max-width: 18ch;
      margin-top: var(--space-2xs);
      color: oklch(0.18 0.055 253 / 0.58);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.25;
      text-wrap: balance;
    }

body.founder-page .founder-mountain-year {
      display: block;
      margin-bottom: var(--space-2xs);
      color: var(--orange);
      font-family: var(--font-heading);
      font-size: clamp(13px, 0.92vw, 16px);
      font-weight: 900;
      line-height: 1.12;
      letter-spacing: 0.08em;
      text-wrap: balance;
      text-transform: uppercase;
    }

body.founder-page .founder-mountain-status {
      display: block;
      margin-top: 2px;
      color: oklch(0.62 0.15 235 / 0.85);
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      line-height: 1;
    }

body.founder-page .founder-mountain-ticker .founder-mountain-card,
body.founder-page .founder-mountain-ticker .founder-mountain-card * {
      -webkit-user-drag: none;
    }

body.founder-page .founder-first-day {
      background: var(--alpine);
      overflow: hidden;
    }

body.founder-page .founder-first-day-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
      gap: 0;
      align-items: stretch;
      min-height: clamp(620px, 72vh, 860px);
    }

body.founder-page .founder-first-day-copy {
      align-self: center;
      justify-self: end;
      width: min(100%, 720px);
      max-width: none;
      padding: var(--space-section-y-sm) var(--space-page-x);
    }

body.founder-page .founder-first-day-eyebrow {
      margin: 0 0 var(--space-xs);
      color: var(--blue);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.founder-page .founder-first-day-copy h2 {
      max-width: 620px;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 2.45vw, 40px);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

body.founder-page .founder-first-day-copy p:not(.founder-first-day-eyebrow) {
      max-width: 650px;
      margin: var(--space-m) 0 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: var(--founder-body-copy-size);
      line-height: 1.65;
    }

body.founder-page .founder-origin-quote {
      max-width: 650px;
      margin: var(--space-l) 0 0;
      padding: 0;
    }

body.founder-page .founder-origin-quote p {
      margin: 0;
      padding-left: clamp(var(--space-s), 2vw, var(--space-m));
      border-left: 4px solid var(--orange);
      color: var(--navy);
      font-size: var(--founder-body-copy-size);
      font-weight: 650;
      line-height: 1.65;
    }

body.founder-page .founder-first-day-copy .btn {
      margin-top: var(--space-m);
    }

body.founder-page .founder-first-day-image {
      position: relative;
      min-height: 100%;
      overflow: hidden;
      background: var(--navy);
    }

body.founder-page .founder-first-day-image img {
      position: absolute;
      top: 0;
      bottom: 0;
      left: -40px;
      right: auto;
      width: calc(100% + 80px);
      max-width: none;
      height: 100%;
      object-fit: cover;
      transform: translate3d(var(--founder-first-day-image-x, 0px), 0, 0);
      will-change: transform;
    }

body.contact-page .contact-hero {
      position: relative;
      min-height: clamp(560px, 55vw, 720px);
      display: grid;
      place-items: center;
      overflow: hidden;
      color: var(--snow);
      text-align: center;
      isolation: isolate;
    }

body.contact-page .contact-hero-image,
body.contact-page .contact-hero-shade {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

body.contact-page .contact-hero-image {
      z-index: -2;
      object-fit: cover;
      object-position: center;
    }

body.contact-page .contact-hero-shade {
      z-index: -1;
      background:
        linear-gradient(0deg, oklch(0.18 0.055 253 / 0.58), oklch(0.18 0.055 253 / 0.28)),
        linear-gradient(90deg, oklch(0.18 0.055 253 / 0.34), oklch(0.18 0.055 253 / 0.12) 48%, oklch(0.18 0.055 253 / 0.34));
    }

body.contact-page .contact-hero-content {
      width: min(100%, 1050px);
      margin: 0 auto;
      padding: clamp(128px, 13vw, 180px) var(--space-page-x-narrow) clamp(72px, 8vw, 112px);
    }

body.contact-page .contact-hero-eyebrow,
body.contact-page .contact-section-eyebrow {
      margin: 0 0 var(--space-xs);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.contact-page .contact-hero-eyebrow {
      color: #addcf5;
    }

body.contact-page .contact-section-eyebrow {
      color: var(--orange);
    }

body.contact-page .contact-hero h1 {
      max-width: 1050px;
      margin: 0 auto;
      font-family: var(--font-heading);
      font-size: clamp(38px, 5vw, 72px);
      font-weight: 800;
      letter-spacing: -0.045em;
      line-height: 0.98;
      text-transform: none;
    }

body.contact-page .contact-hero-content > p:not(.contact-hero-eyebrow) {
      max-width: 720px;
      margin: var(--space-m) auto 0;
      color: oklch(0.985 0.006 230 / 0.9);
      font-size: clamp(17px, 1.35vw, 21px);
      line-height: 1.6;
    }

body.contact-page .contact-hero .btn {
      margin-top: var(--space-l);
    }

body.contact-page .contact-inquiry,
body.contact-page .contact-direct,
body.contact-page .contact-faq {
      background: var(--snow);
    }

body.contact-page .contact-inquiry-inner,
body.contact-page .contact-direct-inner,
body.contact-page .contact-faq-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: clamp(72px, 9vw, 112px) var(--space-page-x-narrow);
    }

body.contact-page .contact-inquiry-inner {
      display: grid;
      grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
      gap: clamp(40px, 7vw, 104px);
      align-items: start;
    }

body.contact-page .contact-inquiry-copy {
      position: sticky;
      top: clamp(96px, 9vw, 132px);
    }

body.contact-page .contact-inquiry-copy h2 {
      max-width: 460px;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 2.7vw, 44px);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -0.03em;
      text-transform: none;
}

body.contact-page .contact-inquiry-copy > p:not(.contact-section-eyebrow) {
      max-width: 420px;
      color: oklch(0.18 0.055 253 / 0.72);
      font-size: clamp(16px, 1.1vw, 18px);
      line-height: 1.7;
    }

body.contact-page .contact-inquiry-copy > p:not(.contact-section-eyebrow) {
      margin: var(--space-l) 0 0;
    }

body.contact-page .contact-direct-icon svg {
      width: 100%;
      height: auto;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

body.contact-page .contact-form {
      padding: clamp(var(--space-l), 4vw, var(--space-xl));
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--soft-shadow);
    }

body.contact-page .contact-form fieldset {
      margin: 0;
      padding: 0 0 var(--space-m);
      border: 0;
      border-bottom: 1px solid var(--line);
    }

body.contact-page .contact-form fieldset + fieldset {
      padding-top: var(--space-m);
    }

body.contact-page .contact-form legend,
body.contact-page .contact-message > span,
body.contact-page .contact-field-label {
      display: block;
      margin-bottom: var(--space-s);
	  padding-top: var(--space-2xs);		
      color: var(--navy);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

body.contact-page .contact-field-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--space-s) var(--space-m);
    }

body.contact-page .contact-field-grid label,
body.contact-page .contact-message {
      display: grid;
      gap: var(--space-xs);
    }

body.contact-page .contact-field-grid label > span {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

body.contact-page .contact-form input,
body.contact-page .contact-form select,
body.contact-page .contact-form textarea {
      width: 100%;
      min-height: 50px;
      border: 1px solid var(--line);
      border-radius: 0;
      background: #fff;
      color: var(--navy);
      font: inherit;
      font-size: 15px;
      outline: 0;
      padding: 0 var(--space-s);
      transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
    }

body.contact-page .contact-form textarea {
      min-height: 120px;
      resize: vertical;
      padding-top: var(--space-s);
    }

body.contact-page .contact-form input[type="date"] {
      color-scheme: light;
    }

body.contact-page .contact-form input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      opacity: 0.72;
      transition: opacity 150ms var(--ease-out);
    }

body.contact-page .contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
      opacity: 1;
    }

body.contact-page .contact-form input:focus,
body.contact-page .contact-form select:focus,
body.contact-page .contact-form textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px oklch(0.68 0.22 36 / 0.12);
    }

body.contact-page .contact-field-block {
      margin-top: var(--space-m);
    }

body.contact-page .contact-segmented {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--line);
    }

body.contact-page .contact-segmented label {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 50px;
      border-right: 1px solid var(--line);
      cursor: pointer;
      color: oklch(0.18 0.055 253 / 0.72);
      font-size: 14px;
      transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
    }

body.contact-page .contact-segmented label:last-child {
      border-right: 0;
    }

body.contact-page .contact-segmented input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }

body.contact-page .contact-segmented input:checked + span {
      color: #fff;
      font-weight: 800;
    }

body.contact-page .contact-segmented label:has(input:checked) {
      background: var(--orange);
      color: #fff;
    }

body.contact-page .contact-check-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--space-s) var(--space-l);
    }

body.contact-page .contact-check-grid label {
      display: flex;
      align-items: flex-start;
      gap: var(--space-xs);
      color: oklch(0.18 0.055 253 / 0.76);
      font-size: 14px;
      line-height: 1.35;
    }

body.contact-page .contact-check-grid input {
      flex: 0 0 16px;
      width: 16px;
      min-height: 16px;
      height: 16px;
      margin-top: 1px;
      padding: 0;
      accent-color: var(--orange);
    }

body.contact-page .contact-message {
      margin-top: var(--space-m);
    }

body.contact-page .contact-form .btn-primary {
      width: 100%;
      min-height: 58px;
      margin-top: var(--space-m);
      padding-right: var(--space-2xl);
      padding-left: var(--space-2xl);
      cursor: pointer;
    }

body.contact-page .contact-form .btn-primary:hover .btn-icon {
      transform: translateX(2px);
    }

body.contact-page .contact-form-note {
      margin: var(--space-s) 0 0;
      color: oklch(0.18 0.055 253 / 0.52);
      font-size: 13px;
      text-align: center;
    }

body.contact-page .contact-form-note.is-success,
.inquiry-drawer .contact-form-note.is-success {
      color: oklch(0.42 0.12 150);
      font-weight: 700;
    }

body.contact-page .contact-form-note.is-error,
.inquiry-drawer .contact-form-note.is-error {
      color: var(--red, oklch(0.62 0.22 28));
      font-weight: 700;
    }

.contact-form.is-thank-you > :not(.contact-thank-you) {
      display: none !important;
    }

.contact-thank-you[hidden] {
      display: none !important;
    }

.contact-thank-you {
      min-height: clamp(320px, 42vw, 440px);
      display: grid;
      place-items: center;
      align-content: center;
      gap: 12px;
      padding: clamp(var(--space-l), 5vw, var(--space-2xl));
      border: 1px solid oklch(0.18 0.055 253 / 0.12);
      background:
        linear-gradient(145deg, oklch(1 0 0 / 0.88), oklch(0.97 0.018 80 / 0.92));
      color: var(--ink, oklch(0.18 0.055 253));
      text-align: center;
    }

.contact-thank-you-mark {
      width: 58px;
      height: 58px;
      border: 1px solid var(--red, oklch(0.62 0.22 28));
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: var(--red, oklch(0.62 0.22 28));
    }

.contact-thank-you-mark::before {
      content: "";
      width: 20px;
      height: 11px;
      border-bottom: 2px solid currentColor;
      border-left: 2px solid currentColor;
      transform: translateY(-2px) rotate(-45deg);
    }

.contact-thank-you h3 {
      margin: var(--space-xs) 0 0;
      font-family: var(--font-display, serif);
      font-size: clamp(34px, 4vw, 54px);
      font-weight: 400;
      line-height: 0.95;
      letter-spacing: 0;
    }

.contact-thank-you p {
      max-width: 320px;
      margin: 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: 15px;
      line-height: 1.55;
    }

.contact-thank-you small {
      margin-top: var(--space-xs);
      color: oklch(0.18 0.055 253 / 0.52);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

.contact-thank-you small strong {
      color: var(--red, oklch(0.62 0.22 28));
      font-weight: 800;
    }

body.contact-page .contact-direct-inner,
body.contact-page .contact-faq-inner {
      padding-top: 0;
    }

body.contact-page .contact-direct-inner {
      padding-top: clamp(var(--space-m), 4vw, var(--space-xl));
    }

body.contact-page .contact-mini-heading {
      margin-bottom: var(--space-m);
      text-align: center;
    }

body.contact-page .contact-mini-heading h2 {
      display: inline-block;
      position: relative;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(18px, 1.45vw, 24px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      text-transform: uppercase;
    }

body.contact-page .contact-mini-heading h2::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -10px;
      width: 42px;
      height: 2px;
      background: var(--orange);
      transform: translateX(-50%);
    }

body.contact-page .contact-direct-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border: 1px solid var(--line);
      background: #fff;
    }

body.contact-page .contact-direct-grid article {
      display: grid;
      justify-items: center;
      align-content: start;
      min-height: 168px;
      padding: var(--space-m) clamp(var(--space-s), 3vw, var(--space-l));
      text-align: center;
      border-right: 1px solid var(--line);
    }

body.contact-page .contact-direct-grid article:last-child {
      border-right: 0;
    }

body.contact-page .contact-direct-icon {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: var(--space-s);
      color: var(--orange);
    }

body.contact-page .contact-direct-grid h3 {
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

body.contact-page .contact-direct-grid p {
      margin: var(--space-xs) 0 0;
      color: oklch(0.18 0.055 253 / 0.72);
      font-size: 14px;
      line-height: 1.45;
    }

body.contact-page .contact-faq-list {
      border: 1px solid var(--line);
      background: #fff;
    }

body.contact-page .contact-faq-item + .contact-faq-item {
      border-top: 1px solid var(--line);
    }

body.contact-page .contact-faq-item h3 {
      margin: 0;
    }

body.contact-page .contact-faq-item button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-m);
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      font-weight: 800;
      padding: var(--space-m) clamp(var(--space-s), 3vw, var(--space-xl));
      text-align: left;
    }

body.contact-page .contact-faq-item button span {
      display: block;
      flex: 0 0 18px;
      width: 18px;
      height: 18px;
      background-image:
        linear-gradient(currentColor, currentColor),
        linear-gradient(currentColor, currentColor);
      background-position: center;
      background-repeat: no-repeat;
      background-size: 13px 2px, 2px 13px;
      transition: background-size 220ms var(--ease-out), color 220ms var(--ease-out);
    }

body.contact-page .contact-faq-item.is-open button span {
      background-size: 13px 2px, 0 0;
    }

body.contact-page .contact-faq-panel {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 280ms var(--ease-out);
    }

body.contact-page .contact-faq-item.is-open .contact-faq-panel {
      grid-template-rows: 1fr;
    }

body.contact-page .contact-faq-panel p {
      overflow: hidden;
      margin: 0;
      padding: 0 clamp(var(--space-s), 3vw, var(--space-xl));
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: 14px;
      line-height: 1.55;
      transition: padding-bottom 280ms var(--ease-out);
    }

body.contact-page .contact-faq-item.is-open .contact-faq-panel p {
      padding-bottom: var(--space-m);
    }

body.faq-page {
      background: var(--snow);
    }

body.faq-page .faq-hero {
      padding: clamp(128px, 14vw, 190px) var(--space-page-x-narrow) clamp(var(--space-xl), 7vw, 104px);
      background: var(--snow);
    }

body.faq-page .faq-hero-inner {
      display: grid;
      grid-template-columns: minmax(300px, 0.92fr) minmax(0, 0.78fr);
      align-items: end;
      gap: clamp(var(--space-l), 7vw, var(--space-4xl));
      width: min(100%, 1440px);
      margin: 0 auto;
    }

body.faq-page .faq-hero h1 {
      max-width: 900px;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(48px, 8vw, 70px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.055em;
      text-transform: uppercase;
    }

body.faq-page .faq-hero-inner > p {
      max-width: 620px;
      margin: 0;
      color: oklch(0.18 0.055 253 / 0.72);
      font-size: clamp(17px, 1.25vw, 20px);
      line-height: 1.65;
    }

body.faq-page .faq-quick-section,
body.faq-page .faq-list-section {
      background: var(--snow);
    }

body.faq-page .faq-quick-inner,
body.faq-page .faq-list-inner {
      width: min(100%, 1440px);
      margin: 0 auto;
      padding: 0 var(--space-page-x-narrow) clamp(72px, 8vw, 112px);
    }

body.faq-page .faq-quick-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      border: 1px solid var(--line);
      background: #fff;
    }

body.faq-page .faq-quick-grid article {
      display: grid;
      align-content: start;
      min-height: 310px;
      padding: clamp(var(--space-m), 3vw, var(--space-xl));
      border-right: 1px solid var(--line);
    }

body.faq-page .faq-quick-grid article:last-child {
      border-right: 0;
    }

body.faq-page .faq-quick-grid span {
      color: var(--blue);
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

body.faq-page .faq-quick-grid h3 {
      margin-top: var(--space-m);
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(18px, 1.55vw, 25px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.025em;
      text-transform: uppercase;
    }

body.faq-page .faq-quick-grid p {
      margin: var(--space-m) 0 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: 15px;
      line-height: 1.58;
    }

body.faq-page .faq-section-heading {
      margin-bottom: var(--space-m);
      text-align: center;
    }

body.faq-page .faq-section-heading h2 {
      display: inline-grid;
      gap: var(--space-xs);
      justify-items: center;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(18px, 1.45vw, 24px);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      text-transform: uppercase;
    }

body.faq-page .faq-section-heading h2::after {
      content: "";
      width: 42px;
      height: 2px;
      background: var(--orange);
    }

body.faq-page .faq-list-inner {
      display: grid;
      grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
      gap: clamp(40px, 7vw, 104px);
      align-items: start;
    }

body.faq-page .faq-list-heading h2 {
      max-width: 520px;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 2.7vw, 44px);
      font-weight: 800;
      line-height: 1.06;
      letter-spacing: -0.03em;
      text-transform: none;
    }

body.faq-page .faq-list-heading > p:not(.contact-section-eyebrow) {
      max-width: 430px;
      margin: var(--space-l) 0 0;
      color: oklch(0.18 0.055 253 / 0.72);
      font-size: clamp(16px, 1.1vw, 18px);
      line-height: 1.7;
    }

@media (max-width: 1120px) {
body.faq-page .faq-hero-inner,
body.faq-page .faq-list-inner {
        grid-template-columns: 1fr;
        align-items: start;
      }

body.faq-page .faq-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

body.faq-page .faq-quick-grid article:nth-child(2n) {
        border-right: 0;
      }

body.faq-page .faq-quick-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
      }
}

@media (max-width: 720px) {
body.faq-page .faq-hero {
        padding-top: 112px;
      }

body.faq-page .faq-quick-grid {
        grid-template-columns: 1fr;
      }

body.faq-page .faq-quick-grid article,
body.faq-page .faq-quick-grid article:nth-child(2n),
body.faq-page .faq-quick-grid article:nth-child(-n + 2) {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

body.faq-page .faq-quick-grid article:last-child {
        border-bottom: 0;
      }
}

body.experiences-page .service-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      background: var(--snow);
      box-shadow: var(--soft-shadow);
      transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
    }

body.experiences-page .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--strong-shadow);
    }

body.experiences-page .service-card img {
      width: 100%;
      aspect-ratio: 1.55 / 1;
      object-fit: cover;
      transition: transform 400ms var(--ease-out);
    }

body.experiences-page .service-card:hover img {
      transform: scale(1.045);
    }

body.experiences-page .service-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      min-height: 310px;
      padding: var(--space-s);
    }

body.experiences-page .service-body span {
      color: var(--blue);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

body.experiences-page .service-body h3 {
      margin-top: var(--space-xs);
      min-height: 2.2em;
      font-size: clamp(20px, 1.8vw, 26px);
      line-height: 1.05;
      letter-spacing: -0.025em;
    }

body.experiences-page .service-body p {
      min-height: 4.65em;
      color: oklch(0.18 0.055 253 / 0.66);
    }

body.experiences-page .service-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-s);
      margin: auto calc(-1 * var(--space-s)) calc(-1 * var(--space-s));
      padding: var(--space-s) var(--space-s);
      color: var(--snow);
      background: var(--navy);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background 150ms var(--ease-out);
    }

body.experiences-page .service-cta::after {
      content: ">";
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border: 1px solid oklch(0.985 0.006 230 / 0.55);
      font-family: var(--font-body);
      font-size: 18px;
      font-weight: 800;
      line-height: 1;
      transition: transform 150ms var(--ease-out);
    }

body.experiences-page .service-card:hover .service-cta {
      background: var(--orange);
    }

body.experiences-page .service-card:hover .service-cta::after {
      transform: translateX(3px);
    }

body.experiences-page .experience-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: clamp(var(--space-s), 3vw, var(--space-xl));
      margin: 0;
      padding: var(--space-s) 0 0;
      list-style: none;
    }

body.experiences-page .experience-timeline::before {
      content: "";
      position: absolute;
      top: 21px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--line);
    }

body.experiences-page .experience-timeline li {
      position: relative;
      display: grid;
      justify-items: center;
      align-content: start;
      text-align: center;
    }

body.experiences-page .timeline-dot {
      position: relative;
      z-index: 1;
      width: 8px;
      height: 8px;
      margin-bottom: var(--space-l);
      border-radius: 999px;
      background: var(--orange);
    }

body.experiences-page .timeline-card {
      display: grid;
      justify-items: center;
      gap: var(--space-xs);
      max-width: 190px;
    }

body.experiences-page .timeline-icon {
      display: grid;
      place-items: center;
      width: 42px;
      height: 30px;
      color: var(--navy);
      font-size: 24px;
      line-height: 1;
    }

body.experiences-page .timeline-icon img {
      width: auto;
      height: 30px;
      object-fit: contain;
    }

body.experiences-page .timeline-card time {
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(15px, 1.15vw, 18px);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

body.experiences-page .timeline-card p {
      margin: 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: 14px;
      line-height: 1.45;
    }

body.experiences-page .experience-seasons {
      background: var(--snow);
    }

body.experiences-page .season-tabs {
      display: block;
      width: 100%;
      margin-bottom: 0;
    }

body.experiences-page .season-tab-list {
      display: inline-flex;
      align-items: center;
      margin-bottom: var(--space-m);
      border: 1px solid var(--line);
      background: #fff;
    }

body.experiences-page .season-tab {
      appearance: none;
      border: 0;
      border-right: 1px solid var(--line);
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.12em;
      line-height: 1;
      padding: var(--space-s) var(--space-m);
      text-transform: uppercase;
      transition: background 180ms var(--ease-out), color 180ms var(--ease-out);
    }

body.experiences-page .season-tab:last-child {
      border-right: 0;
    }

body.experiences-page .season-tab:hover,
body.experiences-page .season-tab.is-active {
      background: var(--orange);
      color: #fff;
    }

body.experiences-page .season-tab:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

body.experiences-page .season-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
      min-height: clamp(520px, 54vw, 720px);
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
    }

body.experiences-page .season-panel.is-active {
      animation: season-panel-enter 360ms var(--ease-out) both;
    }

body.experiences-page .season-panel[hidden] {
      display: none;
    }

body.experiences-page .season-panel-media {
      position: relative;
      min-height: 420px;
      overflow: hidden;
      background: var(--navy);
    }

body.experiences-page .season-panel-media img {
      display: block;
      position: absolute;
      inset: 0 auto 0 -40px;
      width: calc(100% + 80px);
      max-width: none;
      height: 100%;
      object-fit: cover;
      object-position: left center;
      transform: translate3d(var(--season-panel-image-x, 0px), 0, 0);
      will-change: transform;
    }

body.experiences-page .season-panel.is-active .season-panel-media img {
      animation: season-panel-image-enter 520ms var(--ease-out) both;
    }

body.experiences-page .season-panel-copy {
      align-self: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 520px;
      padding: clamp(var(--space-xl), 5vw, var(--space-3xl));
    }

body.experiences-page .season-panel.is-active .season-panel-copy > * {
      animation: season-panel-copy-enter 420ms var(--ease-out) both;
    }

body.experiences-page .season-panel.is-active .season-panel-copy > :nth-child(2) {
      animation-delay: 60ms;
    }

body.experiences-page .season-panel.is-active .season-panel-copy > :nth-child(3) {
      animation-delay: 110ms;
    }

body.experiences-page .season-panel.is-active .season-panel-copy > :nth-child(4) {
      animation-delay: 160ms;
    }

body.experiences-page .season-panel-copy h3 {
      max-width: 680px;
      min-height: calc(clamp(28px, 3vw, 48px) * 3.1);
      margin: 0;
      color: var(--navy);
      font-family: var(--font-heading);
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.02;
      text-transform: uppercase;
    }

body.experiences-page .season-panel-copy p:not(.eyebrow) {
      max-width: 620px;
      margin: var(--space-m) 0 0;
      color: oklch(0.18 0.055 253 / 0.68);
      font-size: clamp(17px, 1.35vw, 21px);
    }

body.experiences-page .season-activity-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--space-s) var(--space-m);
      margin: var(--space-l) 0 0;
      padding: 0;
      list-style: none;
    }

@keyframes season-panel-enter {
      from {
        opacity: 0.78;
      }
      to {
        opacity: 1;
      }
    }

@keyframes season-panel-image-enter {
      from {
        opacity: 0;
        transform: translate3d(calc(var(--season-panel-image-x, 0px) + 26px), 0, 0) scale(1.035);
      }
      to {
        opacity: 1;
        transform: translate3d(var(--season-panel-image-x, 0px), 0, 0) scale(1);
      }
    }

@keyframes season-panel-copy-enter {
      from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
      }
      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

@media (prefers-reduced-motion: reduce) {
body.experiences-page .season-panel.is-active,
body.experiences-page .season-panel.is-active .season-panel-media img,
body.experiences-page .season-panel.is-active .season-panel-copy > * {
        animation: none;
      }
}

body.experiences-page .season-activity-list li {
      position: relative;
      padding-left: var(--space-m);
      color: var(--navy);
      font-size: clamp(15px, 1vw, 18px);
      font-weight: 700;
      line-height: 1.35;
    }

body.experiences-page .season-activity-list li::before {
      content: "";
      position: absolute;
      top: 0.55em;
      left: 0;
      width: 8px;
      height: 8px;
      background: var(--orange);
      transform: rotate(45deg);
    }

@media (max-width: 1120px) {
body.experiences-page .nav-links { display: none; }

body.experiences-page .lifestyle-layout {
        grid-template-columns: 1fr;
      }

body.experiences-page .lifestyle-image,
body.experiences-page .lifestyle-copy {
        min-height: 520px;
      }

body.experiences-page .experience-guidance .lifestyle-copy {
        justify-self: stretch;
        width: auto;
      }

body.founder-page .founder-story-panel {
        grid-template-columns: 1fr;
      }

body.founder-page .founder-story-media {
        min-height: 360px;
      }

body.founder-page .founder-credentials-layout {
        grid-template-columns: 1fr;
      }

body.founder-page .founder-credentials-copy {
        max-width: 720px;
        padding-right: 0;
      }

body.founder-page .founder-local-layout {
        grid-template-columns: 1fr;
      }

body.founder-page .founder-local-image,
body.founder-page .founder-local-copy {
        min-height: 520px;
      }

body.founder-page .founder-first-day-layout {
        grid-template-columns: 1fr;
      }

body.founder-page .founder-first-day-copy {
        justify-self: stretch;
        width: auto;
      }

body.founder-page .founder-first-day-image,
body.founder-page .founder-first-day-copy {
        min-height: 520px;
      }

body.contact-page .contact-inquiry-inner {
        grid-template-columns: 1fr;
      }

body.contact-page .contact-inquiry-copy {
        max-width: 720px;
        position: static;
      }

body.contact-page .contact-direct-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

body.contact-page .contact-direct-grid article:nth-child(2n) {
        border-right: 0;
      }

body.contact-page .contact-direct-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
      }

body.experiences-page .section-heading.split {
        grid-template-columns: 1fr;
      }

body.experiences-page .experience-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 620px;
        margin-inline: auto;
        padding: 0;
      }

body.experiences-page .experience-timeline::before {
        top: 21px;
        bottom: 51px;
        left: 4px;
        right: auto;
        width: 1px;
        height: auto;
      }

body.experiences-page .experience-timeline li {
        grid-template-columns: 8px minmax(0, 1fr);
        justify-items: start;
        gap: var(--space-l);
        padding-bottom: var(--space-l);
        text-align: left;
      }

body.experiences-page .timeline-dot {
        grid-column: 1;
        grid-row: 1;
        margin: var(--space-s) 0 0;
      }

body.experiences-page .timeline-card {
        grid-column: 2;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        justify-items: start;
        max-width: none;
        gap: var(--space-xs) var(--space-s);
      }

body.experiences-page .timeline-icon {
        grid-row: 1 / span 2;
      }

body.experiences-page .timeline-card p {
        font-size: 15px;
      }

body.experiences-page .season-panel {
        grid-template-columns: 1fr;
        min-height: 0;
      }

body.experiences-page .season-panel-media {
        min-height: 360px;
      }

body.experiences-page .season-panel-copy {
        padding: clamp(var(--space-l), 8vw, 56px) clamp(var(--space-m), 7vw, var(--space-xl));
        min-height: 0;
      }

body.experiences-page .season-panel-copy h3 {
        min-height: 0;
      }

body.experiences-page .season-activity-list {
        grid-template-columns: 1fr;
      }
}

@media (max-width: 720px) {
body.experiences-page .main-nav {
        min-height: 58px;
        padding-left: var(--space-s);
      }

body.experiences-page .nav-cta {
        min-height: 58px;
        padding-inline: var(--space-s);
      }

body.experiences-page .experiences-hero {
        min-height: 680px;
        align-items: end;
      }

body.experiences-page .experiences-hero-image {
        object-position: 62% center;
      }

body.experiences-page .experiences-hero-shade {
        background:
          linear-gradient(0deg, oklch(0.18 0.055 253 / 0.86) 0%, oklch(0.18 0.055 253 / 0.56) 42%, oklch(0.18 0.055 253 / 0.12) 100%),
          linear-gradient(90deg, oklch(0.18 0.055 253 / 0.55), transparent 72%);
      }

body.experiences-page .experiences-hero-content {
        padding-top: 110px;
        padding-bottom: var(--space-xl);
      }

body.experiences-page .experience-ticker .service-card {
        flex-basis: min(82vw, 360px);
      }

body.experiences-page .season-tab-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
      }

body.experiences-page .season-tab {
        width: 100%;
        padding-inline: var(--space-s);
      }

body.experiences-page .season-panel-media {
        min-height: 300px;
      }

body.founder-page .founder-credentials-grid {
        grid-template-columns: 1fr;
      }

body.founder-page .founder-story-copy {
        padding: clamp(var(--space-l), 7vw, var(--space-xl)) clamp(var(--space-m), 7vw, var(--space-xl));
      }

body.founder-page .founder-story-media {
        min-height: 300px;
      }

body.founder-page .founder-local-image,
body.founder-page .founder-local-copy {
        min-height: 420px;
      }

body.founder-page .founder-first-day-image,
body.founder-page .founder-first-day-copy {
        min-height: 420px;
      }

body.contact-page .contact-hero {
        min-height: 620px;
      }

body.contact-page .contact-hero-content {
        padding-top: var(--space-4xl);
        padding-bottom: var(--space-xl);
      }

body.contact-page .contact-field-grid,
body.contact-page .contact-check-grid,
body.contact-page .contact-segmented,
body.contact-page .contact-direct-grid {
        grid-template-columns: 1fr;
      }

body.contact-page .contact-segmented label,
body.contact-page .contact-direct-grid article,
body.contact-page .contact-direct-grid article:nth-child(2n) {
        border-right: 0;
      }

body.contact-page .contact-segmented label:not(:last-child),
body.contact-page .contact-direct-grid article:not(:last-child),
body.contact-page .contact-direct-grid article:nth-child(-n + 2) {
      border-bottom: 1px solid var(--line);
    }


body.founder-page .founder-credential-card,
body.founder-page .founder-credential-card:nth-child(2n),
body.founder-page .founder-credential-card:nth-last-child(-n + 2) {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

body.founder-page .founder-credential-card:last-child {
        border-bottom: 0;
      }
}
/* End alpine experiences page styles */

/* Shared inquiry drawer */
.inquiry-drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.inquiry-drawer-shell.is-open {
  pointer-events: auto;
}

.inquiry-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: oklch(0.18 0.055 253 / 0.42);
  opacity: 0;
  transition: opacity 260ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.inquiry-drawer-shell.is-open .inquiry-drawer-backdrop {
  opacity: 1;
}

.inquiry-drawer {
  position: absolute;
  inset: 0 0 0 auto;
  width: clamp(360px, 25vw, 480px);
  max-width: min(92vw, 480px);
  overflow-y: auto;
  padding: clamp(var(--space-m), 3vw, var(--space-l));
  color: var(--ink, oklch(0.18 0.055 253));
  background: var(--snow, oklch(0.985 0.006 230));
  border-left: 1px solid color-mix(in srgb, var(--blue-700, #1d4f72) 15%, transparent);
  box-shadow: -28px 0 70px oklch(0.18 0.055 253 / 0.2);
  transform: translateX(100%);
  transition: transform 360ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.inquiry-drawer-shell.is-open .inquiry-drawer {
  transform: translateX(0);
}

.inquiry-drawer-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid color-mix(in srgb, var(--blue-700, #1d4f72) 15%, transparent);
  border-radius: 50%;
  color: var(--ink, oklch(0.18 0.055 253));
  background: color-mix(in srgb, var(--snow, white) 90%, transparent);
  cursor: pointer;
}

.inquiry-drawer-close::before,
.inquiry-drawer-close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.inquiry-drawer-close::before {
  transform: rotate(45deg);
}

.inquiry-drawer-close::after {
  transform: rotate(-45deg);
}

.inquiry-drawer-heading {
  margin: var(--space-2xs) 0 var(--space-m);
}

.inquiry-drawer-eyebrow {
  display: block;
  color: var(--blue, oklch(0.62 0.15 235));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.inquiry-drawer-heading h2 {
  margin: var(--space-xs) 0 0;
  font-family: var(--font-heading, "termina", sans-serif);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1.05;
  text-transform: uppercase;
}

.inquiry-drawer-heading p {
  margin: var(--space-xs) 0 0;
  color: color-mix(in srgb, var(--ink, #18324a) 72%, transparent);
  font-size: 14px;
  line-height: 1.65;
}

.inquiry-drawer .contact-form {
  padding: clamp(var(--space-l), 4vw, var(--space-l));
  border: 1px solid var(--line, oklch(0.18 0.055 253 / 0.12));
  background: #fff;
  box-shadow: var(--soft-shadow, 0 18px 48px oklch(0.18 0.055 253 / 0.12));
}

.inquiry-drawer .contact-form fieldset {
  margin: 0;
  padding: 0 0 var(--space-m);
  border: 0;
  border-bottom: 1px solid var(--line, oklch(0.18 0.055 253 / 0.12));
}

.inquiry-drawer .contact-form fieldset + fieldset {
  padding-top: var(--space-m);
}

.inquiry-drawer .contact-form legend,
.inquiry-drawer .contact-message > span,
.inquiry-drawer .contact-field-label {
  display: block;
  margin-bottom: var(--space-s);
  padding-top: var(--space-2xs);
  color: var(--navy, oklch(0.22 0.065 253));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-drawer .contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs);
}

.inquiry-drawer .contact-field-grid label,
.inquiry-drawer .contact-message {
  display: grid;
  gap: var(--space-xs);
}

.inquiry-drawer .contact-field-grid label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.inquiry-drawer .contact-form input,
.inquiry-drawer .contact-form select,
.inquiry-drawer .contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line, oklch(0.18 0.055 253 / 0.12));
  border-radius: 0;
  background: #fff;
  color: var(--navy, oklch(0.22 0.065 253));
  font: inherit;
  font-size: 15px;
  outline: 0;
  padding: 0 var(--space-s);
  transition: border-color 150ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), box-shadow 150ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.inquiry-drawer .contact-form textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: var(--space-s);
}

.inquiry-drawer .contact-form input[type="date"] {
  color-scheme: light;
}

.inquiry-drawer .contact-form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 150ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.inquiry-drawer .contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.inquiry-drawer .contact-form input:focus,
.inquiry-drawer .contact-form select:focus,
.inquiry-drawer .contact-form textarea:focus {
  border-color: var(--orange, oklch(0.68 0.22 36));
  box-shadow: 0 0 0 3px oklch(0.68 0.22 36 / 0.12);
}

.inquiry-drawer .contact-field-block {
  margin-top: var(--space-m);
}

.inquiry-drawer .contact-segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line, oklch(0.18 0.055 253 / 0.12));
}

.inquiry-drawer .contact-segmented label {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50px;
  border-right: 1px solid var(--line, oklch(0.18 0.055 253 / 0.12));
  cursor: pointer;
  color: oklch(0.18 0.055 253 / 0.72);
  font-size: 14px;
  transition: background 160ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), color 160ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.inquiry-drawer .contact-segmented label:last-child {
  border-right: 0;
}

.inquiry-drawer .contact-segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inquiry-drawer .contact-segmented input:checked + span {
  color: #fff;
  font-weight: 800;
}

.inquiry-drawer .contact-segmented label:has(input:checked) {
  color: #fff;
  background: var(--orange, oklch(0.68 0.22 36));
}

.inquiry-drawer .contact-check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.inquiry-drawer .contact-check-grid label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  color: oklch(0.18 0.055 253 / 0.76);
  font-size: 14px;
  line-height: 1.35;
}

.inquiry-drawer .contact-check-grid input {
  flex: 0 0 16px;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--orange, oklch(0.68 0.22 36));
}

.inquiry-drawer .contact-message {
  margin-top: var(--space-m);
}

.inquiry-drawer .contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  position: relative;
  width: 100%;
  min-height: 58px;
  margin-top: var(--space-m);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 var(--space-2xl);
  color: var(--snow, white);
  background: var(--orange, oklch(0.68 0.22 36));
  box-shadow: 0 12px 26px oklch(0.18 0.055 253 / 0.16);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), background 150ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1)), box-shadow 150ms var(--ease-out, cubic-bezier(0.23, 1, 0.32, 1));
}

.inquiry-drawer .contact-form .btn-primary:hover {
  background: var(--red, oklch(0.62 0.22 28));
  transform: translateY(-2px);
  box-shadow: 0 18px 34px oklch(0.18 0.055 253 / 0.2);
}

.inquiry-drawer .contact-form .btn-primary:hover .btn-icon {
  transform: translateX(2px);
}

.inquiry-drawer .contact-form-note {
  margin: var(--space-s) 0 0;
  color: oklch(0.18 0.055 253 / 0.52);
  font-size: 13px;
  text-align: center;
}

body.inquiry-drawer-open {
  overflow: hidden;
}

.site-footer .footer-inquiry .btn {
  position: relative;
  justify-content: flex-start;
  padding-left: var(--space-l);
  padding-right: var(--space-s);
}

.site-footer .footer-inquiry .btn:hover .btn-icon {
  transform: translateX(2px);
}

@media (max-width: 720px) {
  .inquiry-drawer {
    width: min(100vw, 430px);
    max-width: 100vw;
  }

  .inquiry-drawer .contact-field-grid,
  .inquiry-drawer .contact-check-grid,
  .inquiry-drawer .contact-segmented {
    grid-template-columns: 1fr;
  }

  .inquiry-drawer .contact-segmented label {
    border-right: 0;
    border-bottom: 1px solid var(--line, oklch(0.18 0.055 253 / 0.12));
  }

  .inquiry-drawer .contact-segmented label:last-child {
    border-bottom: 0;
  }
}

/* ─── Emil Design Engineering: Touch device hover protection ─── */
@media (hover: none) {
  .btn:hover,
  body.services-page .btn:hover,
  body.experiences-page .btn:hover {
    transform: none !important;
    box-shadow: 0 12px 26px oklch(0.18 0.055 253 / 0.16) !important;
  }

  .btn:hover .btn-icon,
  body.services-page .btn:hover .btn-icon,
  body.experiences-page .btn:hover .btn-icon {
    transform: none !important;
  }

  body.services-page .btn-primary:hover,
  body.experiences-page .btn-primary:hover {
    background: var(--orange) !important;
  }

  body.services-page .nav-cta:hover,
  body.experiences-page .nav-cta:hover {
    transform: none !important;
  }

  body.services-page .nav-links a:hover,
  body.experiences-page .nav-links a:hover {
    opacity: 1 !important;
  }

  body.services-page .hero-tile:hover img,
  body.experiences-page .service-card:hover img,
  body.founder-page .founder-mountain-card:hover img {
    transform: none !important;
  }

  body.services-page .service-panel:not(.is-active):hover,
  body.experiences-page .service-card:hover,
  body.founder-page .founder-mountain-card:hover {
    transform: none !important;
    box-shadow: var(--soft-shadow) !important;
  }

  body.experiences-page .service-card:hover .service-cta,
  .service-card:hover .service-cta {
    background: var(--navy) !important;
  }

  .footer-explore a:hover,
  .footer-social a:hover,
  .footer-legal a:hover {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ─── Emil Design Engineering: Active press states ─── */
body.services-page .btn:active,
body.experiences-page .btn:active,
body.founder-page .btn:active,
body.contact-page .btn:active,
body.services-page .service-panel:active,
body.experiences-page .service-card:active,
body.founder-page .founder-mountain-card:active {
  transform: scale(0.97) !important;
  transition-duration: 100ms !important;
}

/* ─── Emil Design Engineering: Asymmetric FAQ timing ─── */
body.contact-page .contact-faq-panel {
  transition: height 180ms var(--ease-out), opacity 140ms var(--ease-out);
}

.contact-faq-item.is-open .contact-faq-panel {
  transition: height 240ms cubic-bezier(0.23, 1, 0.32, 1), opacity 200ms var(--ease-out);
}

/* ─── Global Page Preloader ─── */
html.site-preloader-active,
body.site-preloader-active {
  overflow: hidden;
}

html.site-preloader-active body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  background:
    linear-gradient(135deg, oklch(0.18 0.055 253), oklch(0.13 0.045 253)),
    var(--navy);
}

html.site-preloader-mounted body::before {
  content: none;
}

.site-header {
  will-change: transform, opacity;
}

html.site-preloader-active .site-header {
  opacity: 0;
  transform: translate3d(0, -34px, 0);
}

body.site-preloader-done .site-header {
  animation: nav-slide-down 780ms var(--ease-out) 80ms both;
}

@keyframes nav-slide-down {
  from {
    opacity: 0;
    transform: translate3d(0, -34px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.site-preloader {
  --loader-progress: 0;
  --loader-reveal: 100%;
  --loader-size: clamp(118px, 18vw, 174px);
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  min-height: 100svh;
  color: var(--snow);
  background:
    linear-gradient(135deg, oklch(0.18 0.055 253), oklch(0.13 0.045 253)),
    var(--navy);
  transition:
    opacity 650ms var(--ease-out),
    visibility 650ms var(--ease-out);
}

.site-preloader::before {
  content: "";
  position: absolute;
  inset: clamp(18px, 2vw, 32px);
  border: 1px solid oklch(1 0 0 / 0.12);
  pointer-events: none;
}

.site-preloader-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(420px, calc(100vw - 48px));
  text-align: center;
}

.site-preloader-emblem {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--loader-size);
  height: var(--loader-size);
  margin: 0 0 var(--space-m);
}

.site-preloader-ring,
.site-preloader-orbit {
  position: absolute;
  inset: 0;
}

.site-preloader-ring {
  overflow: visible;
  transform: rotate(-90deg);
}

.site-preloader-ring-track,
.site-preloader-ring-progress {
  fill: none;
  stroke-width: 1.5;
}

.site-preloader-ring-track {
  stroke: oklch(1 0 0 / 0.18);
}

.site-preloader-ring-progress {
  stroke: var(--orange);
  stroke-dasharray: 100;
  stroke-dashoffset: calc(100 - (var(--loader-progress) * 100));
  stroke-linecap: round;
  transition: stroke-dashoffset 160ms linear;
}

.site-preloader-orbit {
  border-radius: 999px;
  background:
    conic-gradient(from 18deg, transparent 0deg 42deg, oklch(1 0 0 / 0.82) 52deg 68deg, transparent 78deg 360deg);
  animation: site-preloader-orbit 1800ms linear infinite;
  mask: radial-gradient(circle, transparent calc(50% - 2px), #000 calc(50% - 1px), #000 calc(50% + 1px), transparent calc(50% + 2px));
  -webkit-mask: radial-gradient(circle, transparent calc(50% - 2px), #000 calc(50% - 1px), #000 calc(50% + 1px), transparent calc(50% + 2px));
}

.site-preloader-logo {
  position: relative;
  display: block;
  width: calc(var(--loader-size) * 0.58);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 999px;
  clip-path: circle(50% at 50% 50%);
  contain: paint;
  background: var(--orange);
  box-shadow:
    0 22px 48px oklch(0 0 0 / 0.2),
    0 0 0 1px oklch(1 0 0 / 0.18);
}

.site-preloader-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--navy);
}

.site-preloader-progress-panel,
.site-preloader-mountain-mask {
  position: absolute;
  inset: 0;
}

.site-preloader-progress-panel {
  inset: 1px;
  z-index: 1;
  border-radius: inherit;
  background: var(--snow);
  clip-path: inset(var(--loader-reveal) 0 0 0);
  transition: clip-path 160ms linear;
}

.site-preloader-mountain-mask {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}

.site-preloader-kicker {
  margin: 0 0 var(--space-xs);
  color: #addcf5;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-preloader-percent {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.site-preloader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes site-preloader-orbit {
  to {
    transform: rotate(360deg);
  }
}

html.site-preloader-active .hero-media iframe,
html.site-preloader-active .hero-media img,
html.site-preloader-active .hero .eyebrow,
html.site-preloader-active .hero h1,
html.site-preloader-active .hero-copy,
html.site-preloader-active .hero-actions {
  animation-play-state: paused !important;
}

html.site-preloader-active body > :not(.site-preloader),
html.site-preloader-active body > :not(.site-preloader) * {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .site-preloader-ring-progress,
  .site-preloader-progress-panel {
    transition-duration: 80ms !important;
  }

  .site-preloader-orbit {
    animation: none;
  }
}

/* ─── Emil Design Engineering: Scroll-triggered entrance animations ─── */

/* Base reveal: fade + slide up */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Image clip reveal: wipe from bottom */
[data-reveal-image] {
  clip-path: inset(8% 0 8% 0);
  opacity: 0;
  transform: scale(1.03);
  transition:
    clip-path 700ms cubic-bezier(0.23, 1, 0.32, 1),
    opacity 500ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 800ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: clip-path, opacity, transform;
}

[data-reveal-image].is-revealed {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
[data-reveal-left] {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 520ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal-left].is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
[data-reveal-right] {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 520ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 600ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal-right].is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in (for cards, stats) */
[data-reveal-scale] {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 450ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 500ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal-scale].is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Reduced motion: instant reveal, no movement */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal-image],
  [data-reveal-left],
  [data-reveal-right],
  [data-reveal-scale] {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}


/* ============================================
   Mobile Navigation Menu (rebuilt)
   ============================================ */

.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  margin: 0 var(--space-s);
  padding: 0;
  background: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2xs);
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-burger:active { transform: scale(0.94); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 420ms;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s linear 0s;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 30, 0.7);
  opacity: 0;
  transition: opacity 220ms cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
  transition: opacity 320ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  background: rgba(12, 20, 40, 0.72);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  color: #ffffff;
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1);
  padding: var(--space-s) var(--space-m) var(--space-m);
  box-sizing: border-box;
  overflow-y: auto;
  will-change: transform;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mobile-menu__panel { background: #0c1428; }
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
  transition: transform 380ms cubic-bezier(0.32, 0.72, 0, 1);
}

/* Stagger: header utility, close, nav items, footer
   All start hidden, slide in from right + fade after panel begins moving */
.mobile-menu__utility,
.mobile-menu__close,
.mobile-menu__nav a,
.mobile-menu__footer {
  opacity: 0;
  transform: translateX(14px);
  transition:
    opacity 280ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 360ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.is-open .mobile-menu__utility,
.mobile-menu.is-open .mobile-menu__close,
.mobile-menu.is-open .mobile-menu__nav a,
.mobile-menu.is-open .mobile-menu__footer {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays — items begin entering ~120ms in,
   while the panel is still sliding. 50ms between each. */
.mobile-menu.is-open .mobile-menu__utility { transition-delay: 130ms; }
.mobile-menu.is-open .mobile-menu__close   { transition-delay: 160ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: 190ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: 240ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: 290ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: 340ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: 390ms; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: 440ms; }
.mobile-menu.is-open .mobile-menu__footer { transition-delay: 490ms; }

/* On close, snap items back instantly so they're ready for next open
   (avoids ghosting through the closing panel) */
.mobile-menu:not(.is-open) .mobile-menu__utility,
.mobile-menu:not(.is-open) .mobile-menu__close,
.mobile-menu:not(.is-open) .mobile-menu__nav a,
.mobile-menu:not(.is-open) .mobile-menu__footer {
  transition-duration: 0s;
  transition-delay: 0s;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  margin-bottom: var(--space-m);
  flex-shrink: 0;
}

.mobile-menu__utility {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  /* Pull leftmost icon's visual edge flush with the menu items' text edge */
  margin-left: calc(-1 * var(--space-xs));
}

.mobile-menu__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease, color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__close {
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-menu__icon-btn:active {
  transform: scale(0.94);
}

@media (hover: hover) and (pointer: fine) {
  .mobile-menu__icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.mobile-menu__nav a {
  display: block;
  padding: var(--space-s) 0;
  color: #ffffff;
  font-family: var(--font-heading, 'DM Sans', sans-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 160ms ease, padding-left 220ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu__nav a[aria-current="page"] {
  color: #ff8a3d;
}

@media (hover: hover) and (pointer: fine) {
  .mobile-menu__nav a:hover {
    color: #ff8a3d;
    padding-left: var(--space-xs);
  }
}

.mobile-menu__footer {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  padding-top: var(--space-m);
  margin-top: var(--space-m);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.mobile-menu__social {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: var(--space-xs);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  transition: border-color 180ms cubic-bezier(0.23, 1, 0.32, 1),
              transform 180ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: filter 180ms ease, opacity 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .mobile-menu__social:hover {
    border-color: #ff8a3d;
    transform: translateY(-2px);
  }
  .mobile-menu__social:hover img {
    opacity: 1;
    /* Tint to orange */
    filter: brightness(0) saturate(100%) invert(60%) sepia(70%) saturate(2400%) hue-rotate(345deg) brightness(102%) contrast(101%);
  }
}

.mobile-menu__social:active { transform: scale(0.94); }

body.mobile-menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu__backdrop,
  .mobile-menu__panel,
  .mobile-menu__utility,
  .mobile-menu__close,
  .mobile-menu__nav a,
  .mobile-menu__footer {
    transition-duration: 120ms !important;
    transition-delay: 0s !important;
  }
  .mobile-menu__panel { transform: translateX(0) !important; transition-property: opacity !important; opacity: 0; }
  .mobile-menu.is-open .mobile-menu__panel { opacity: 1; }
  .mobile-menu__utility,
  .mobile-menu__close,
  .mobile-menu__nav a,
  .mobile-menu__footer { transform: none !important; }
}

@media (max-width: 1120px) {
  .nav-burger { display: inline-flex; }

  body.services-page .nav-links,
  body.experiences-page .nav-links,
  body.founder-page .nav-links,
  body.contact-page .nav-links { display: none !important; }

  /* Apply universally to all pages (homepage uses plain .main-nav too) */
  .main-nav {
    grid-template-columns: auto 1fr auto auto !important;
    column-gap: 0 !important;
  }

}
