/* src/index.css */
/* ── NSCULPT5 Global Styles ── */
:root {
  /* Theme: 60% cream / 25% deep green / 10% sage / 5% gold */
  --bg:        #FAF6EC;
  --bg-2:      #F3ECDB;
  --bg-3:      #EAE1C7;
  --ivory:     #1E3D2B;
  --ivory-dim: #4C6B54;
  --sage:      #8FA888;
  --sage-dim:  #71906C;
  --gold:      #C9A96E;
  --gold-dim:  #A8844E;
  --line:      rgba(30,61,43,0.10);
  --line-gold: rgba(201,169,110,0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.05rem; line-height: 1.75; color: var(--ivory-dim); }
.body-sm { font-size: 0.875rem; line-height: 1.65; color: var(--ivory-dim); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: clamp(80px, 12vw, 140px) 0; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--gold);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-primary:hover { background: var(--gold-dim); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 33px;
  background: transparent;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line-gold);
  border-radius: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }

.divider { width: 48px; height: 1px; background: var(--gold); margin: 24px 0; }
.divider-center { margin: 24px auto; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-muted { color: var(--ivory-dim); }
.italic { font-style: italic; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


/* src/components/Footer.module.css */
.footer_23f767 { background: #17301F; border-top: 1px solid rgba(250,246,236,0.08); }

.top_23f767 { padding: clamp(60px, 8vw, 100px) 0; }

.grid_23f767 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 60px;
}

.brand_23f767 {}
.logoRow_23f767 { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.name_23f767 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
}
.name_23f767 span { color: var(--gold); }
.tagline_23f767 { font-size: 0.75rem; color: rgba(250,246,236,0.6); letter-spacing: 0.06em; margin-top: 2px; }

.bio_23f767 { font-size: 0.875rem; color: rgba(250,246,236,0.6); line-height: 1.7; max-width: 320px; margin-bottom: 24px; }

.socials_23f767 { display: flex; gap: 12px; }
.social_23f767 {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,236,0.6);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.social_23f767:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.1); }

.col_23f767 { display: flex; flex-direction: column; gap: 10px; }

.flink_23f767 {
  font-size: 0.875rem;
  color: rgba(250,246,236,0.6);
  transition: color 0.2s ease;
  line-height: 1.6;
}
.flink_23f767:hover { color: var(--gold); }

.contact_23f767 { display: flex; flex-direction: column; gap: 2px; margin-bottom: 6px; }
.contactLabel_23f767 { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.bottom_23f767 {
  border-top: 1px solid rgba(250,246,236,0.08);
  padding: 20px 0;
}
.bottomInner_23f767 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250,246,236,0.45);
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .grid_23f767 { grid-template-columns: 1fr 1fr; }
  .brand_23f767 { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .grid_23f767 { grid-template-columns: 1fr; gap: 40px; }
  .bottomInner_23f767 { flex-direction: column; text-align: center; }
}


/* src/components/Navbar.module.css */
.nav_d08421 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease;
}
.scrolled_d08421 {
  background: rgba(250,246,236,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.inner_d08421 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo_d08421 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logoText_d08421 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
}
.logoNum_d08421 { color: var(--gold); }

.links_d08421 {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.link_d08421 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.2s ease;
  position: relative;
}
.link_d08421::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.link_d08421:hover { color: var(--ivory); }
.link_d08421:hover::after { right: 0; }
.active_d08421 { color: var(--gold) !important; }
.active_d08421::after { right: 0 !important; }

.cta_d08421 { margin-left: 12px; padding: 10px 24px !important; font-size: 0.72rem !important; }

.burger_d08421 {
  display: none;
  color: var(--ivory);
  margin-left: auto;
}

/* Mobile */
.mobile_d08421 {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding-top: 80px;
}
.mobileOpen_d08421 { opacity: 1; pointer-events: all; }
.mobileLinks_d08421 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 20px;
}
.mLink_d08421 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory-dim);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.mLink_d08421:hover, .mActive_d08421 { color: var(--gold); }
.mCta_d08421 { margin-top: 16px; }

