/* MVMNT CULTR — site styles (Blix-inspired redesign).
   Shared by index.html, about/ and contact/. */

/* Brand tokens kept from the previous stylesheet: the wordmark and the
   "Keep in touch" row still use them. */
:root {
  --ink: #080808;
  --paper: #f8f7f2;
  --gold: #FFBF00;
  --max: 1180px;
  --font-body: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-utility: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--bx-gold); outline-offset: 3px; }

/* ============ BLIX-STYLE SYSTEM ============ */
:root {
  --bx-bg: #fafafa;
  --bx-card: #ffffff;
  --bx-ink: #000000;
  --bx-muted: rgba(56, 56, 56, 0.8);
  --bx-line: rgba(0, 0, 0, 0.16);
  --bx-soft-line: rgba(0, 0, 0, 0.08);
  --bx-gold: #ffbd24;
  --bx-gold-soft: #ffe9b5;
  --bx-dark: #121212;
  --bx-display: "Host Grotesk", "DM Sans", system-ui, sans-serif;
  --bx-body: "DM Sans", system-ui, sans-serif;
  --bx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bx-wrap: min(1120px, calc(100% - 40px));
  --bx-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
  margin: 0;
  background: var(--bx-bg);
  color: var(--bx-ink);
  font-family: var(--bx-body);
  font-size: 16px;
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.bx-wrap { width: var(--bx-wrap); margin-inline: auto; }
.bx-section { padding-block: clamp(80px, 11vw, 140px); }

/* Type scale lifted from the reference: Host Grotesk 400, -3% tracking */
.bx-h1, .bx-h2, .bx-h3 {
  font-family: var(--bx-display);
  font-weight: 400;
  letter-spacing: -0.03em;
}
.bx-h1 { font-size: clamp(40px, 5.2vw, 64px); line-height: 1; }
.bx-h2 { font-size: clamp(32px, 3.4vw, 40px); line-height: 1.1; }
.bx-h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.bx-lede { color: var(--bx-muted); font-size: 16px; line-height: 1.3; }
.bx-small { color: var(--bx-muted); font-size: 14px; line-height: 1.3; }

/* "● Label" eyebrow */
.bx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--bx-muted);
  font-size: 14px;
}
.bx-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.bx-eyebrow--light { color: rgba(255, 255, 255, 0.78); }
.bx-eyebrow--plain::before { content: none; }
/* flex/grid intros already have a 16px gap; pull labels in so every label sits 12px above its heading */
.bx-split-intro > .bx-eyebrow,
.bx-faq-intro > .bx-eyebrow { margin-bottom: -4px; }

/* Buttons */
.bx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--bx-gold);
  color: #000;
  font: 500 16px/1 var(--bx-body);
  box-shadow: 0 0 0 0 rgba(255, 189, 36, 0.2);
  transition: box-shadow 0.35s var(--bx-ease), transform 0.35s var(--bx-ease), background-color 0.35s var(--bx-ease);
}
.bx-btn:hover { box-shadow: 0 0 0 6px rgba(255, 189, 36, 0.2); }
.bx-btn:active { transform: scale(0.98); }
.bx-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}
.bx-btn--ghost:hover { background: rgba(255, 255, 255, 0.16); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4); }

.bx-arrows { display: flex; gap: 10px; }
.bx-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--bx-gold);
  color: #000;
  cursor: pointer;
  transition: transform 0.35s var(--bx-ease), box-shadow 0.35s var(--bx-ease);
}
.bx-arrow:hover { box-shadow: 0 0 0 6px rgba(255, 189, 36, 0.2); }
.bx-arrow:active { transform: scale(0.94); }
.bx-arrow svg { width: 18px; height: 18px; }

/* Split header: title left, supporting copy right */
.bx-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  align-items: end;
  margin-bottom: 48px;
}
.bx-head .bx-lede { max-width: 440px; justify-self: end; }
.bx-head--center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.bx-head--center .bx-lede { justify-self: center; max-width: 520px; }

