/* =============================================================
   TRANSITION TRAINING — assets/css/style.css
   Aktiv Grotesk (Adobe Typekit) throughout. No Barlow.
   ============================================================= */

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

:root {
  --orange: #FF5500;
  --orange-dark: #8B2E00;
  --black: #0d0d0d;
  --black2: #1a1a18;
  --off-white: #FAF7F4;
  --white: #ffffff;
  --mid: #6b6b6b;
  --border: #e5e2dd;
  --r: 10px;
  --r-sm: 6px;
  --site-max: 1200px;
  --gutter: 64px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* =============================================================
   TYPOGRAPHY — Aktiv Grotesk weights
   ============================================================= */

h1 {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(36px, 5.5vw, 62px);
  line-height: 1.0;
  letter-spacing: 0.01em;
}

h2 {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--black);
}

h3 {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 8px;
}

p {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.72;
  color: #444;
  max-width: 620px;
}

.orange { color: var(--orange); }
.white { color: var(--white) !important; }

/* Eyebrow labels — 700 Bold */
.eyebrow {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { display: none; }
.eyebrow-c { justify-content: center; text-align: center; }
.eyebrow-c::before { display: none; }

/* =============================================================
   GRID
   ============================================================= */

.wrap { max-width: var(--site-max); margin: 0 auto; padding: 0 var(--gutter); }
.sec { padding: 88px 0; }
.sec-off { background: var(--off-white); }
.sec-dark { background: var(--black2); }

/* =============================================================
   NAVIGATION
   ============================================================= */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 56px;
  background: var(--black);
}

.nav-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-text {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}

.burger {
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================================
   MOBILE MENU
   ============================================================= */

.mobile-menu {
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--black2);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 48px var(--gutter);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 48px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  transition: color 0.2s;
  line-height: 1;
  letter-spacing: 0.01em;
}

.mobile-menu a:hover { color: var(--orange); }

.mobile-menu-email {
  margin-top: auto;
  padding-top: 32px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

/* =============================================================
   PAGE WRAPPER — offset for fixed nav
   ============================================================= */

.page-wrap { padding-top: 56px; }

/* =============================================================
   BUTTONS — 700 Bold
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border-radius: var(--r-sm);
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); }

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); }

/* =============================================================
   HERO — SPLIT LAYOUT (hero_layout = false)
   ============================================================= */

.hero-fold {
  background: linear-gradient(180deg,#1c1c1a 0%,#0d0d0d 60%);
  padding: 24px 0 0;
  text-align: left;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-split-left { padding-bottom: 48px; }
.hero-split-left h1 { text-align: left; margin-bottom: 20px; }
.hero-split-left p { text-align: left; margin: 0 0 32px; max-width: 480px; font-weight: 300; }
.hero-split-left .eyebrow { justify-content: flex-start; }
.hero-split-left .eyebrow::before { display: none; }

.hero-img {
  aspect-ratio: 3/4;
  border-radius: var(--r);
  overflow: hidden;
  background: linear-gradient(160deg,#2a2a28 0%,#1a1a18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.hero-img-label {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.18);
  text-align: center;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--r);
}

.hero-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  z-index: 2;
  border-radius: var(--r) var(--r) 0 0;
}

.hero-fold h1 { color: var(--white); }
.hero-fold p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  font-weight: 300;
}

/* =============================================================
   HERO — CENTRED LAYOUT (hero_layout = true, Workshop)
   ============================================================= */

.hero-fold-centred {
  padding-bottom: 56px;
  text-align: center;
}
.hero-fold-centred .eyebrow { justify-content: center; }

/* =============================================================
   URGENCY TAG
   ============================================================= */

.urgency-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,85,0,0.12);
  border: 1px solid rgba(255,85,0,0.35);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

/* =============================================================
   STATS BAR — 700 Bold labels, 900 Black numbers
   ============================================================= */

.stats-bar {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stats-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
}

.stat-item {
  flex: 1;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
  display: block;
  letter-spacing: 0.01em;
}

.stat-label {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  display: block;
}

/* =============================================================
   WHO THIS IS FOR — split layout with postcard flip carousel
   ============================================================= */

.qualify-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 0;
}

.qualify-left p { max-width: none; }
.qualify-left h2 { margin-top: 12px; margin-bottom: 0; }
.qualify-left .eyebrow { margin-bottom: 10px; }

.qualify-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
  margin-top: 28px;
  max-width: none;
}

/* =============================================================
   POSTCARD FLIP CAROUSEL
   ============================================================= */

.qualify-gallery {
  height: 100%;
  min-height: 380px;
  max-height: 480px;
  position: relative;
  perspective: 800px;
}

.qualify-gallery-track { position: relative; width: 100%; height: 100%; }

