/* Ironwood Gym — page-level styles */

body {
  background: var(--canvas);
  color: var(--ink);
  min-width: 1280px; /* design is fixed-width; allow horizontal scroll on small screens */
}

/* Container */
.page-container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.page-container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* Section rhythm */
.section { padding: 96px 32px; }
.section--tight { padding: 64px 32px; }
.section--lg { padding: 120px 32px; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--brand-green-deep);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--brand-green-deep);
}
.eyebrow--center::before { display: none; }
.eyebrow--center { letter-spacing: 1.6px; }
.eyebrow--on-dark { color: var(--brand-green); }
.eyebrow--on-dark::before { background: var(--brand-green); }

/* Section heading */
.section-title { font-size: 48px; font-weight: 600; letter-spacing: -1px; line-height: 1.1; margin: 0; }
.section-title--center { text-align: center; }
.section-sub { font-size: 18px; color: var(--steel); line-height: 1.5; margin: 16px 0 0; max-width: 640px; }
.section-sub--center { margin: 16px auto 0; text-align: center; }

/* Buttons override — large variant */
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* Link styled clean */
a.clean { text-decoration: none; color: inherit; }

/* Misc */
.muted { color: var(--steel); }
.divider-line { height: 1px; background: var(--hairline); border: 0; margin: 0; }

/* Sticky nav offset for in-page links */
html { scroll-behavior: smooth; }

/* =========================================================================
   Site nav
   ========================================================================= */
.site-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.site-nav.is-scrolled {
  border-bottom-color: var(--hairline-soft);
  background: rgba(255, 255, 255, 0.92);
}
.site-nav__inner {
  display: flex; align-items: center; gap: 32px;
  padding: 16px 32px; max-width: 1400px; margin: 0 auto;
}
.site-nav__brand { display: flex; align-items: center; gap: 10px; }
.site-nav__brand-name { font-weight: 600; font-size: 19px; letter-spacing: -0.4px; }
.site-nav__brand-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--steel); padding: 2px 8px; border: 1px solid var(--hairline);
  border-radius: 9999px; margin-left: 4px;
}
.site-nav__links { display: flex; gap: 4px; margin-left: 16px; }
.site-nav__link {
  font-size: 14px; font-weight: 500; color: var(--steel);
  padding: 8px 14px; border-radius: 9999px;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.site-nav__link:hover { color: var(--ink); background: var(--surface); }
.site-nav__link.is-active { font-weight: 600; color: var(--ink); background: var(--surface); }
.site-nav__spacer { flex: 1; }
.site-nav__tour {
  font-size: 14px; font-weight: 500; color: var(--steel);
  transition: color var(--dur-fast) var(--ease);
}
.site-nav__tour:hover { color: var(--ink); }

/* =========================================================================
   Hero (home)
   ========================================================================= */
.hero { position: relative; padding: 56px 32px 0; background: var(--canvas); }
.hero__inner { max-width: 1400px; margin: 0 auto; position: relative; }
.hero__frame {
  position: relative; background: var(--surface);
  border-radius: 24px; overflow: hidden;
  border: 1px solid var(--hairline); min-height: 620px;
}
.hero__grid-bg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.hero__layout {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}
.hero__copy { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.hero__title {
  font-size: 84px; font-weight: 600; line-height: 1; letter-spacing: -3px;
  margin: 24px 0 0; text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 400; }
.hero__title .accent { color: var(--brand-green-deep); }
.hero__sub { font-size: 19px; line-height: 1.55; color: var(--steel); margin: 32px 0 0; max-width: 480px; }
.hero__ctas { display: flex; gap: 12px; margin-top: 40px; }
.hero__stats { margin-top: 56px; display: flex; gap: 40px; align-items: center; }
.hero__stat-num { font-size: 28px; font-weight: 600; letter-spacing: -0.5px; }
.hero__stat-label { font-size: 13px; color: var(--steel); margin-top: 2px; }
.hero__stat-divider { width: 1px; height: 36px; background: var(--hairline); }

.hero__media { position: relative; overflow: hidden; }
.hero__image {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transform-origin: center;
}

.hero-card {
  position: absolute; left: 32px; bottom: 32px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 16px; padding: 20px 24px;
  border: 1px solid var(--hairline-soft);
  max-width: 320px;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.18);
}
.hero-card__row { display: flex; align-items: center; gap: 12px; }
.hero-card__icon {
  width: 44px; height: 44px; border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-deep) 100%);
  display: flex; align-items: center; justify-content: center; color: white;
}
.hero-card__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--steel);
}
.hero-card__title { font-size: 15px; font-weight: 600; margin-top: 2px; }
.hero-card__grid {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--hairline-soft);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.hero-card__time { font-size: 13px; font-weight: 600; }
.hero-card__class { font-size: 11px; color: var(--steel); }