/* ============ HERO ============ */
.bx-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  background: #111;
  color: #fff;
  text-align: center;
}
.bx-hero-media, .bx-hero-media img, .bx-hero-shade, .bx-noise { position: absolute; inset: 0; }
.bx-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(1.08);
  transform: scale(1.08);
  animation: bx-settle 2.4s var(--bx-ease) forwards;
}
@keyframes bx-settle { to { transform: scale(1); } }
.bx-hero-shade {
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45) 75%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 55%);
}
.bx-noise {
  background-image: var(--bx-noise);
  opacity: 0.16;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.bx-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(720px, calc(100% - 40px));
  padding-top: 80px;
}
.bx-hero .bx-h1 { max-width: 640px; }
/* Always one line: 16px where it fits, otherwise scaled to the screen width
   (the line is ~30× its font size wide; 40px covers the page gutters). */
.bx-hero .bx-lede {
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: min(16px, calc((100vw - 40px) / 30));
  white-space: nowrap;
}
.bx-hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 8px; }

/* ============ METHOD BENTO ============ */
.bx-bento {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 232px 232px;
  gap: 16px;
}
.bx-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
}
.bx-tile--big { grid-row: span 2; }
.bx-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s var(--bx-ease);
}
.bx-tile:hover img { transform: scale(1.05); }
.bx-tile--photo { color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.bx-tile--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Deep enough that text stays readable over bright, busy photos */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.88) 100%);
}
.bx-tile--photo p { margin-top: 8px; color: rgba(255, 255, 255, 0.78); font-size: 14px; max-width: 420px; }
.bx-tile--gold {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  background: var(--bx-gold-soft);
  text-align: center;
}
.bx-tile--gold p { font-size: 14px; color: var(--bx-muted); max-width: 280px; }
.bx-tile--center { align-items: center; text-align: center; justify-content: center; }
.bx-tile--center p { margin-inline: auto; }
.bx-tile-icon { width: 30px; height: 30px; }
.bx-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.bx-inline-link span { transition: transform 0.35s var(--bx-ease); }
.bx-inline-link:hover span { transform: translateX(4px); }

/* ============ SERVICES (steps + swapping image) ============ */
.bx-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  align-items: center;
}
.bx-steps-media {
  position: relative;
  aspect-ratio: 1 / 0.72;
  overflow: hidden;
  border-radius: 16px;
  background: #ddd;
}
.bx-steps-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s var(--bx-ease), transform 1.2s var(--bx-ease);
}
.bx-steps-media img.is-active { opacity: 1; transform: scale(1); }
.bx-steps { display: grid; gap: 8px; }
.bx-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 4px 12px;
  width: 100%;
  padding: 14px 0 14px 18px;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.bx-step::before,
.bx-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--bx-line);
}
.bx-step::after {
  background: var(--bx-gold);
  transform: scaleY(0);
  transform-origin: top;
}
.bx-step.is-active::after { animation: bx-fill var(--step-ms, 6000ms) linear forwards; }
.bx-steps.is-paused .bx-step.is-active::after { animation: none; transform: scaleY(1); }
@keyframes bx-fill { to { transform: scaleY(1); } }
.bx-step svg { width: 20px; height: 20px; margin-top: 1px; }
.bx-step .bx-h3 { font-size: 20px; }
.bx-step-body {
  grid-column: 2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--bx-ease);
}
.bx-step-body > p { overflow: hidden; color: var(--bx-muted); font-size: 14px; max-width: 440px; }
.bx-step.is-active .bx-step-body { grid-template-rows: 1fr; }
.bx-step:not(.is-active) { color: rgba(0, 0, 0, 0.5); }
.bx-step:not(.is-active):hover { color: #000; }
.bx-steps-cta { margin-top: 24px; padding-left: 18px; }

/* ============ TEAM SUPPORT (split carousel) ============ */
.bx-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px 40px;
  align-items: stretch;
}
.bx-split-intro { display: flex; flex-direction: column; gap: 16px; }
.bx-split-intro .bx-lede { max-width: 380px; }
.bx-split-intro .bx-arrows { margin-top: auto; justify-content: flex-end; }
.bx-slide-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  min-height: 460px;
  padding: 16px;
  border-radius: 20px;
  background: var(--bx-card);
}
.bx-slide-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #222;
}
.bx-slide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bx-slide-text { display: flex; flex-direction: column; gap: 14px; padding: 12px 8px 8px 0; }
.bx-slide-text .bx-h3 { font-size: 24px; }
.bx-slide-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--bx-line);
}
.bx-slide-foot strong { font-family: var(--bx-display); font-weight: 400; font-size: 18px; letter-spacing: -0.02em; }
.bx-swap { transition: opacity 0.45s var(--bx-ease), transform 0.6s var(--bx-ease), filter 0.45s var(--bx-ease); }
.bx-swap.is-out { opacity: 0; transform: translateY(24px); filter: blur(6px); }