.qualify-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg,#1a1a18 0%,#2d2d2a 100%);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  overflow: hidden;
  transform-origin: bottom center;
  transform: translateY(0) rotateX(0deg);
  opacity: 1;
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1), opacity 0.5s ease;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.qualify-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--r);
}

.qualify-gallery-img.card-exit {
  transform: translateY(60px) rotateX(20deg);
  opacity: 0;
  z-index: 1;
}
.qualify-gallery-img.card-enter {
  transform: translateY(-20px) scale(0.97);
  opacity: 0;
  z-index: 0;
}
.qualify-gallery-img.card-active {
  transform: translateY(0) rotateX(0deg) scale(1);
  opacity: 1;
  z-index: 2;
}
.qualify-gallery-img.card-behind {
  transform: translateY(8px) scale(0.97);
  opacity: 0.4;
  z-index: 1;
}

/* =============================================================
   BEFORE / AFTER GRID — AVERSION
   ============================================================= */

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.ba-col {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.ba-col:hover { box-shadow: 0 8px 28px rgba(255,85,0,0.14); border-color: var(--orange); transform: translateY(-3px); }

.ba-col-dark { background: var(--black); border-color: transparent; }
.ba-col-dark:hover { box-shadow: 0 8px 28px rgba(255,85,0,0.25); border-color: var(--orange); transform: translateY(-3px); }

.ba-heading {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--mid);
}
.ba-heading-orange { color: var(--orange); border-bottom-color: rgba(255,85,0,0.2); }

.ba-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  max-width: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ba-list li:last-child { border-bottom: none; }
.ba-list li.dark-item { color: rgba(255,255,255,0.75); }

.ba-x { color: #c0392b; font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.ba-check { color: var(--orange); font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.aversion-cta { margin-top: 40px; text-align: center; }

/* =============================================================
   BIO
   ============================================================= */

.bio-grid-v9 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.bio-photo {
  aspect-ratio: 4/5;
  border-radius: var(--r);
  background: linear-gradient(160deg,#1a1a18 0%,#2d2d2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--r);
}

.bio-photo-label {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.bio-content p + p { margin-top: 16px; }

.bio-right-label {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bio-right-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.bio-right-name {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 20px;
}

.cred-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }

.cred-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
  font-size: 14px;
  color: #333;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  max-width: none;
}

.cred-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

/* =============================================================
   WHAT YOU GET — featured box + smaller boxes
   ============================================================= */

.get-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.get-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.get-box:hover { box-shadow: 0 8px 28px rgba(255,85,0,0.16); border-color: var(--orange); transform: translateY(-3px); }

.get-box.get-box-featured { grid-column: span 2; background: var(--off-white); border-color: var(--border); }
.get-box.get-box-featured h3 { color: var(--black); font-size: 18px; }
.get-box.get-box-featured p { color: #444; max-width: none; font-size: 15px; }
.get-box.get-box-featured .get-box-num { color: var(--orange); }

.get-box-num {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.get-box h3 { font-size: 15px; margin-bottom: 8px; }
.get-box p { font-size: 14px; max-width: none; }

.get-box-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,85,0,0.1);
  border-radius: 8px;
  color: var(--orange);
  margin-bottom: 14px;
}
.get-box.get-box-featured .get-box-icon { background: rgba(255,85,0,0.15); }

/* =============================================================
   RESULTS CAROUSEL
   ============================================================= */

.result-carousel { position: relative; overflow: hidden; margin-top: 48px; }

.result-track { display: flex; gap: 2px; will-change: transform; }

.result-card {
  flex-shrink: 0;
  width: calc(33.333% - 2px);
  background: var(--black2);
  padding: 36px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}
.result-card:hover { border-color: var(--orange); }

.result-quote {
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: none;
}

.result-stat {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.result-meta {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  max-width: none;
}

.result-nav { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }

.result-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.result-dot.active { background: var(--orange); transform: scale(1.3); }

/* =============================================================
   HOW IT WORKS ACCORDION — 400 Regular titles
   ============================================================= */

.how-list { max-width: 680px; margin: 48px auto 0; }

.how-item { border-bottom: 1px solid var(--border); }
.how-item:first-child { border-top: 1px solid var(--border); }

.how-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'aktiv-grotesk', sans-serif;
}

.how-num {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.how-title {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  flex: 1;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.how-icon { display: none; }

.how-item.open .how-num { color: var(--orange); }

.how-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-left: 68px;
}
.how-item.open .how-body { max-height: 200px; padding-bottom: 22px; }

.how-body p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  max-width: none;
}

/* =============================================================
   PRICING CARD
   ============================================================= */

.price-card {
  max-width: 600px;
  margin: 48px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.price-card-header {
  background: var(--black);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.price-name {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.01em;
}

.price-sub { font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 4px; }

.price-amount {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.01em;
}

.price-period { font-weight: 300; font-size: 14px; color: rgba(255,255,255,0.45); display: block; text-align: right; margin-top: 4px; }

.price-body { padding: 36px 40px; }

.price-includes {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}

.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  max-width: none;
}

.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-note {
  font-weight: 300;
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 28px;
  padding: 14px 16px;
  background: var(--off-white);
  border-left: 3px solid var(--orange);
  line-height: 1.6;
}

.price-cta {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--orange);
  color: var(--white);
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background 0.2s;
}
.price-cta:hover { background: var(--orange-dark); }

/* =============================================================
   FAQ — 400 Regular questions
   ============================================================= */

.faq-head { text-align: center; margin-bottom: 0; }
.faq-list { max-width: 680px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.2s;
}
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); color: var(--white); transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  max-width: none;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }

/* =============================================================
   WORKSHOP DATE BADGE — 900 Black day, 700 Bold labels
   ============================================================= */

.date-badge {
  display: inline-flex;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r);
  margin-bottom: 28px;
}

.date-badge-day {
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
}

.date-badge-info {
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.date-badge-month {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.date-badge-detail { font-weight: 300; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* =============================================================
   DATE SWIPER (workshop)
   ============================================================= */

.date-swiper { overflow: hidden; }
.date-swiper-track { display: flex; transition: transform 0.4s ease; }
.date-slide { flex-shrink: 0; width: 100%; display: flex; justify-content: center; }

.date-swiper-nav { display: flex; justify-content: center; gap: 6px; margin-top: 12px; }

.date-swiper-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.date-swiper-dot.active { background: var(--orange); }

/* =============================================================
   LEARN TO LIFT — WEEK GRID
   ============================================================= */

.ltl-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 48px;
}

.ltl-step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.ltl-step:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 8px 28px rgba(255,85,0,0.18); border-color: var(--orange); }

.ltl-step-num {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.ltl-step-week {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

.ltl-step-title {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.ltl-step-desc { font-weight: 300; font-size: 14px; line-height: 1.65; color: var(--mid); }

/* =============================================================
   LOCATIONS
   ============================================================= */

.location-section-head { text-align: center; }
.location-section-head .eyebrow { justify-content: center; }
.location-section-head .eyebrow::before { display: none; }

.location-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 40px;
}

.location-card {
  background: var(--white);
  padding: 32px;
  text-align: center;
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.location-card:hover { box-shadow: 0 8px 28px rgba(255,85,0,0.14); border-color: var(--orange); transform: translateY(-3px); }

.location-name {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.location-detail { font-weight: 300; font-size: 14px; color: var(--mid); line-height: 1.6; max-width: none; margin: 0 auto; }

/* =============================================================
   WORKSHOP VENUE BLOCK
   ============================================================= */

.venue-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.venue-cell {
  background: var(--white);
  padding: 32px;
  text-align: left;
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.venue-cell:hover { box-shadow: 0 8px 28px rgba(255,85,0,0.14); border-color: var(--orange); transform: translateY(-3px); }

.venue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,85,0,0.1);
  border-radius: 8px;
  color: var(--orange);
  margin-bottom: 12px;
}

.venue-label {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}

.venue-detail { font-weight: 300; font-size: 15px; line-height: 1.65; color: #333; max-width: none; }

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
  background: var(--black2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}

.site-footer-brand {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

.site-footer-email {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  white-space: nowrap;
}
.site-footer-email:hover { color: rgba(255,255,255,0.6); }

.site-footer-links { display: flex; gap: 16px; flex-wrap: nowrap; }

.site-footer-links a {
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  white-space: nowrap;
}
.site-footer-links a:hover { color: rgba(255,255,255,0.6); }

/* =============================================================
   QUIZ
   ============================================================= */

.quiz-fold {
  background: var(--black);
  padding: 64px 0;
  text-align: center;
}
.quiz-fold h1 { color: var(--white); margin-bottom: 14px; }
.quiz-fold p { color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto; font-weight: 300; }

.quiz-body-wrap { max-width: 680px; margin: 0 auto; padding: 56px var(--gutter) 80px; }

.quiz-progress {
  height: 3px;
  background: var(--border);
  margin-bottom: 48px;
  border-radius: 2px;
  overflow: hidden;
}
.quiz-fill { height: 100%; background: var(--orange); transition: width 0.4s ease; }

.quiz-step, .quiz-email-step, .quiz-result { display: none; }
.quiz-step.active, .quiz-email-step.active, .quiz-result.active { display: block; }

.quiz-q-num {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quiz-q-num::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); }

.quiz-question {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

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

.quiz-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 300;
  font-size: 15px;
  color: #333;
  line-height: 1.45;
  text-align: left;
  width: 100%;
  font-family: 'aktiv-grotesk', sans-serif;
  max-width: none;
}
.quiz-opt:hover { border-color: var(--orange); }
.quiz-opt.selected { border-color: var(--orange); background: rgba(255,85,0,0.04); }

.quiz-opt-letter {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
  letter-spacing: 0.01em;
}

.quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
}

.quiz-next {
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: background 0.2s, opacity 0.2s;
  opacity: 0.35;
  pointer-events: none;
}
.quiz-next.on { opacity: 1; pointer-events: auto; }
.quiz-next.on:hover { background: var(--orange-dark); }

.quiz-back {
  background: none;
  border: none;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  transition: color 0.2s;
}
.quiz-back:hover { color: var(--black); }

.quiz-email-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 48px;
  text-align: center;
}

.quiz-email-box h3 {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.quiz-email-box p {
  font-weight: 300;
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.quiz-email-row { display: flex; max-width: 400px; margin: 0 auto; }

.quiz-email-row input {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--black);
  outline: none;
}
.quiz-email-row input::placeholder { color: var(--mid); }

.quiz-email-row button {
  height: 48px;
  padding: 0 20px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  transition: background 0.2s;
}
.quiz-email-row button:hover { background: var(--orange-dark); }

.quiz-privacy { font-weight: 300; font-size: 12px; color: var(--mid); margin-top: 12px; max-width: none; }

.quiz-result-card {
  background: var(--white);
  border-top: 4px solid var(--orange);
  border-radius: var(--r);
  overflow: hidden;
}

.quiz-result-head { background: var(--black); padding: 36px 40px; }

.quiz-result-diag {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.quiz-result-diag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); }

.quiz-result-title {
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.01em;
}

.quiz-result-body { padding: 36px 40px; }

.quiz-result-body p {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 28px;
  max-width: 560px;
}

.quiz-result-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.quiz-retake { margin-top: 28px; text-align: center; }

.quiz-retake button {
  background: none;
  border: none;
  font-family: 'aktiv-grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.quiz-retake button:hover { color: var(--black); }

/* =============================================================
   ANIMATIONS
   ============================================================= */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================= */

/* XL: 1200px and above — handled by default styles above */

/* LG: 992px and above */
@media (max-width: 1199px) {
  :root { --gutter: 40px; }
}

/* MD: 768px and above — collapse multi-column layouts */
@media (max-width: 991px) {
  :root { --gutter: 28px; }

  .hero-split { grid-template-columns: 1fr; }
  .hero-img { max-height: 300px; aspect-ratio: 16/9; }
  .hero-split-left { padding-bottom: 0; }

  .qualify-split { grid-template-columns: 1fr; }
  .qualify-gallery { height: 280px; min-height: 280px; max-height: 280px; }

  .ba-grid { grid-template-columns: 1fr; }

  .bio-grid-v9 { grid-template-columns: 1fr; gap: 36px; }
  .bio-photo { aspect-ratio: 3/2; }

  .get-boxes { grid-template-columns: 1fr; }
  .get-box.get-box-featured { grid-column: span 1; }

  .ltl-steps { grid-template-columns: 1fr 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .venue-block { grid-template-columns: 1fr; }

  .price-card-header { flex-direction: column; gap: 12px; padding: 28px 24px; }
  .price-body { padding: 28px 24px; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }

  .site-footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .mobile-menu a { font-size: 36px; }
}

/* SM: 576px and above */
@media (max-width: 767px) {
  :root { --gutter: 20px; }

  .ltl-steps { grid-template-columns: 1fr; }

  .quiz-email-row { flex-direction: column; }
  .quiz-email-row input {
    border-right: 1.5px solid var(--border);
    border-bottom: none;
    border-radius: var(--r-sm) var(--r-sm) 0 0;
  }
  .quiz-email-row button { height: 44px; border-radius: 0 0 var(--r-sm) var(--r-sm); }
  .quiz-result-head { padding: 28px 24px; }
  .quiz-result-body { padding: 28px 24px; }
  .quiz-email-box { padding: 36px 24px; }

  .mobile-menu a { font-size: 28px; padding: 14px 0; }
  .mobile-menu { padding: 32px var(--gutter); }
}

/* XS: below 576px */
@media (max-width: 575px) {
  :root { --gutter: 16px; }

  h1 { font-size: clamp(30px, 9vw, 44px); }
  h2 { font-size: clamp(24px, 7vw, 34px); }

  .quiz-result-ctas { flex-direction: column; }
  .quiz-result-ctas .btn { width: 100%; justify-content: center; }

  .site-footer-links { flex-wrap: wrap; gap: 12px; }
}

/* 2XL: 1536px and above */
@media (min-width: 1536px) {
  :root { --site-max: 1320px; }
}