@media (max-width: 900px) {
  .links_d08421, .cta_d08421 { display: none; }
  .burger_d08421 { display: block; }
  .mobile_d08421 { display: block; }
}


/* src/pages/About.module.css */
.hero_4fc8bb {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.heroDecor_4fc8bb { position: absolute; right: -100px; top: -100px; width: 600px; height: 600px; }
.heroInner_4fc8bb { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.heroRight_4fc8bb { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.heroPhotoFrame_4fc8bb {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 60px -20px rgba(30,61,43,0.35);
}
.heroPhoto_4fc8bb { width: 100%; height: 100%; object-fit: cover; display: block; }

.introQuote_4fc8bb {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px,8vw,100px) 0;
}

.storyGrid_4fc8bb { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.storyBlock_4fc8bb {}

.honestSection_4fc8bb { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(60px,8vw,100px) 0; }
.honestGrid_4fc8bb { display: grid; grid-template-columns: 0.85fr 1fr; gap: 60px; align-items: center; }
.honestPhotoFrame_4fc8bb {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 60px -20px rgba(30,61,43,0.35);
}
.honestPhoto_4fc8bb { width: 100%; height: 100%; object-fit: cover; display: block; }

.momentFrame_4fc8bb {
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 60px -20px rgba(30,61,43,0.35);
}
.momentPhoto_4fc8bb { width: 100%; height: 100%; object-fit: cover; display: block; }

.timelineSection_4fc8bb { background: var(--bg-2); padding: clamp(80px,12vw,140px) 0; }
.timelineHead_4fc8bb { margin-bottom: 60px; }
.timeline_4fc8bb { display: flex; flex-direction: column; gap: 0; max-width: 700px; }
.timelineItem_4fc8bb { display: grid; grid-template-columns: 160px 40px 1fr; gap: 0; align-items: flex-start; }
.timelineYear_4fc8bb {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); padding-top: 3px; text-align: right; padding-right: 24px;
}
.timelineLine_4fc8bb { display: flex; flex-direction: column; align-items: center; }
.timelineDot_4fc8bb { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.timelineBar_4fc8bb { width: 1px; background: var(--line-gold); flex: 1; min-height: 50px; margin: 6px 0; }
.timelineEvent_4fc8bb { padding: 0 0 40px 24px; font-size: 0.95rem; color: var(--ivory-dim); line-height: 1.7; }

.credGrid_4fc8bb { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.certCard_4fc8bb { display: flex; gap: 20px; align-items: flex-start; background: var(--bg-2); border: 1px solid var(--line-gold); border-radius: 8px; padding: 24px; }
.certBadge_4fc8bb { width: 48px; height: 48px; border-radius: 6px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; color: var(--ivory); flex-shrink: 0; }
.certTitle_4fc8bb { font-size: 0.95rem; font-weight: 500; color: var(--ivory); margin-bottom: 4px; }
.certSub_4fc8bb { font-size: 0.8rem; color: var(--ivory-dim); }
.certHours_4fc8bb { font-size: 0.75rem; color: var(--gold); margin-top: 8px; letter-spacing: 0.08em; }

.studioList_4fc8bb { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.studioList_4fc8bb li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--ivory-dim); }

.athleteCard_4fc8bb { background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.athleteTitle_4fc8bb { font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory); margin-bottom: 12px; }
.athleteList_4fc8bb { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.athleteList_4fc8bb li { font-size: 0.85rem; color: var(--ivory-dim); padding-left: 14px; position: relative; }
.athleteList_4fc8bb li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.originSection_4fc8bb { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(80px,12vw,140px) 0; }
.originInner_4fc8bb {}
.nameBreakdown_4fc8bb { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.namePart_4fc8bb { display: flex; align-items: center; gap: 20px; }
.nameChar_4fc8bb { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--gold); min-width: 100px; }
.namePart_4fc8bb span:last-child { font-size: 0.9rem; color: var(--ivory-dim); }

@media (max-width: 900px) {
  .heroInner_4fc8bb, .storyGrid_4fc8bb, .credGrid_4fc8bb, .honestGrid_4fc8bb { grid-template-columns: 1fr; }
  .heroRight_4fc8bb { display: none; }
  .timelineItem_4fc8bb { grid-template-columns: 100px 32px 1fr; }
}
@media (max-width: 560px) {
  .timelineItem_4fc8bb { grid-template-columns: 80px 28px 1fr; }
}


/* src/pages/Classes.module.css */
.hero_b1aefc { position:relative; padding: 160px 0 80px; overflow:hidden; }
.decor_b1aefc { position:absolute; right:-80px; top:-80px; width:500px; height:500px; }

.cards_b1aefc { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:var(--line); }
.card_b1aefc {
  background:var(--bg);
  padding: clamp(32px,4vw,56px);
  display:flex; flex-direction:column;
  transition: background 0.25s ease;
}
.card_b1aefc:hover { background:var(--bg-2); }

.cardTop_b1aefc { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; }
.cardIcon_b1aefc { font-size:1.8rem; color:var(--gold); }
.cardTag_b1aefc { font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--sage); border:1px solid var(--sage-dim); padding:4px 10px; border-radius:20px; }

.cardTitle_b1aefc { font-family:var(--font-display); font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:300; color:var(--ivory); margin-bottom:12px; }

.cardDuration_b1aefc { display:flex; align-items:center; gap:12px; }
.dLabel_b1aefc { font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }

.features_b1aefc { list-style:none; display:flex; flex-direction:column; gap:10px; flex:1; }
.features_b1aefc li { display:flex; align-items:center; gap:10px; font-size:0.875rem; color:var(--ivory-dim); }

.cardFooter_b1aefc { border-top:1px solid var(--line); margin-top:28px; padding-top:24px; }
.pricing_b1aefc { display:flex; flex-direction:column; gap:4px; }
.pLabel_b1aefc { font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); }
.pValue_b1aefc { font-size:0.875rem; color:var(--ivory-dim); }

.expectSection_b1aefc { background:var(--bg-2); padding:clamp(80px,12vw,140px) 0; }
.expectGrid_b1aefc { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); }
.expectItem_b1aefc { background:var(--bg-2); padding:36px 28px; }
.expectNum_b1aefc { font-family:var(--font-display); font-size:3rem; font-weight:300; color:rgba(201,169,110,0.15); line-height:1; margin-bottom:16px; }
.expectTitle_b1aefc { font-family:var(--font-display); font-size:1.2rem; color:var(--ivory); margin-bottom:10px; }

.location_b1aefc { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.locationCard_b1aefc { background:var(--bg-2); border:1px solid var(--line-gold); border-radius:8px; padding:32px; }
.locRow_b1aefc { display:flex; justify-content:space-between; padding:14px 0; border-bottom:1px solid var(--line); font-size:0.875rem; }
.locRow_b1aefc:last-child { border-bottom:none; }
.locLabel_b1aefc { color:var(--gold); font-size:0.7rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:500; }

.faqSection_b1aefc { background:var(--bg-2); padding:clamp(80px,12vw,140px) 0; }
.faqs_b1aefc { display:flex; flex-direction:column; gap:0; max-width:720px; }
.faq_b1aefc { border-bottom:1px solid var(--line); padding:28px 0; }
.faqQ_b1aefc { font-family:var(--font-display); font-size:1.2rem; color:var(--ivory); margin-bottom:10px; }
.faqA_b1aefc { font-size:0.875rem; color:var(--ivory-dim); line-height:1.7; }

@media (max-width:900px) {
  .cards_b1aefc { grid-template-columns:1fr; }
  .expectGrid_b1aefc { grid-template-columns:1fr 1fr; }
  .location_b1aefc { grid-template-columns:1fr; }
}
@media (max-width:560px) {
  .expectGrid_b1aefc { grid-template-columns:1fr; }
}


/* src/pages/Contact.module.css */
.hero_cc3309 { position:relative; padding:160px 0 80px; overflow:hidden; }
.decor_cc3309 { position:absolute; right:-80px; top:-80px; width:500px; height:500px; }

.grid_cc3309 { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; }

.contactList_cc3309 { display:flex; flex-direction:column; gap:24px; margin-bottom:36px; }
.contactItem_cc3309 { display:flex; align-items:flex-start; gap:16px; }
.contactIcon_cc3309 {
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--line-gold);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); flex-shrink:0;
  background:rgba(201,169,110,0.05);
}
.contactLabel_cc3309 { font-size:0.65rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); font-weight:500; margin-bottom:3px; }
.contactValue_cc3309 { font-size:0.9rem; color:var(--ivory-dim); transition:color 0.2s ease; }
a.contactValue_cc3309:hover { color:var(--gold); }