/* ============ PARTNERS ============ */
.bx-partners { padding-block: 0 clamp(80px, 10vw, 120px); text-align: center; }
/* Live-site fallback strip (styles.css); logo-carousel.js upgrades it to the depth carousel */
.logo-marquee {
  margin: clamp(26px, 4vw, 40px) -20px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  animation: logo-scroll 58s linear infinite;
}
.logo-item {
  display: flex;
  width: clamp(134px, 13vw, 190px);
  height: clamp(78px, 8vw, 112px);
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ MEMBER SUPPORT (testimonial-style cards) ============ */
.bx-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bx-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--bx-line);
  border-radius: 16px;
  background: var(--bx-card);
  transition: transform 0.5s var(--bx-ease), box-shadow 0.5s var(--bx-ease);
}
.bx-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06); }
.bx-card .bx-h3 { font-size: 22px; line-height: 1.25; }
.bx-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bx-line);
}
.bx-card-foot b { display: block; font-weight: 500; font-size: 15px; }
.bx-card--gold { border-color: transparent; background: var(--bx-gold-soft); }
.bx-card-icon { width: 26px; height: 26px; }

/* ============ HOURS (FAQ-style) ============ */
.bx-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  align-items: start;
}
.bx-faq-intro { display: grid; gap: 16px; justify-items: start; position: sticky; top: 110px; }
.bx-faq-intro .bx-lede { max-width: 400px; }
.bx-address { margin-top: 8px; font-size: 14px; color: var(--bx-muted); }
.bx-address b { display: block; color: #000; font-weight: 500; }
.bx-rows { display: grid; gap: 10px; }
.bx-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--bx-card);
  font-size: 15px;
  transition: background-color 0.35s var(--bx-ease);
}
.bx-row span:last-child { color: var(--bx-muted); white-space: nowrap; }
.bx-row.is-today { background: var(--bx-gold-soft); }
.bx-row.is-today span:first-child::after {
  content: "Today";
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--bx-gold);
  font-size: 12px;
  font-weight: 500;
}
.bx-row.is-today span:last-child { color: #000; }
.bx-row.is-closed span:last-child { color: rgba(0, 0, 0, 0.35); }

/* ============ CTA BANNER ============ */
.bx-banner {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.bx-banner > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.15) brightness(0.7);
}
.bx-banner .bx-noise { z-index: -1; }
.bx-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 60% 70% at center, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}
.bx-banner-content { display: grid; justify-items: center; gap: 14px; padding: 48px 24px; max-width: 560px; }
.bx-banner .bx-lede { color: rgba(255, 255, 255, 0.8); }

/* ============ FOOTER ============ */
.bx-footer {
  display: block;
  margin-top: clamp(64px, 8vw, 100px);
  padding: 56px 0 28px;
  background: #fff;
  color: #000;
  font-size: 14px;
}
.bx-footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, auto);
  gap: 40px 64px;
}
.bx-footer-brand { display: grid; gap: 14px; align-content: start; max-width: 340px; }
.bx-footer-brand strong { font-family: var(--bx-display); font-weight: 400; font-size: 20px; letter-spacing: -0.02em; }
.bx-footer-brand p { color: var(--bx-muted); }
.bx-footer-col { display: grid; gap: 12px; align-content: start; }
.bx-footer-col h4 { margin: 0 0 4px; font-weight: 500; font-size: 15px; }
.bx-footer-col a { color: var(--bx-muted); transition: color 0.25s; }
.bx-footer-col a:hover { color: #000; }
.bx-footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--bx-line);
  color: var(--bx-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.bx-powered {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bx-muted);
  opacity: 0.7;
  transition: opacity 0.25s;
}
.bx-powered:hover { opacity: 1; }
/* The logo asset carries the dot above the wordmark, so centring the box leaves
   the wordmark low; the nudge is a share of the logo's own height, so the wordmark
   stays level with the "Powered by" text at every size. */
.bx-powered img { width: auto; height: 25px; display: block; transform: translateY(-16%); }

