/* ============================================================
   COMFORT FITT — boutique 24/7 gym, Comfort, Texas
   One-page: Hero → About → Features → Memberships → Location → Contact
   Royal blue · gold · ink
   ============================================================ */

:root {
  --ink:           #06081A;
  --ink-2:         #0A0F2E;
  --ink-3:         #0F1842;
  --ink-card:      #0c1235;
  --royal:         #1E3FB8;
  --royal-light:   #4569FF;
  --gold:          #D4AF37;
  --gold-light:    #F2D27A;
  --gold-deep:     #9C7A1F;
  --silver-soft:   #8E96A4;
  --paper:         #F4F1E8;
  --paper-dim:     rgba(244,241,232,.78);
  --paper-mute:    rgba(244,241,232,.5);
  --line:          rgba(244,241,232,.14);
  --line-strong:   rgba(244,241,232,.22);
  --line-gold:     rgba(212,175,55,.28);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease:     cubic-bezier(.2,.8,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --gut: clamp(20px, 5vw, 80px);
  --max: 1240px;
  --nav-h: 72px;

  --radius:    14px;
  --radius-lg: 20px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--nav-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p, blockquote { margin: 0; }
::selection { background: var(--gold); color: var(--ink); }

body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 700px at 12% 6%, rgba(69,105,255,.15), transparent 60%),
    radial-gradient(800px 600px at 88% 92%, rgba(212,175,55,.06), transparent 60%),
    linear-gradient(180deg, #06081A 0%, #04051A 50%, #06081A 100%);
  z-index: -2;
  pointer-events: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 56px);
  height: var(--nav-h);
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,8,26,.82);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo {
  width: clamp(110px, 12vw, 150px);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(69,105,255,.35));
  transition: transform .3s var(--ease);
}
.nav__brand:hover .nav__logo { transform: scale(1.04); }

.nav__links {
  display: none;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--paper-dim);
}
.nav__links a { transition: color .25s; position: relative; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease), left .3s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; left: 0; }
.nav__links a.is-active { color: var(--gold-light); }
.nav__links a.is-active::after { width: 100%; left: 0; }
@media (min-width: 880px) { .nav__links { display: flex; } }