.responseNote_cc3309 {
  display:flex; gap:14px;
  background:var(--bg-2);
  border:1px solid var(--line);
  border-left:3px solid var(--sage);
  border-radius:8px;
  padding:18px 20px;
}
.responseIcon_cc3309 { font-size:1.2rem; color:var(--sage); flex-shrink:0; padding-top:1px; }
.responseTitle_cc3309 { font-weight:500; font-size:0.875rem; color:var(--ivory); margin-bottom:4px; }
.responseText_cc3309 { font-size:0.8rem; color:var(--ivory-dim); line-height:1.6; }

/* Form */
.form_cc3309 { display:flex; flex-direction:column; gap:20px; }
.formRow_cc3309 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field_cc3309 { display:flex; flex-direction:column; gap:8px; }
.label_cc3309 { font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--ivory-dim); font-weight:500; }
.req_cc3309 { color:var(--gold); }
.input_cc3309 {
  background:var(--bg-2);
  border:1px solid var(--line);
  border-radius:4px;
  padding:14px 16px;
  color:var(--ivory);
  font-family:var(--font-body);
  font-size:0.9rem;
  font-weight:300;
  outline:none;
  transition:border-color 0.2s ease;
  width:100%;
}
.input_cc3309:focus { border-color:var(--gold); }
.input_cc3309::placeholder { color:rgba(30,61,43,0.35); }
.textarea_cc3309 { resize:vertical; min-height:130px; }
select.input_cc3309 { cursor:pointer; }
select.input_cc3309 option { background:var(--bg-2); }