/* =========================================================================
   Stats bar
   ========================================================================= */
.stats-bar {
  padding: 48px 32px;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  margin-top: 80px;
}
.stats-bar__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.stat {
  border-left: 1px solid var(--hairline-soft);
  padding-left: 24px;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num { font-size: 44px; font-weight: 600; letter-spacing: -1.5px; line-height: 1; color: var(--ink); }
.stat__label { font-size: 13px; color: var(--steel); margin-top: 8px; }

/* =========================================================================
   Methodology
   ========================================================================= */
.methodology { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; align-items: start; }
.methodology__lead { position: sticky; top: 100px; }
.methodology__list { display: flex; flex-direction: column; }
.pillar {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
}
.pillar:first-child { border-top: 1px solid var(--ink); }
.pillar__num { font-family: var(--font-mono); font-size: 13px; color: var(--steel); padding-top: 6px; }
.pillar__title { font-size: 26px; font-weight: 600; letter-spacing: -0.5px; margin: 0; }
.pillar__body { font-size: 16px; line-height: 1.6; color: var(--steel); margin: 10px 0 0; }

/* =========================================================================
   Facilities
   ========================================================================= */
.facilities__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; }
.facilities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
  position: relative; border-radius: 16px; overflow: hidden;
}
.tile.span-2 { grid-column: span 2; aspect-ratio: 16 / 9; }
.tile.span-1 { grid-column: span 1; aspect-ratio: 4 / 5; }
.tile__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  transition: transform 800ms var(--ease);
}
.tile:hover .tile__img { transform: scale(1.04); }
.tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.7) 100%); }
.tile__caption { position: absolute; left: 24px; bottom: 24px; right: 24px; color: white; }
.tile__tag { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; opacity: 0.85; }
.tile__title { font-size: 22px; font-weight: 600; letter-spacing: -0.4px; margin-top: 6px; }

/* =========================================================================
   Schedule
   ========================================================================= */
.schedule__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; }
.schedule__panel {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; overflow: hidden;
}
.schedule__tabs { display: flex; border-bottom: 1px solid var(--hairline-soft); position: relative; }
.schedule__tab {
  flex: 1; padding: 18px 0; border: 0;
  background: var(--surface-soft);
  border-right: 1px solid var(--hairline-soft);
  cursor: pointer; text-align: center;
  font-family: var(--font-sans);
  transition: background var(--dur-fast) var(--ease);
}
.schedule__tab:last-child { border-right: 0; }
.schedule__tab.is-active { background: var(--canvas); }
.schedule__tab-day { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--steel); }
.schedule__tab-num { font-size: 18px; font-weight: 600; margin-top: 4px; color: var(--steel); transition: color var(--dur-fast) var(--ease); }
.schedule__tab.is-active .schedule__tab-num { color: var(--ink); }
.schedule__indicator {
  position: absolute; bottom: -1px; height: 2px; background: var(--ink);
  transition: left 380ms var(--ease), width 380ms var(--ease);
}
.schedule__rows { position: relative; min-height: 80px; }
.schedule__row {
  display: grid; grid-template-columns: 90px 320px auto;
  gap: 32px;
  align-items: center; padding: 18px 28px;
  border-top: 1px solid var(--hairline-soft);
  transition: background var(--dur-fast) var(--ease);
}
.schedule__row:first-child { border-top: 0; }
.schedule__row:hover { background: var(--surface-soft); }
.schedule__row.is-full { opacity: 0.55; }
.schedule__row.is-full:hover { background: transparent; }
.schedule__time { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--ink); }
.schedule__title { font-size: 16px; font-weight: 600; }
.schedule__coach { font-size: 13px; color: var(--steel); margin-top: 2px; }
.schedule__meta {
  display: flex; align-items: center; gap: 20px;
  justify-content: flex-end;
}
.schedule__meta-divider { width: 1px; height: 20px; background: var(--hairline); }
.schedule__duration {
  font-family: var(--font-mono); font-size: 13px; color: var(--steel);
  font-variant-numeric: tabular-nums;
}
.schedule__spots {
  font-size: 13px; color: var(--steel);
  text-align: right;
  min-width: 88px;
  font-variant-numeric: tabular-nums;
}
.schedule__spots.is-full { color: var(--brand-error); font-weight: 600; }
.schedule__spots-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 9999px;
  background: var(--brand-green); margin-right: 6px;
  vertical-align: middle;
}
.schedule__spots-dot.is-low  { background: var(--brand-warn); }
.schedule__spots-dot.is-full { background: var(--brand-error); }