.nav__cta {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--ink); transform: translateY(-1px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .3s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn span[aria-hidden]:not(.form__submit-loading):not(.form__submit-label) {
  transition: transform .25s var(--ease);
  display: inline-block;
}
.btn:hover span[aria-hidden]:not(.form__submit-loading):not(.form__submit-label) {
  transform: translateX(4px);
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--ink);
  box-shadow: 0 10px 30px -12px rgba(212,175,55,.5), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px -10px rgba(212,175,55,.7), inset 0 1px 0 rgba(255,255,255,.55);
}
.btn--gold-outline {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--gold-outline:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(255,255,255,.02);
}
.btn--ghost:hover { border-color: var(--paper); background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn--ghost-light {
  border-color: rgba(244,241,232,.55);
  color: var(--paper);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { border-color: var(--paper); background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: rgba(6,8,26,.95);
  box-shadow: 0 8px 24px -10px rgba(6,8,26,.55);
}
.btn--ink:hover {
  transform: translateY(-2px);
  background: var(--ink-3);
  color: var(--gold-light);
}
.btn--sm {
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* ============================================================
   GENERIC SECTION SHELL
   ============================================================ */
section { position: relative; padding: clamp(80px, 12vh, 140px) var(--gut); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.2px;
  font-size: clamp(38px, 6vw, 84px);
  margin: 0 0 22px;
  color: var(--paper);
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.section-lede {
  max-width: 660px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
  color: var(--paper-dim);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   HERO — fixed-height, vertically centred, stats anchored bottom
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  max-height: 920px;
  display: grid;
  grid-template-rows: 1fr auto;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -3; overflow: hidden; }
.hero__bg img,
.hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg img { animation: heroBgZoom 18s var(--ease-out) forwards; }
.hero__video {
  display: block;
  background: var(--ink);
  pointer-events: none;
}
@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(30,63,184,.55) 0%, rgba(6,8,26,.85) 65%, rgba(6,8,26,.96) 100%),
    linear-gradient(180deg, rgba(6,8,26,.6) 0%, rgba(15,24,66,.6) 50%, rgba(6,8,26,.96) 100%);
}
.hero__noise {
  position: absolute; inset: 0;
  z-index: -1;
  opacity: .14;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.6' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.hero__center {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--nav-h) var(--gut) 24px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 26px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  border: 1px solid var(--line-gold);
  background: rgba(6,8,26,.4);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -2px;
  font-size: clamp(44px, 7.5vw, 110px);
  margin: 0 0 20px;
}
.hero__title-script {
  display: block;
  margin-top: 8px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  font-size: clamp(30px, 5vw, 76px);
  letter-spacing: -1px;
}

.hero__sub {
  max-width: 660px;
  margin: 0 0 32px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  color: var(--paper-dim);
  font-weight: 300;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}

.hero__strip {
  margin: 0 auto;
  width: calc(100% - var(--gut) * 2);
  max-width: 920px;
  padding: 22px clamp(12px, 3vw, 28px);
  margin-bottom: clamp(18px, 4vh, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6,8,26,.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}
@media (min-width: 720px) {
  .hero__strip { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .hero__strip li + li { border-left: 1px solid var(--line); }
}
.hero__strip li {
  font-size: 11.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 600;
  padding: 0 14px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero__strip b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -1px;
  color: var(--gold-light);
  text-transform: none;
  line-height: 1;
}

/* hero load-in animation */
[data-hero] {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s var(--ease-out) forwards;
}
[data-hero="1"] { animation-delay: 0.15s; }
[data-hero="2"] { animation-delay: 0.30s; }
[data-hero="3"] { animation-delay: 0.50s; }
[data-hero="4"] { animation-delay: 0.65s; }
[data-hero="5"] { animation-delay: 0.85s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT — full-bleed background + centred copy + stats
   ============================================================ */
.about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__bg { position: absolute; inset: 0; z-index: -2; }
.about__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(1px);
}
.about__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(30,63,184,.32) 0%, rgba(6,8,26,.85) 65%, rgba(6,8,26,.97) 100%),
    linear-gradient(180deg, rgba(6,8,26,.85) 0%, rgba(6,8,26,.78) 50%, rgba(6,8,26,.95) 100%);
}

.about__shell {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

.about__title { margin: 0 0 36px; }

.about__copy {
  max-width: 720px;
  margin: 0 0 50px;
}
.about__copy p {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.8;
  color: var(--paper-dim);
  font-weight: 300;
}
.about__copy p:last-child { margin-bottom: 0; }

.about__quote {
  max-width: 760px;
  margin: 0 auto 60px;
  padding: 28px 32px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  text-align: left;
  background: rgba(6,8,26,.45);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.about__quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 700;
}

/* stats band */
.stats {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px clamp(20px, 4vw, 36px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15,24,66,.6), rgba(6,8,26,.7));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: left;
}
@media (min-width: 720px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stats li + li { border-left: 1px solid var(--line); padding-left: 28px; }
  .stats li:first-child { padding-left: 0; }
}
.stats li { padding: 0 8px; }
.stats b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -1.5px;
  color: var(--gold-light);
  line-height: 1;
  margin: 0 0 10px;
}
.stats b small {
  font-family: var(--sans);
  font-size: .32em;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--paper-mute);
  margin-left: 6px;
  vertical-align: 0.45em;
}
.stats span {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 600;
  display: block;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section { background: linear-gradient(180deg, transparent 0%, rgba(15,24,66,.18) 100%); }
.features__head {
  max-width: var(--max);
  margin: 0 auto 50px;
}

.features {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .features { grid-template-columns: repeat(4, 1fr); } }

.feature {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30,63,184,.18) 0%, rgba(12,18,53,.7) 100%);
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
  min-height: 240px;
  overflow: hidden;
  isolation: isolate;
}
.feature__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  overflow: hidden;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.feature__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature__bg::after {
  /* semi-transparent royal-blue veil so the copy stays legible over the video */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,24,66,.55) 0%, rgba(6,8,26,.78) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(30,63,184,.35), transparent 70%);
  pointer-events: none;
}
.feature__content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; }
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% 0%, rgba(212,175,55,.16), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.feature:hover {
  border-color: var(--line-gold);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -22px rgba(69,105,255,.55);
}
.feature:hover::before { opacity: 1; }
.feature:hover .feature__bg { opacity: 1; }
.feature:hover .feature__icon {
  border-color: var(--gold);
  background: rgba(212,175,55,.25);
  transform: scale(1.06);
}
.feature__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,175,55,.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  margin: 0 0 18px;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.feature h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -.3px;
  color: var(--paper);
}
.feature p {
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   MEMBERSHIPS / CARDS
   ============================================================ */
.join {
  background: linear-gradient(180deg, rgba(15,24,66,.3) 0%, rgba(6,8,26,.4) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.join__head { max-width: var(--max); margin: 0 auto 50px; }

.cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 720px)  { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .cards { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  text-align: left;
  padding: 32px 28px 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-card) 0%, rgba(6,8,26,.92) 100%);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
  height: 100%;
  min-height: 420px;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 60% at 50% 0%, rgba(212,175,55,.15), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: 0 30px 60px -30px rgba(69,105,255,.5);
}
.card:hover::before { opacity: 1; }

.card--feature {
  background: linear-gradient(180deg, rgba(30,63,184,.45) 0%, rgba(12,18,53,.95) 100%);
  border-color: var(--line-gold);
  padding-top: 50px;
  box-shadow: 0 0 0 1px rgba(212,175,55,.15);
}
.card__pin {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800;
  z-index: 2;
}

.card__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.card__tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 700;
  padding-top: 6px;
}
.card__price {
  font-family: var(--serif);
  text-align: right;
  flex-shrink: 0;
}
.card__price b {
  display: block;
  font-weight: 500;
  font-size: 32px;
  color: var(--gold-light);
  line-height: 1;
}
.card__price i {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--paper-mute);
}