.submit_cc3309 { width:100%; justify-content:center; margin-top:4px; }
.formNote_cc3309 { font-size:0.75rem; color:var(--ivory-dim); text-align:center; opacity:0.6; }

/* Success */
.successBox_cc3309 {
  background:var(--bg-2);
  border:1px solid var(--line-gold);
  border-radius:10px;
  padding:60px 40px;
  text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:16px;
}
.successIcon_cc3309 { font-size:3rem; color:var(--sage); }
.successTitle_cc3309 { font-family:var(--font-display); font-size:2rem; color:var(--ivory); }

@media (max-width:900px) {
  .grid_cc3309 { grid-template-columns:1fr; gap:60px; }
  .formRow_cc3309 { grid-template-columns:1fr; }
}


/* src/pages/Home.module.css */
/* ── Hero ── */
.hero_2f0297 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
}
.heroDecor_2f0297 {
  position: absolute;
  right: -80px; top: -80px;
  width: 600px; height: 600px;
  opacity: 0.5;
  pointer-events: none;
}
.heroInner_2f0297 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.heroContent_2f0297 { position: relative; z-index: 2; }
.heroH1_2f0297 { color: var(--ivory); }
.heroBtns_2f0297 { display: flex; gap: 16px; flex-wrap: wrap; }

.heroVisual_2f0297 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroPhotoFrame_2f0297 {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 60px -20px rgba(30,61,43,0.35);
}
.heroPhoto_2f0297 { width: 100%; height: 100%; object-fit: cover; display: block; }
.heroCard_2f0297 {
  position: absolute;
  bottom: 20px; right: 0;
  background: var(--bg-3);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  padding: 16px 22px;
  min-width: 200px;
}

/* ── Stats bar ── */
.statsBar_2f0297 {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 28px 0;
}
.stats_2f0297 {
  display: flex;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
}
.stat_2f0297 { text-align: center; padding: 8px 20px; }
.statNum_2f0297 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.statLabel_2f0297 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-dim); margin-top: 6px; }