/* =========================================================================
   Testimonials
   ========================================================================= */
.testimonials { background: var(--ink); color: var(--on-dark); }
.testimonials__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 56px; }
.testimonials__head-title { color: white; }
.testimonials__rating { font-size: 14px; color: var(--on-dark-muted); }
.testimonials__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 20px; }
.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-dark);
  border-radius: 16px; padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px;
}
.testimonial--featured {
  background: var(--testimonial-orange);
  color: var(--on-dark);
  border: 0; padding: 40px;
}
.testimonial__quote { font-size: 16px; line-height: 1.5; margin: 0; }
.testimonial--featured .testimonial__quote { font-size: 22px; font-weight: 500; letter-spacing: -0.3px; }
.testimonial__author-row { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.testimonial__avatar { width: 40px; height: 40px; border-radius: 9999px; object-fit: cover; }
.testimonial__author { font-size: 14px; font-weight: 600; }
.testimonial__role { font-size: 12px; color: var(--on-dark-muted); margin-top: 2px; }
.testimonial--featured .testimonial__role { color: rgba(255, 255, 255, 0.85); }
.testimonial__quotemark { opacity: 0.3; margin-bottom: 20px; }
.testimonial--featured .testimonial__quotemark { opacity: 0.4; }

/* =========================================================================
   Packages teaser & pricing
   ========================================================================= */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tier {
  background: var(--canvas); border-radius: 16px; padding: 36px;
  border: 1px solid var(--hairline);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.tier--featured {
  border: 2px solid var(--brand-green);
  box-shadow: 0 12px 40px rgba(0, 212, 164, 0.10);
}
.tier__badge {
  position: absolute; top: -12px; left: 36px;
  background: var(--brand-green); color: var(--ink);
  padding: 4px 12px; border-radius: 9999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
}
.tier__name { font-size: 22px; font-weight: 600; margin: 0; }
.tier__name--lg { font-size: 26px; letter-spacing: -0.5px; }
.tier__desc { font-size: 14px; color: var(--steel); margin: 6px 0 24px; }
.tier__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.tier__price { font-size: 48px; font-weight: 600; letter-spacing: -1.5px; line-height: 1; }
.tier__price--lg { font-size: 56px; letter-spacing: -2px; }
.tier__price-unit { font-size: 14px; color: var(--steel); }
.tier__billing-note { font-size: 12px; color: var(--steel); margin-top: 6px; }
.tier__feat-list {
  border-top: 1px solid var(--hairline-soft);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.tier__feat {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: var(--slate); line-height: 1.5;
}

.section-foot-link { text-align: center; margin-top: 32px; }

/* =========================================================================
   Final CTA
   ========================================================================= */
.final-cta { padding: 80px 32px; }
.final-cta__inner {
  background: linear-gradient(135deg, var(--hero-dark-from) 0%, var(--hero-dark-to) 100%);
  color: white; border-radius: 24px;
  padding: 72px 64px; position: relative; overflow: hidden;
}
.final-cta__glow {
  position: absolute; top: -40px; right: -40px;
  width: 320px; height: 320px; border-radius: 9999px;
  background: radial-gradient(circle, rgba(0, 212, 164, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__copy { position: relative; max-width: 720px; }
.final-cta__title {
  font-size: 56px; font-weight: 600; letter-spacing: -1.5px;
  line-height: 1.05; margin: 0; color: white;
}
.final-cta__sub { font-size: 18px; line-height: 1.5; color: rgba(255, 255, 255, 0.78); margin: 24px 0 36px; max-width: 540px; }
.final-cta__ctas { display: flex; gap: 12px; }
.btn-on-dark-outline {
  background: transparent; color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-on-dark-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: white; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--canvas-dark); color: var(--on-dark); padding: 80px 32px 40px; }
.site-footer__inner { max-width: 1400px; margin: 0 auto; }
.site-footer__cols {
  display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 56px;
  padding-bottom: 56px; border-bottom: 1px solid var(--hairline-dark);
}
.site-footer__brand-row { display: flex; align-items: center; gap: 10px; }
.site-footer__brand-name { font-weight: 600; font-size: 20px; letter-spacing: -0.4px; }
.site-footer__blurb { font-size: 14px; color: var(--on-dark-muted); line-height: 1.6; margin-top: 16px; max-width: 320px; }
.site-footer__address { margin-top: 24px; font-size: 13px; color: var(--on-dark-muted); }
.site-footer__address-label { font-weight: 600; color: white; margin-bottom: 6px; letter-spacing: 0.4px; text-transform: uppercase; font-size: 11px; }
.site-footer__col-title { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 16px; }
.site-footer__link {
  display: block; font-size: 14px; color: white; padding: 5px 0; opacity: 0.85;
  text-decoration: none; cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.site-footer__link:hover { opacity: 1; transform: translateX(2px); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 13px; color: var(--on-dark-muted);
}
.site-footer__legal { display: flex; gap: 24px; }

/* =========================================================================
   Packages page
   ========================================================================= */
.pkg-hero { padding: 80px 32px 56px; background: var(--canvas); }
.pkg-hero__inner { text-align: center; max-width: 800px; }
.pkg-hero__title {
  font-size: 72px; font-weight: 600; letter-spacing: -2px;
  line-height: 1.05; margin: 0;
}
.pkg-hero__sub { font-size: 19px; line-height: 1.55; color: var(--steel); margin: 24px auto 0; max-width: 600px; }

.billing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.billing-toggle {
  display: inline-flex; background: var(--surface);
  border-radius: 9999px; padding: 4px; border: 1px solid var(--hairline-soft);
}
.billing-toggle__btn {
  background: transparent; color: var(--ink); border: 0;
  padding: 10px 22px; border-radius: 9999px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit;
}
.billing-toggle__btn.is-active {
  background: var(--canvas);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.billing-toggle__save {
  background: var(--brand-green); color: var(--ink);
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: 9999px; letter-spacing: 0.3px;
}

.pricing-foot {
  margin-top: 24px; text-align: center;
  font-size: 14px; color: var(--steel);
}

/* Compare table */
.compare {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; overflow: hidden;
}
.compare__head, .compare__row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 32px;
  border-bottom: 1px solid var(--hairline-soft);
  align-items: center;
}
.compare__head {
  padding: 24px 32px; border-bottom: 1px solid var(--hairline);
  background: var(--canvas);
}
.compare__head-feat { font-size: 13px; font-weight: 600; color: var(--steel); letter-spacing: 0.4px; text-transform: uppercase; }
.compare__head-tier { text-align: center; }
.compare__head-tier-name { font-size: 16px; font-weight: 600; }
.compare__head-tier-price { font-size: 13px; color: var(--steel); margin-top: 4px; }
.compare__group {
  padding: 16px 32px; background: var(--surface-soft);
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--steel);
  border-bottom: 1px solid var(--hairline-soft);
}
.compare__row-label { font-size: 14px; color: var(--ink); }
.compare__cell { text-align: center; font-size: 14px; color: var(--slate); }
.compare__cell--no { color: var(--muted); }

/* PT add-ons */
.pt {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.pt__list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.pt__list li { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--slate); }
.pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pt-pack {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 28px; position: relative;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.pt-pack:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.pt-pack--popular { border: 2px solid var(--ink); }
.pt-pack__badge {
  position: absolute; top: -11px; left: 24px;
  background: var(--ink); color: white;
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 9999px;
}
.pt-pack__label { font-size: 13px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; color: var(--steel); }
.pt-pack__price { font-size: 40px; font-weight: 600; letter-spacing: -1.2px; margin: 8px 0 4px; line-height: 1; }
.pt-pack__per { font-size: 13px; color: var(--steel); }

/* Class packs */
.class-pack {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.class-pack:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.class-pack__media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.class-pack__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85);
  transition: transform 800ms var(--ease);
}
.class-pack:hover .class-pack__img { transform: scale(1.04); }
.class-pack__count {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px; border-radius: 9999px;
  font-size: 12px; font-weight: 600;
}
.class-pack__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.class-pack__title { font-size: 22px; font-weight: 600; letter-spacing: -0.4px; margin: 0; }
.class-pack__desc { font-size: 14px; color: var(--steel); line-height: 1.55; margin: 8px 0 20px; flex: 1; }
.class-pack__price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.class-pack__price { font-size: 32px; font-weight: 600; letter-spacing: -1px; line-height: 1; }

/* FAQ */
.faq {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; overflow: hidden;
}
.faq__item { border-top: 1px solid var(--hairline-soft); }
.faq__item:first-child { border-top: 0; }
.faq__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; background: none; border: 0;
  cursor: pointer; text-align: left; font-family: inherit;
}
.faq__q { font-size: 17px; font-weight: 600; color: var(--ink); }
.faq__plus {
  font-size: 20px; color: var(--steel); font-weight: 300;
  transition: transform var(--dur-base) var(--ease);
}
.faq__item.is-open .faq__plus { transform: rotate(45deg); }
.faq__a {
  padding: 0 28px 24px;
  font-size: 15px; line-height: 1.6; color: var(--steel);
  max-width: 720px;
  display: none;
}
.faq__item.is-open .faq__a { display: block; }

/* =========================================================================
   Contact page
   ========================================================================= */
.contact-hero { padding: 64px 32px 0; background: var(--canvas); }
.contact-hero__inner { max-width: 800px; text-align: center; }
.contact-hero__title {
  font-size: 64px; font-weight: 600; letter-spacing: -2px;
  line-height: 1.05; margin: 0; text-wrap: balance;
}
.contact-hero__title em { font-style: italic; font-weight: 400; }
.contact-hero__sub { font-size: 18px; line-height: 1.55; color: var(--steel); margin: 24px auto 0; max-width: 540px; }

.contact-body { padding: 48px 32px 96px; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}
.form-card {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 20px; padding: 48px;
}
.form-section {
  padding-bottom: 32px; margin-bottom: 32px;
  border-bottom: 1px solid var(--hairline-soft);
}
.form-section:last-of-type { border-bottom: 0; }
.form-section__head {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px;
}
.form-section__num { font-family: var(--font-mono); font-size: 12px; color: var(--steel); }
.form-section__title { font-size: 19px; font-weight: 600; margin: 0; }
.form-section__sub { font-size: 13px; color: var(--steel); margin-top: 2px; }

.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.radio-card {
  padding: 16px 20px; text-align: left;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  border-radius: 12px; cursor: pointer;
  font-family: inherit;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.radio-card:hover { border-color: var(--steel); }
.radio-card.is-active {
  border: 2px solid var(--ink);
  background: var(--surface-soft);
  padding: 15px 19px; /* compensate for thicker border */
}
.radio-card__label { font-size: 15px; font-weight: 600; }
.radio-card__sub { font-size: 13px; color: var(--steel); margin-top: 2px; }

.selected-pkg {
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: 12px; padding: 20px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center;
}
.selected-pkg__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--brand-green-deep); margin-bottom: 4px;
}
.selected-pkg__name { font-size: 17px; font-weight: 600; }
.selected-pkg__price { font-size: 14px; color: var(--steel); margin-top: 2px; }
.selected-pkg__link { color: var(--brand-green-deep); font-weight: 500; font-size: 14px; text-decoration: none; }
.selected-pkg__link:hover { text-decoration: underline; }

.field-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: block; }
.field__label-row { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 8px; display: flex; justify-content: space-between; align-items: baseline; }
.field__required { color: var(--brand-green-deep); }
.field__sub { font-size: 12px; color: var(--muted); font-weight: 400; }

.goal-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.goal-pill {
  padding: 10px 18px; border-radius: 9999px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  background: var(--canvas); color: var(--ink);
  border: 1px solid var(--hairline);
  font-family: inherit;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.goal-pill:hover { border-color: var(--steel); }
.goal-pill.is-active { background: var(--ink); color: white; border-color: var(--ink); }

.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--hairline-soft);
}
.form-foot__note { font-size: 13px; color: var(--steel); max-width: 320px; line-height: 1.5; }

.contact-aside {
  position: sticky; top: 100px;
  display: flex; flex-direction: column; gap: 20px;
}
.summary {
  background: var(--canvas-dark); color: var(--on-dark);
  border-radius: 16px; padding: 28px;
  position: relative; overflow: hidden;
}
.summary__glow {
  position: absolute; top: -30px; right: -30px;
  width: 160px; height: 160px; border-radius: 9999px;
  background: radial-gradient(circle, rgba(0,212,164,0.25), transparent 70%);
  pointer-events: none;
}
.summary__inner { position: relative; }
.summary__name { font-size: 22px; font-weight: 600; letter-spacing: -0.4px; }
.summary__price-row { display: flex; align-items: baseline; gap: 6px; margin-top: 16px; }
.summary__price { font-size: 44px; font-weight: 600; letter-spacing: -1.5px; line-height: 1; }
.summary__price-unit { font-size: 14px; color: var(--on-dark-muted); }
.summary__billing { margin-top: 12px; font-size: 13px; color: var(--on-dark-muted); }
.summary__perks {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 10px;
}
.summary__perk { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--on-dark-muted); }