.card__sub-price {
  margin: -8px 0 14px;
  font-size: 12.5px;
  letter-spacing: .3px;
  color: var(--paper-mute);
  font-weight: 400;
  line-height: 1.45;
}
.card__sub-price strong {
  color: var(--gold-light);
  font-weight: 600;
}
.card__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.3px;
  color: var(--paper);
}
.card__desc {
  margin: 0 0 16px;
  color: var(--paper-dim);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  min-height: 4.2em;
}
.card__list {
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--paper-dim);
  font-weight: 300;
  line-height: 1.55;
}
.card__list li strong {
  color: var(--paper);
  font-weight: 600;
}
.card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--gold);
}

.card__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.card__actions .btn { width: 100%; flex: none; min-width: 0; }

/* card-as-button: whole card is the click target for the modal */
.card[role="button"] { cursor: pointer; }
.card[role="button"]:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.card__hint {
  display: block;
  margin: 12px auto 0;
  font-size: 10.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--paper-mute);
  text-align: center;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.card[role="button"]:hover .card__hint { opacity: 1; color: var(--gold-light); }

/* update billing strip */
.billing {
  max-width: var(--max);
  margin: 60px auto 0;
  padding: 36px 40px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 60px -30px rgba(0,0,0,.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.billing:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
}
.billing__copy { max-width: 560px; }
.billing__eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--silver-soft);
  font-weight: 700;
  margin: 0 0 8px;
}
.billing h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -.3px;
  color: var(--ink);
}
.billing p { margin: 0; color: rgba(6,8,26,.72); font-weight: 300; font-size: 16px; }

/* ============================================================
   LOCATION
   ============================================================ */
.location__head { max-width: var(--max); margin: 0 auto 50px; }

.location__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .location__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 32px; align-items: stretch; }
}

.location__card {
  padding: 36px;
  background: linear-gradient(180deg, var(--ink-card) 0%, rgba(6,8,26,.9) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.location__card:hover {
  border-color: var(--line-gold);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -30px rgba(69,105,255,.4);
}
.location__label {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 700;
  margin: 0 0 8px;
}
.location__addr {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 24px;
  color: var(--paper);
}
.location__addr--muted { color: var(--paper-mute); font-style: italic; }
.location__ctas {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
}
.location__ctas .btn {
  flex: 1 1 200px;
  min-width: 0;
}

.location__map {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--ink-card);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
@media (min-width: 880px) { .location__map { height: 100%; min-height: 460px; } }
.location__map:hover {
  border-color: var(--line-gold);
  box-shadow: 0 24px 60px -30px rgba(69,105,255,.4);
}
.location__map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: invert(.9) hue-rotate(190deg) saturate(.6) brightness(.95) contrast(1.1);
}

/* ============================================================
   CONTACT + FAQ
   ============================================================ */
.contact { border-top: 1px solid var(--line); }
.contact__head { max-width: var(--max); margin: 0 auto 50px; }
.contact__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}

.faq { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  transition: padding .25s var(--ease);
}
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -.2px;
  color: var(--paper);
  transition: color .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--gold-light); }
.faq__item[open] { padding-bottom: 22px; }
.faq__item p {
  margin: 14px 0 6px;
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 56ch;
  animation: faqIn .35s var(--ease-out);
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* form */
.form {
  padding: 32px 30px;
  background: linear-gradient(180deg, var(--ink-card) 0%, rgba(6,8,26,.9) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease);
}
.form:focus-within { border-color: var(--line-gold); }
.form__eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 8px;
}
.form__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.3px;
  margin: 0 0 24px;
  color: var(--paper);
}

.field {
  display: flex; flex-direction: column;
  gap: 8px;
  margin: 0 0 18px;
}
.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.field__label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  color: var(--paper);
  background: rgba(6,8,26,.6);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
  resize: vertical;
  font-family: inherit;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(6,8,26,.8);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--paper-mute); }