/* ── Tape ── */
.tape_2f0297 {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: 14px 0;
  white-space: nowrap;
}
.tapeInner_2f0297 { display: inline-flex; align-items: center; gap: 0; will-change: transform; }
.tapeItem_2f0297 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 0 24px;
  white-space: nowrap;
}
.tapeDot_2f0297 { color: var(--gold); padding: 0 4px; font-size: 1rem; }

/* ── Pillars ── */
.pillarsHead_2f0297 { margin-bottom: 60px; }
.pillars_2f0297 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.offerGrid_2f0297 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  background: transparent;
}
.comingCard_2f0297 { display: flex; flex-direction: column; }
.comingPhotoFrame_2f0297 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: 0 20px 45px -18px rgba(30,61,43,0.4);
}
.comingPhoto_2f0297 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.comingCard_2f0297:hover .comingPhoto_2f0297 { transform: scale(1.06); }
.comingOverlay_2f0297 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,61,43,0) 35%, rgba(30,61,43,0.55) 72%, rgba(30,61,43,0.88) 100%);
  transition: background 0.4s ease;
  pointer-events: none;
}
.comingCard_2f0297:hover .comingOverlay_2f0297 {
  background: linear-gradient(180deg, rgba(30,61,43,0.05) 25%, rgba(30,61,43,0.65) 68%, rgba(30,61,43,0.92) 100%);
}
.comingNum_2f0297 {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--gold);
  background: rgba(250,246,236,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(201,169,110,0.5);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.comingCaption_2f0297 {
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
}
.comingLine_2f0297 {
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width 0.4s ease;
}
.comingCard_2f0297:hover .comingLine_2f0297 { width: 52px; }
.comingCaptionTitle_2f0297 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.01em;
}
.pillar_2f0297 {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.25s ease;
}
.pillar_2f0297:hover { background: var(--bg-2); }
.pillarNum_2f0297 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--line-gold);
  line-height: 1;
  margin-bottom: 16px;
}
.pillarIcon_2f0297 {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}
.pillar_2f0297:hover .pillarIcon_2f0297 { transform: translateY(-3px); }
.pillarTitle_2f0297 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}

/* ── Reformer ── */
.reformerSection_2f0297 { background: var(--bg-2); padding: clamp(80px,12vw,140px) 0; }
.reformerWrap_2f0297 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.reformerText_2f0297 {}
.reformerImg_2f0297 { opacity: 0.7; }
.checkList_2f0297 {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checkList_2f0297 li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ivory-dim);
}

/* ── Testimonial ── */
.testimonial_2f0297 {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.quote_2f0297 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  margin: 16px 0 24px;
}
.reviewer_2f0297 { display: flex; align-items: center; justify-content: center; gap: 12px; }
.stars_2f0297 { display: flex; gap: 3px; }
.reviewerName_2f0297 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ivory-dim); }

/* ── Wellness CTA ── */
.wellnessCta_2f0297 {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(80px,12vw,140px) 0;
}
.wellnessCtaInner_2f0297 { text-align: center; }

/* ── Join The Waitlist ── */
.waitlistSection_2f0297 {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(80px,12vw,140px) 0;
}
.waitlistInner_2f0297 { text-align: center; }
.waitlistForm_2f0297 {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.waitlistRow_2f0297 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; }
.waitlistInput_2f0297 {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease;
}
.waitlistInput_2f0297:focus { border-color: var(--gold); }
.waitlistInput_2f0297::placeholder { color: rgba(30,61,43,0.4); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pillars_2f0297 { grid-template-columns: repeat(2, 1fr); }
  .offerGrid_2f0297 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .heroInner_2f0297 { grid-template-columns: 1fr; }
  .heroVisual_2f0297 { display: none; }
  .reformerWrap_2f0297 { grid-template-columns: 1fr; }
  .reformerImg_2f0297 { display: none; }
  .waitlistRow_2f0297 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pillars_2f0297 { grid-template-columns: 1fr; }
  .heroBtns_2f0297 { flex-direction: column; }
}