/* ============ MOTION ============ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--bx-ease), transform 0.9s var(--bx-ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.bx-split-unit {
  display: inline-block;
  opacity: 0;
  filter: blur(var(--b, 4px));
  transform: translateY(var(--y, 12px));
  transition: opacity 0.7s var(--bx-ease), filter 0.7s var(--bx-ease), transform 0.7s var(--bx-ease);
  transition-delay: var(--d, 0ms);
}
.is-in .bx-split-unit, .is-in.bx-split-unit { opacity: 1; filter: blur(0); transform: none; }
.bx-word { display: inline-block; white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .bx-split-unit { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .bx-hero-media img, .logo-track { animation: none; }
  .bx-step.is-active::after { animation: none; transform: scaleY(1); }
}

/* ============ NAV — glass pill (desktop) / Blix menu (mobile) ============ */
.site-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 50;
  translate: -50% 0;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(760px, calc(100vw - 40px));
  height: 60px;
  padding: 0 8px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  backdrop-filter: blur(18px) saturate(1.4);
  transition:
    width 0.6s var(--bx-ease),
    background-color 0.45s var(--bx-ease),
    color 0.45s var(--bx-ease),
    box-shadow 0.45s var(--bx-ease),
    border-color 0.45s var(--bx-ease);
}

.site-nav.is-light .nav-pill {
  width: min(620px, calc(100vw - 40px));
  border-color: rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.82);
  color: #000;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 900 15px/1 var(--font-utility);
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: filter 0.4s var(--bx-ease);
}

.site-nav.is-light .brand img,
.site-nav.is-open .brand img {
  filter: invert(1);
}

.nav-links {
  position: relative;
  display: flex;
  margin: 0 auto;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  z-index: 1;
  padding: 10px 16px;
  opacity: 0.75;
  transition: opacity 0.3s;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

/* Soft highlight that slides to the hovered link and rests on the current page */
.nav-glider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  transition:
    transform 0.5s var(--bx-ease),
    width 0.5s var(--bx-ease),
    background-color 0.45s var(--bx-ease);
}

.site-nav.is-light .nav-glider {
  background: var(--bx-gold-soft);
}

.nav-book {
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 15px;
  white-space: nowrap;
}

.nav-burger,
.mobile-menu {
  display: none;
}