.form__submit {
  align-self: flex-start;
  margin-top: 6px;
}
.form__submit-loading { display: none; }
.form.is-loading .form__submit-label { display: none; }
.form.is-loading .form__submit-loading { display: inline; }
.form__submit:disabled { opacity: .7; cursor: progress; }

.form__status {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--paper-dim);
  min-height: 1.55em;
}
.form__status.is-success { color: var(--gold-light); }
.form__status.is-error { color: #ff8a8a; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  position: relative;
  padding: 70px var(--gut) 24px;
  border-top: 1px solid var(--line);
  background: rgba(6,8,26,.65);
}
.foot__row {
  max-width: var(--max);
  margin: 0 auto 32px;
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
  padding-bottom: 36px;
}
@media (min-width: 720px) {
  .foot__row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.foot__col p { margin: 0 0 6px; color: var(--paper-dim); font-size: 15px; line-height: 1.7; font-weight: 300; }
.foot__col a { color: var(--paper); transition: color .25s; }
.foot__col a:hover { color: var(--gold-light); }
.foot__eyebrow {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--paper-mute);
  font-weight: 700;
  margin: 0 0 10px;
}
.foot__logo {
  width: 160px;
  height: auto;
  margin: 0 0 14px;
  filter: drop-shadow(0 0 14px rgba(69,105,255,.3));
}
.foot__tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 15px;
}
.foot__base {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  letter-spacing: .5px;
  color: var(--paper-mute);
  flex-wrap: wrap; gap: 12px;
}
.foot__base a:hover { color: var(--gold-light); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed; inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.modal[aria-hidden="false"] { visibility: visible; pointer-events: all; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(4,5,18,.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.modal[aria-hidden="false"] .modal__scrim { opacity: 1; }

.modal__panel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.96);
  width: min(94vw, 640px);
  max-height: min(92vh, 760px);
  overflow-y: auto;
  padding: 32px 36px 24px;
  background: linear-gradient(180deg, #0F1842 0%, #06081A 100%);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.modal[aria-hidden="false"] .modal__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--paper-dim);
  transition: color .25s, border-color .25s, transform .25s;
}
.modal__close:hover { color: var(--paper); border-color: var(--paper); transform: rotate(90deg); }

.modal__head { margin-bottom: 16px; }
.modal__eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin: 0 0 10px;
}
.modal__title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.3px;
  color: var(--paper);
  line-height: 1.05;
}
.modal__price {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold-light);
}
.modal__price b { font-weight: 500; }
.modal__price i { font-style: normal; font-size: 13px; color: var(--paper-mute); margin-left: 6px; }

.modal__body { font-size: 15px; line-height: 1.55; color: var(--paper-dim); font-weight: 300; }
.modal__body p { margin: 0 0 10px; }
.modal__list {
  margin: 12px 0;
  display: grid; gap: 6px;
}
.modal__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.4;
}
.modal__list li strong { color: var(--paper); font-weight: 600; }
.modal__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.modal__small {
  font-size: 12.5px;
  color: var(--paper-mute);
  font-style: italic;
  margin-top: 8px;
}
.modal__foot {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   MINDBODY HEALCODE — hidden shadow widgets
   The visible Purchase access buttons forward clicks to these.
   Kept in the layout (offscreen) so MindBody's checkout treats the
   programmatic click as a real user gesture.
   ============================================================ */
.hc-shadow {
  position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

/* ============================================================
   TILT (magnetic 3D hover, JS-driven)
   ============================================================ */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ============================================================
   SCROLL REVEAL — used across non-hero sections
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Word-by-word reveal: opted into via data-reveal-words on the same
   element. Each .word fades + slides up with a 35ms stagger driven by
   the --w-i custom prop the JS sets on each word span. */
[data-reveal-words] {
  /* parent fades immediately so the word stagger reads on top */
  transition-duration: 0s;
}
[data-reveal-words] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   .7s var(--ease-out),
    transform .7s var(--ease-out);
  transition-delay: 0s;
}
[data-reveal-words].is-revealed {
  opacity: 1;
  transform: none;
}
[data-reveal-words].is-revealed .word {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--w-i, 0) * 35ms);
}
.cards > [data-reveal]:nth-child(2) { transition-delay: .08s; }
.cards > [data-reveal]:nth-child(3) { transition-delay: .16s; }
.cards > [data-reveal]:nth-child(4) { transition-delay: .24s; }
.features > [data-reveal]:nth-child(2) { transition-delay: .08s; }
.features > [data-reveal]:nth-child(3) { transition-delay: .16s; }
.features > [data-reveal]:nth-child(4) { transition-delay: .24s; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-hero] { opacity: 1 !important; transform: none !important; }
}