.visit-card {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 16px; padding: 24px;
}
.visit-card__name { font-size: 15px; font-weight: 600; }
.visit-card__addr { font-size: 14px; color: var(--steel); margin-top: 4px; line-height: 1.55; }
.visit-card__hours {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--hairline-soft);
  font-size: 13px; color: var(--steel); line-height: 1.7;
}
.visit-card__row { display: flex; justify-content: space-between; }
.visit-card__time { color: var(--ink); font-family: var(--font-mono); }
.visit-card__contact {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--hairline-soft);
  display: flex; flex-direction: column; gap: 8px; font-size: 14px;
}
.visit-card__link { color: var(--ink); font-family: var(--font-mono); font-size: 13px; text-decoration: none; }
.visit-card__link:hover { color: var(--brand-green-deep); }

.success-card {
  background: var(--canvas); border: 1px solid var(--hairline);
  border-radius: 20px; padding: 56px; text-align: center;
}
.success-icon {
  width: 64px; height: 64px; border-radius: 9999px;
  background: var(--brand-green);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.success-card h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.8px; margin: 0; }
.success-card__sub { font-size: 17px; line-height: 1.55; color: var(--steel); margin: 16px auto 32px; max-width: 480px; }
.success-card__rec {
  background: var(--surface-soft); border-radius: 12px;
  padding: 20px; text-align: left;
  display: inline-block; max-width: 440px;
}
.success-card__rec-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.success-card__back { margin-top: 32px; }

select.input { padding-right: 36px; }
.select-tall { height: 48px; font-size: 15px; }

textarea.input { height: auto; padding: 16px; line-height: 1.55; resize: vertical; }