@media (max-width: 860px) {
  .site-nav {
    top: 0;
    right: 0;
    left: 0;
    translate: none;
  }

  .nav-pill,
  .site-nav.is-light .nav-pill {
    position: relative;
    z-index: 2;
    justify-content: space-between;
    width: 100%;
    height: 64px;
    padding: 0 20px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav.is-light .nav-pill {
    background: rgba(250, 250, 250, 0.9);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open .nav-pill {
    background: transparent;
    color: #000;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-links,
  .nav-book {
    display: none;
  }

  /* Blix hamburger: three 24×2 rounded lines that cross into an X */
  .nav-burger {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
  }

  .nav-burger i {
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    border-radius: 7px;
    background: currentColor;
    transition:
      top 0.45s var(--bx-ease),
      transform 0.45s var(--bx-ease),
      opacity 0.3s var(--bx-ease);
  }

  .nav-burger i:nth-child(1) { top: 11px; }
  .nav-burger i:nth-child(2) { top: 19px; }
  .nav-burger i:nth-child(3) { top: 27px; }
  .site-nav.is-open .nav-burger i:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .site-nav.is-open .nav-burger i:nth-child(2) { opacity: 0; }
  .site-nav.is-open .nav-burger i:nth-child(3) { top: 19px; transform: rotate(-45deg); }

  /* Full-screen white panel */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 96px 20px 32px;
    background: #fff;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--bx-ease), visibility 0s 0.4s;
  }

  .site-nav.is-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s var(--bx-ease);
  }

  .mobile-menu a:not(.bx-btn) {
    font: 400 32px/1.35 var(--bx-display);
    letter-spacing: -0.03em;
  }

  .mobile-menu a[aria-current="page"] {
    color: var(--bx-gold);
  }

  .mobile-menu .bx-btn {
    width: 100%;
    height: 52px;
    margin-top: auto;
  }

  /* Blix: each item drops 40px while fading in, staggered after the panel opens */
  .mobile-menu > * {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s var(--bx-ease), transform 0.7s var(--bx-ease);
  }

  .site-nav.is-open .mobile-menu > * { opacity: 1; transform: none; }
  .site-nav.is-open .mobile-menu > :nth-child(1) { transition-delay: 0.2s; }
  .site-nav.is-open .mobile-menu > :nth-child(2) { transition-delay: 0.32s; }
  .site-nav.is-open .mobile-menu > :nth-child(3) { transition-delay: 0.44s; }
  .site-nav.is-open .mobile-menu > :nth-child(4) { transition-delay: 0.56s; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-pill,
  .nav-glider,
  .brand img,
  .nav-burger i,
  .mobile-menu,
  .mobile-menu > * {
    transition: none !important;
  }
}

/* ============ ABOUT PAGE ============ */
.bx-about-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 40%, #2a2a2a, #0b0b0b 65%);
  color: #fff;
  isolation: isolate;
}
.bx-about-hero .bx-noise { z-index: -1; }
.bx-about-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px 64px;
  align-items: center;
  min-height: min(92svh, 860px);
  padding-block: 140px 80px;
}
.bx-about-hero-copy { display: grid; gap: 20px; justify-items: start; }
.bx-about-hero-copy .bx-eyebrow { margin-bottom: -8px; }
.bx-about-hero-copy .bx-h1 { font-size: clamp(40px, 4.6vw, 60px); max-width: 560px; }
.bx-about-hero-copy .bx-lede { max-width: 480px; color: rgba(255, 255, 255, 0.78); }
.bx-about-hero-copy .bx-hero-actions { justify-content: flex-start; }
.bx-portrait {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  background: #1a1a1a;
}
.bx-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.06);
  transition: transform 1.4s var(--bx-ease);
}
.bx-portrait.is-in img { transform: scale(1); }
.bx-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
.bx-actions-left { justify-content: flex-start; margin-top: 8px; }
.bx-btn--outline { background: transparent; box-shadow: inset 0 0 0 1px var(--bx-line); }
.bx-btn--outline:hover { background: #fff; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3); }
.bx-card:not(:has(.bx-lede)) .bx-h3 { font-size: 26px; }

.bx-map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 16px;
  background: #e8e8e8;
}
.bx-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.bx-map-card {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-style: normal;
  font-size: 14px;
  color: var(--bx-muted);
}
.bx-map-card b { display: block; color: #000; font-weight: 500; }
.bx-map-card svg {
  flex: none;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 10px;
  background: var(--bx-gold);
  color: #000;
}

@media (max-width: 960px) {
  .bx-about-hero-grid { grid-template-columns: 1fr; padding-block: 120px 64px; min-height: 0; }
  .bx-portrait { max-width: 520px; width: 100%; }
}
@media (max-width: 640px) {
  .bx-cards > * { min-height: 0; }
  .bx-card .bx-card-foot { margin-top: 28px; }
  .bx-map { min-height: 340px; }
  .bx-about-hero-copy .bx-hero-actions { max-width: none; }
}

/* ============ KEEP IN TOUCH (same as the previous About page) ============ */
/* Approved text-link social row: white Home and black About. */
.about-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  color: var(--ink);
  padding: 30px max(40px, calc((100vw - var(--max)) / 2));
}

.about-social-copy h2 {
  max-width: none;
  margin: 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.5px;
  text-transform: none;
  scroll-margin-top: 112px;
}

.about-social-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.about-social-links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  scroll-margin-block: 140px;
}

.about-social-links a::after {
  content: "";
  position: absolute;
  left: 29px;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--gold);
}

.about-social-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.about-social-links a:nth-child(n + 2) svg { fill: currentColor; stroke: none; }
.about-social-links a:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
.about-social-links a:focus-visible::after { transform: scaleX(1); }

.social-dark { background: var(--ink); color: var(--paper); }
.social-dark .about-social-links a:focus-visible { outline-color: var(--gold); }

@media (hover: hover) {
  .about-social-links a:hover::after { transform: scaleX(1); }
}

@media (max-width: 720px) {
  .about-social-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 24px; }
  .about-social-links { width: 100%; gap: 18px; }
  .about-social-links a { font-size: 11px; gap: 7px; }
  .about-social-links svg { width: 18px; height: 18px; }
  .about-social-links a::after { left: 25px; }
}

@media (max-width: 380px) {
  .about-social-row { padding: 20px; }
  .about-social-links { justify-content: space-between; gap: 6px; }
  .about-social-links a { gap: 5px; }
  .about-social-links svg { width: 16px; height: 16px; }
  .about-social-links a::after { left: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-social-links a::after { transition: none; }
}

.about-social-row { font-family: var(--font-body); }

/* ============ CONTACT PAGE ============ */
.bx-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px 64px;
  align-items: center;
  padding-block: 150px 96px;
}
.bx-contact-intro { display: grid; gap: 20px; justify-items: start; }
.bx-contact-intro .bx-eyebrow { margin-bottom: -8px; }
.bx-contact-intro .bx-h1 { font-size: clamp(40px, 4.4vw, 56px); max-width: 520px; }
.bx-contact-intro .bx-lede { max-width: 460px; color: rgba(255, 255, 255, 0.78); }
.bx-quick {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.bx-quick > a, .bx-quick > span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 10px;
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  transition: background-color 0.35s var(--bx-ease);
}
.bx-quick > a:hover { background: rgba(255, 255, 255, 0.06); }
.bx-quick svg {
  flex: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 10px;
  background: rgba(255, 189, 36, 0.14);
  color: var(--bx-gold);
}
.bx-quick small { display: block; color: rgba(255, 255, 255, 0.55); font-size: 12px; }

.bx-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  color: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.bx-field { display: grid; gap: 8px; font-size: 14px; font-weight: 500; }
.bx-field--full { grid-column: 1 / -1; }
.bx-field input,
.bx-field select,
.bx-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: rgba(187, 187, 187, 0.18);
  color: #000;
  font: 400 15px/1.3 var(--bx-body);
  transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.bx-field textarea { resize: vertical; min-height: 120px; }
.bx-field ::placeholder { color: rgba(0, 0, 0, 0.4); }
.bx-field select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23666' stroke-width='1.6'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.bx-field select:invalid { color: rgba(0, 0, 0, 0.4); }
.bx-field input:focus,
.bx-field select:focus,
.bx-field textarea:focus {
  outline: none;
  border-color: var(--bx-gold);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 189, 36, 0.2);
}
.bx-form .bx-btn { width: 100%; height: 48px; border: 0; cursor: pointer; }
.bx-form .bx-btn:disabled { opacity: 0.6; cursor: progress; }
.bx-form .form-botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; padding: 0; border: 0; }
.bx-form .form-status { margin: 0; padding: 12px 14px; border-radius: 10px; font-size: 14px; background: rgba(187, 187, 187, 0.18); }
.bx-form .form-status[hidden] { display: none; }
.bx-form .form-status.is-success { background: var(--bx-gold-soft); color: #000; }
.bx-form .form-status.is-error { background: #fde8e6; color: #9b2c22; }
.bx-form .form-note { margin: 0; color: var(--bx-muted); font-size: 12px; line-height: 1.4; }

@media (max-width: 960px) {
  .bx-contact-grid { grid-template-columns: 1fr; padding-block: 120px 64px; }
}
@media (max-width: 640px) {
  .bx-form { grid-template-columns: 1fr; padding: 18px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .bx-head, .bx-steps-grid, .bx-split, .bx-faq { grid-template-columns: 1fr; }
  .bx-head .bx-lede { justify-self: start; }
  .bx-faq-intro { position: static; }
  .bx-cards { grid-template-columns: 1fr 1fr; }
  .bx-cards > :first-child { grid-column: span 2; min-height: 0; }
  .bx-split-intro .bx-arrows { justify-content: flex-start; margin-top: 8px; }
  .bx-footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .bx-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .bx-bento { grid-template-columns: 1fr; grid-template-rows: 380px auto 260px; }
  .bx-tile--big { grid-row: auto; }
  .bx-slide-card { grid-template-columns: 1fr; }
  .bx-slide-img { aspect-ratio: 4 / 3; }
  .bx-cards { grid-template-columns: 1fr; }
  .bx-cards > :first-child { grid-column: auto; }
  .bx-footer-top { grid-template-columns: 1fr 1fr; }
  .bx-hero-actions .bx-btn { width: 100%; }
  .bx-hero-actions { width: 100%; max-width: 320px; }
}
