:root {
  /* Coaching With Michelle palette: deep plum, terracotta rose, antique gold, and warm ivory. */
  --primary: #4b263f;
  --primary-light: #6b385b;
  --secondary: #c7924f;
  --secondary-light: #d9b06b;
  --gold-deep: #7a4a1f; /* dark antique gold for AA-safe small text */
  --bg-main: #f7f1e8;
  --surface: #efe4d6;
  --card: #fffaf2; /* warm-white card surface */
  --accent: #b86a4b;
  --terracotta: #b86a4b;
  --sage: #8b9a83;
  --text-main: #2b211d;
  --text-light: #5f5148;
  --navy-deep: #2b211d;
  --footer-bg: #2b211d;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.48);
  --glass-border: rgba(255, 255, 255, 0.16);

  /* Refined shadow system */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-soft: 0 18px 42px rgba(75, 38, 63, 0.08);
  --shadow-strong: 0 28px 70px rgba(18, 34, 36, 0.12);
  --shadow-card: 0 20px 48px rgba(18, 34, 36, 0.06);

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;

  /* Modern spacing */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  /* Easing */
  --ease-custom: cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-transition-line {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.72;
}

/*  Reset & Base  */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: clip;
  line-height: 1.75;
}

.skip-link {
  background: var(--navy-deep);
  color: var(--white);
  left: 12px;
  padding: 12px 18px;
  position: fixed;
  top: 12px;
  transform: translateY(-180%);
  transition: transform 0.15s ease;
  z-index: 10000;
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-main);
  margin-top: 0;
  line-height: 1.12;
}

img {
  display: block;
}

/*  Layout Utilities  */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.section-padding {
  padding: 140px 0;
}
.text-center {
  text-align: center;
}

.bg-primary,
.bg-navy {
  color: rgba(255, 255, 255, 0.84);
}

.bg-primary {
  background: var(--primary) !important;
}
.bg-navy {
  background: var(--navy-deep) !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-primary .section-title,
.bg-navy .section-title {
  color: var(--white);
}

.bg-primary .body-text,
.bg-navy .body-text,
.bg-primary p,
.bg-navy p {
  color: rgba(255, 255, 255, 0.78);
}

.bg-primary .feature-card h3,
.bg-primary .product-card h3,
.bg-primary .value-card h3,
.bg-primary .week-card h3,
.bg-primary .price-card h3,
.bg-navy .feature-card h3,
.bg-navy .product-card h3,
.bg-navy .value-card h3,
.bg-navy .week-card h3,
.bg-navy .price-card h3 {
  color: var(--primary);
}

.bg-primary .feature-card p,
.bg-primary .product-card p,
.bg-primary .value-card p,
.bg-primary .week-card p,
.bg-primary .price-card p,
.bg-navy .feature-card p,
.bg-navy .product-card p,
.bg-navy .value-card p,
.bg-navy .week-card p,
.bg-navy .price-card p {
  color: var(--text-light);
}

.bg-primary .product-card-top h3,
.bg-navy .product-card-top h3,
.bg-primary .product-card.featured h3,
.bg-navy .product-card.featured h3 {
  color: var(--white);
}

/*  Glass Utilities  */
.glass {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  border: 1px solid var(--glass-border);
}

.glass-dark {
  background: rgba(30, 46, 48, 0.66);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.glass-dark h1,
.glass-dark h2,
.glass-dark h3,
.glass-dark h4,
.glass-dark h5,
.glass-dark h6 {
  color: var(--white);
}

.glass-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  transition: all 0.4s var(--ease-custom);
}

/*  Dynamic Interaction Layer  */
.interactive-panel,
.interactive-inline,
.interactive-media,
.interactive-chip {
  position: relative;
  isolation: isolate;
  transition:
    transform 0.45s var(--ease-custom),
    box-shadow 0.45s var(--ease-custom),
    border-color 0.35s ease,
    background-color 0.35s ease,
    filter 0.35s ease;
}

.interactive-panel::after,
.interactive-inline::after,
.interactive-media::after,
.interactive-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.interactive-panel:hover::after,
.interactive-panel:focus-visible::after,
.interactive-inline:hover::after,
.interactive-inline:focus-visible::after,
.interactive-media:hover::after,
.interactive-media:focus-visible::after,
.interactive-chip:hover::after,
.interactive-chip:focus-visible::after {
  opacity: 1;
}

.interactive-panel:hover,
.interactive-panel:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.interactive-inline:hover,
.interactive-inline:focus-visible {
  transform: translateY(-4px);
}

.interactive-media:hover,
.interactive-media:focus-visible {
  transform: translateY(-6px) scale(1.01);
}

.interactive-chip:hover,
.interactive-chip:focus-visible {
  transform: translateY(-2px);
}

.interactive-outline:hover,
.interactive-outline:focus-visible {
  border-color: rgba(75, 38, 63, 0.28);
}

/*  Card Utilities  */
.profound-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.35s var(--ease-custom),
    box-shadow 0.35s ease;
}

.profound-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.hover-lift {
  transition:
    transform 0.3s var(--ease-custom),
    box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

/*  Typography Helpers  */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 14px;
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}
.eyebrow--center {
  text-align: center;
}
/* Eyebrows sitting on dark sections keep the brighter gold (gold-on-dark passes AA) */
.bg-primary .eyebrow,
.bg-navy .eyebrow,
.philosophy-section .eyebrow,
.newsletter-section .eyebrow,
.page-hero .eyebrow,
.cta-banner:not(.light) .eyebrow,
.booking-page .eyebrow {
  color: var(--secondary);
}

.section-title {
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.body-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 300;
}

/*  Buttons  */
.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  background: var(--secondary);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-custom),
    box-shadow 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 12px 28px rgba(199, 146, 79, 0.18);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(199, 146, 79, 0.26);
  color: var(--navy-deep);
}

.btn-secondary {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-custom),
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: 0 18px 40px rgba(75, 38, 63, 0.2);
}

/* btn-secondary on dark (hero glass card) */
.hero-glass-card .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.hero-glass-card .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  color: var(--white);
}

/*  Header & Navigation  */
.logo-container {
  flex-shrink: 0;
}

.cwm-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
  text-decoration: none;
}

.cwm-brand-lockup__name {
  max-width: 150px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.05;
}

.main-logo-image {
  height: clamp(44px, 5vw, 62px);
  width: auto;
  display: block;
}

.main-logo-image--brand {
  height: clamp(52px, 6vw, 76px);
  width: clamp(52px, 6vw, 76px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(75, 38, 63, 0.12);
}

.main-logo-image--brand.main-logo-image--light {
  filter: none;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(10px, 1.6vw, 18px) clamp(16px, 4vw, 56px);
  background: transparent;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    padding 0.3s var(--ease-custom),
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.main-header.sticky {
  padding: clamp(8px, 1.2vw, 12px) clamp(16px, 4vw, 56px);
  background: rgba(244, 239, 232, 0.72);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border-bottom-color: rgba(75, 38, 63, 0.08);
  box-shadow: 0 18px 46px rgba(18, 34, 36, 0.08);
}

.main-nav {
  flex-grow: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: clamp(0px, 0.4vw, 6px);
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  display: block;
  padding: 8px clamp(10px, 1vw, 16px);
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: clamp(0.78rem, 0.88vw, 0.9rem);
  letter-spacing: 0.3px;
  border-radius: 0;
  position: relative;
  transition:
    color 0.2s ease,
    transform 0.25s var(--ease-custom);
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0.72;
  transition: transform 0.28s var(--ease-custom);
}

.nav-links li a:hover {
  color: var(--primary);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

.nav-subscribe-link::after,
.nav-admin-link::after {
  display: none;
}

.nav-links li a.active {
  color: var(--primary);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.social-icons a.brand-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
}

.social-icons a.brand-fb {
  background: #1877f2;
  color: var(--white);
}

.social-icons a.brand-group {
  background: #0084ff;
  color: var(--white);
}

.social-icons a.brand-tt {
  background: #000000;
  color: var(--white);
  text-shadow:
    1px 1px 0 #ff0050,
    -1px -1px 0 #00f2fe;
}

.social-icons a i,
.mobile-social-icons a i {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
}

/*  Dropdown  */
.has-dropdown {
  position: relative;
}

.dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow:
    0 16px 48px rgba(75, 38, 63, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 250px;
  z-index: 2000;
  padding: 10px 0;
  white-space: nowrap;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  pointer-events: none;
}

.has-dropdown:hover .dropdown-content,
.has-dropdown:focus-within .dropdown-content,
.has-dropdown.dropdown-open .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Bridge so mouse can reach dropdown */
.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
}

.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--text-main);
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  border-radius: 0;
}

.dropdown-content a:hover {
  background: var(--bg-main);
  color: var(--primary);
  padding-left: 26px;
}

/*  Hero Section  */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 620px;
  background-image: url("images/hero_grounded.png");
  background-size: cover;
  background-position: center 30%;
  background-attachment: scroll;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.home-brand-hero {
  height: min(88vh, 780px);
  min-height: 640px;
  background-position: center;
  justify-content: flex-end;
  padding-bottom: clamp(28px, 7vh, 72px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 241, 232, 0.02) 35%, rgba(43, 33, 29, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 60px;
  max-width: 860px;
  width: 100%;
}

/* Hero glass card */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(30px) saturate(130%);
  -webkit-backdrop-filter: blur(30px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 64px 52px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-align: center;
  width: 100%;
  transition:
    transform 0.6s var(--ease-custom),
    box-shadow 0.6s var(--ease-custom);
}

.hero-brand-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  padding: 0 18px;
}

.hero-brand-panel .hero-label {
  color: var(--secondary);
  background: rgba(43, 33, 29, 0.52);
  border-color: rgba(199, 146, 79, 0.48);
}

.hero-brand-panel .hero-main-title {
  margin-bottom: 16px;
}

.hero-brand-panel .hero-main-subtitle {
  text-shadow: 0 2px 18px rgba(43, 33, 29, 0.38);
}

.hero-brand-panel .btn-secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  background: rgba(43, 33, 29, 0.28);
}

.hero-brand-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.hero-glass-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 46px 120px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.hero-label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(199, 146, 79, 0.2);
  border: 1px solid rgba(199, 146, 79, 0.35);
  color: #fff;
  letter-spacing: 4px;
  font-weight: 700;
  font-size: 0.68rem;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Non-hero usage (e.g. bio section) */
section:not(.hero-section) .hero-label {
  background: rgba(199, 146, 79, 0.12);
  border-color: rgba(199, 146, 79, 0.25);
  color: var(--gold-deep);
}
/* Dark page heroes keep the brighter gold (gold-on-dark passes AA) */
section.page-hero .hero-label {
  color: var(--secondary);
}

.hero-main-title {
  font-size: clamp(3.2rem, 9vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 26px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-main-subtitle {
  font-size: 1.15rem;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/*  Support Bar  */
.support-bar {
  background: var(--navy-deep);
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex: 1;
  justify-content: center;
  transition:
    background-color 0.3s ease,
    transform 0.3s var(--ease-custom);
}

.support-item:last-child {
  border-right: none;
}

.support-item i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  transition:
    color 0.3s ease,
    transform 0.3s var(--ease-custom);
}

.support-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.support-item:hover i {
  color: rgba(255, 255, 255, 0.9);
  transform: scale(1.08);
}

/*  Ecosystem Framework Section  */
.ecosystem-intro {
  padding: 120px 40px;
  background: var(--surface);
}

.ecosystem-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ecosystem-card {
  background: var(--white);
  padding: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(75, 38, 63, 0.05);
}

.ecosystem-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.ecosystem-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.35s var(--ease-custom);
}

.ecosystem-step:hover {
  transform: translateX(6px);
}

.step-num {
  background: var(--bg-main);
  color: var(--primary);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
  border: 1.5px solid rgba(75, 38, 63, 0.2);
  transition:
    transform 0.3s var(--ease-custom),
    box-shadow 0.3s ease;
}

.step-num.clay {
  color: var(--gold-deep);
  border-color: rgba(199, 146, 79, 0.25);
}

.ecosystem-step:hover .step-num {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(75, 38, 63, 0.12);
}

.step-content h4 {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}

.ecosystem-image-wrap {
  position: relative;
}

.ecosystem-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: block;
}

.floating-quote {
  position: absolute;
  bottom: -24px;
  right: -24px;
  padding: 28px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 290px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--secondary);
}

.floating-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/*  Philosophy / Feature Grid Section  */
.philosophy-section {
  padding: 130px 20px;
  text-align: center;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
}

.philosophy-section .section-title {
  color: var(--white);
}
.philosophy-section .body-text {
  color: rgba(255, 255, 255, 0.76);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 34px;
  text-align: left;
  margin-top: 56px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 40px 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top: 0;
  box-shadow: 0 20px 48px rgba(18, 34, 36, 0.08);
  transition:
    transform 0.35s var(--ease-custom),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.feature-card:nth-child(2n) {
  border-top-color: var(--secondary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(75, 38, 63, 0.12);
}

.feature-icon {
  color: var(--secondary);
  font-size: 2rem;
  margin-bottom: 18px;
  display: block;
}

.feature-card:nth-child(odd) .feature-icon {
  color: var(--accent);
}

.feature-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/*  Product Cards  */
.programs-section {
  padding: 140px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.programs-intro {
  text-align: center;
  margin-bottom: 60px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 38px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(75, 38, 63, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-custom),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(75, 38, 63, 0.12);
}

.product-card-top {
  background: var(--primary);
  padding: 30px 30px 26px;
  position: relative;
}

.product-card-top.clay {
  background: var(--secondary);
}
.product-card-top.sage {
  background: var(--sage);
}
.product-card-top.deep {
  background: var(--navy-deep);
}

.product-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.product-card-top h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.product-card-top .tagline {
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  margin-top: 6px;
}

.product-card-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body > p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.product-price {
  font-size: 1.25rem;
  color: var(--gold-deep);
  font-weight: 700;
  margin-bottom: 14px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.product-features li {
  padding: 7px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.product-features li:last-child {
  border-bottom: none;
}
.product-features li i {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-card-actions a {
  display: block;
  padding: 11px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5px;
  transition:
    transform 0.28s var(--ease-custom),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.28s ease;
}

.btn-enroll {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-enroll:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.02);
}

.btn-learn {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
}

.btn-learn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
  transform: scale(1.02);
}

.product-card.featured {
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.featured-banner {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  padding: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.product-card.featured .product-card-top {
  background: transparent;
}
.product-card.featured .product-card-body > p,
.product-card.featured .product-features li {
  color: rgba(255, 255, 255, 0.78);
}
.product-card.featured .product-features li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.product-card.featured .product-features li i,
.product-card.featured .product-price {
  color: rgba(255, 255, 255, 0.9);
}
.product-card.featured .btn-learn {
  background: var(--secondary);
  border-color: var(--secondary);
}
.product-card.featured .btn-learn:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
}
.product-card.featured .btn-enroll {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}
.product-card.featured .btn-enroll:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/*  Bio Section  */
.bio-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.masterclass-intro {
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.bio-photo-wrap {
  position: relative;
}

.bio-photo-wrap:hover .bio-photo {
  transform: scale(1.018);
}

.bio-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
  transition:
    transform 0.55s var(--ease-custom),
    box-shadow 0.45s ease;
}

.bio-photo-caption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

.bio-text h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.bio-text p {
  color: var(--text-main);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.bg-primary .bio-text p,
.bg-navy .bio-text p,
.bg-primary .bio-photo-caption,
.bg-navy .bio-photo-caption {
  color: rgba(255, 255, 255, 0.82);
}

.bg-primary .bio-text h2,
.bg-navy .bio-text h2 {
  color: var(--white);
}

@media (max-width: 1040px) {
  .bio-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .masterclass-intro {
    grid-template-columns: 1fr;
  }
  .bio-photo-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
}

/*  Newsletter  */
.newsletter-section {
  background: var(--navy-deep);
  padding: 130px 40px;
  text-align: center;
}

.newsletter-container {
  max-width: 680px;
  margin: 0 auto;
  color: var(--white);
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 15px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.15);
}

/*  Footer  */
.main-footer {
  background-color: var(--navy-deep);
  padding: 80px 0 40px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid rgba(75, 38, 63, 0.15);
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin: 0 0 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
  transition: color 0.25s ease;
}
.footer-contact a:hover {
  color: var(--secondary);
}

.footer-legal,
.footer-legal a {
  font-size: 0.78rem !important;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.48) !important;
  font-weight: 400;
}

.footer-legal a:hover {
  color: var(--secondary) !important;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.footer-subtitle {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.3px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
  min-width: 300px;
  align-self: center;
}

.footer-banner-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.45s var(--ease-custom),
    box-shadow 0.45s ease;
}

.footer-banner-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

/* Flipbook Promo */
.footer-separator {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 0 40px;
}

.footer-flipbook {
  padding: 0 0 40px;
}

.footer-flipbook-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(199, 146, 79, 0.14), rgba(75, 38, 63, 0.14));
  border: 1px solid rgba(199, 146, 79, 0.25);
  border-radius: 16px;
  padding: 24px 32px;
  flex-wrap: wrap;
}

.footer-flipbook-text {
  flex: 1;
  min-width: 200px;
}

.footer-flipbook-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 4px;
}

.footer-flipbook-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 4px;
}

.footer-flipbook-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
  line-height: 1.5;
}

.footer-flipbook-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(199, 146, 79, 0.35);
  transition:
    transform 0.25s var(--ease-custom),
    background 0.2s,
    box-shadow 0.25s;
}

.footer-flipbook-btn:hover {
  background: #c47a6d;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(199, 146, 79, 0.45);
}

@media (max-width: 640px) {
  .footer-flipbook-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-flipbook-btn {
    width: 100%;
    justify-content: center;
  }
}

/*  Floating Chat Button  */
.chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--secondary);
  color: var(--navy-deep);
  border: none;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(199, 146, 79, 0.45);
  z-index: 100;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(199, 146, 79, 0.55);
}

/*  Page Hero (sub-pages)  */
.page-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(199, 146, 79, 0.18), transparent 24rem),
    linear-gradient(135deg, #4b263f 0%, #6b385b 58%, #815352 100%);
  padding: 120px 40px 96px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.74);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Keep Masterclass CTA helper text legible on its light and plum surfaces. */
.masterclass-journey-copy--light {
  color: rgba(255, 255, 255, 0.88) !important;
}

.masterclass-journey-copy--dark {
  color: rgba(75, 38, 63, 0.86) !important;
}

.page-divider {
  width: 48px;
  height: 3px;
  background: var(--secondary);
  margin: 28px auto 0;
  border-radius: 2px;
}

/*  CTA Banner  */
.cta-banner {
  background: var(--primary);
  padding: 100px 40px;
  text-align: center;
}

.cta-banner.light {
  background: var(--surface);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-banner.dark {
  background: var(--navy-deep);
}

.cta-banner h2 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}

.cta-banner.light h2 {
  color: var(--primary);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-banner.light p {
  color: var(--text-light);
}

.cta-banner:not(.light) .btn-secondary,
.bg-primary .btn-secondary,
.bg-navy .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.cta-banner:not(.light) .btn-secondary:hover,
.bg-primary .btn-secondary:hover,
.bg-navy .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/*  Programs / Guide Steps  */
.guide-section {
  background: var(--bg-main);
  padding: 130px 40px;
}

.guide-inner {
  max-width: 800px;
  margin: 0 auto;
}

.guide-inner h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 50px;
  font-size: 2rem;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.guide-step:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-soft);
}

.guide-step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.guide-step-content h4 {
  color: var(--text-main);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.guide-step-content p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.65;
}

/*  FAQ Section  */
.faq-section {
  padding: 100px 0;
  background: var(--surface);
}

.faq-section .container {
  max-width: 800px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease-custom),
    box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.faq-item::before {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  margin-bottom: 14px;
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1rem;
}

.faq-item .body-text {
  margin: 0;
  font-size: 0.93rem;
}

/*  Booking Page  */
.booking-page {
  background: #fffaf4;
}

.booking-page .main-header {
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid rgba(75, 38, 63, 0.1);
}

.booking-page .main-header.sticky {
  background: rgba(255, 250, 242, 0.98);
  border-bottom-color: rgba(75, 38, 63, 0.14);
}

.booking-page .page-hero {
  background:
    radial-gradient(circle at 83% 8%, rgba(199, 146, 79, 0.26), transparent 24rem),
    linear-gradient(135deg, #2b1725 0%, #4b263f 60%, #2f5d62 100%);
  border-bottom: 4px solid var(--secondary);
}

.booking-page .page-hero .container {
  max-width: 920px;
}

.page-hero--booking {
  padding: 110px 40px 72px;
}

.booking-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.booking-page .page-hero h1 {
  max-width: 12ch;
  margin-inline: auto;
}

.booking-page .page-hero p {
  max-width: 760px;
}

.booking-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px auto 0;
  max-width: 860px;
}

.booking-stat {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.booking-stat span {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.booking-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.booking-page .booking-layout {
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.booking-page .book-info h2,
.booking-page .expect-list li div h3 {
  color: var(--primary);
}

.booking-page .book-info .body-text,
.booking-page .expect-list li div p {
  color: var(--text-light);
}

.booking-page .expect-list li i {
  color: var(--secondary);
}

.booking-page .book-testimonial {
  background: #fff;
  border: 1px solid rgba(75, 38, 63, 0.12);
  border-left: 4px solid var(--secondary);
  box-shadow: 0 18px 44px rgba(43, 33, 29, 0.08);
}

.book-testimonial--dark:hover {
  box-shadow: 0 24px 56px rgba(43, 33, 29, 0.14);
}

.booking-page .book-form-wrap {
  background: #fff;
  border: 1px solid rgba(75, 38, 63, 0.14);
  border-top: 5px solid var(--secondary);
  box-shadow: 0 24px 60px rgba(43, 33, 29, 0.12);
  backdrop-filter: none;
  top: 92px;
}

.booking-page .main-footer {
  background: linear-gradient(180deg, rgba(22, 16, 26, 0.2) 0%, #16101a 100%);
}

.booking-page .footer-title,
.booking-page .footer-subtitle {
  color: var(--white);
}

.booking-page .footer-links a {
  color: rgba(255, 255, 255, 0.84);
}

.booking-sidebar {
  margin-bottom: 18px;
}

.booking-sidebar-kicker,
.booking-followup-kicker {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.booking-sidebar h3,
.booking-followup-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0 0 10px;
}

.booking-sidebar-copy,
.booking-followup-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.booking-followup {
  padding: 0 40px 92px;
  background: #fffaf4;
}

.booking-followup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-followup-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(75, 38, 63, 0.12);
  box-shadow: 0 18px 44px rgba(43, 33, 29, 0.08);
}

.booking-followup-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.book-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.book-info h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.expect-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.expect-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.expect-list li i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.expect-list li div h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.expect-list li div p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.book-testimonial {
  background: var(--surface);
  border-left: 4px solid var(--secondary);
  padding: 20px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 10px;
  transition:
    transform 0.35s var(--ease-custom),
    box-shadow 0.35s ease;
}

.book-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.book-form-wrap {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}

.booking-page .calendly-inline-widget {
  border-radius: 24px;
  overflow: hidden;
}

.form-group {
  margin-bottom: 26px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 9px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-main);
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  color: var(--text-main);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75, 38, 63, 0.1);
  background: var(--white);
}

.trust-section {
  background: var(--surface);
  padding: 60px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

/*  Curriculum & Pricing  */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.week-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-xs);
  transition:
    transform 0.3s var(--ease-custom),
    box-shadow 0.3s ease;
}

.week-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.week-num {
  font-size: 0.72rem;
  color: var(--gold-deep);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.price-card {
  background: var(--white);
  padding: 52px 44px;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s var(--ease-custom),
    box-shadow 0.4s ease;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.price-card.featured {
  border: 2px solid var(--secondary);
  box-shadow: 0 16px 48px rgba(199, 146, 79, 0.18);
}

.price-val {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  flex: 1;
}

.price-features li {
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-light);
}

.price-features i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.price-card > .btn-primary,
.price-card > .btn-secondary {
  margin-top: auto;
}

/*  VIP Specifics  */
.section-luxury {
  padding: 130px 40px;
  background: var(--surface);
}

.main-header--transparent {
  position: absolute;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  z-index: 100;
}

.main-header--transparent .nav-links li a {
  color: rgba(255, 255, 255, 0.9);
}

.main-header--transparent .nav-links li a:hover,
.main-header--transparent .nav-links li a.active {
  color: var(--white);
}

.main-header--transparent .social-icons a {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.main-header--transparent .hamburger span {
  background: var(--white);
}
.main-header--transparent .hamburger {
  border-color: rgba(255, 255, 255, 0.4);
}

.main-logo-image--light {
  filter: brightness(0) invert(1);
}

@media (max-width: 1040px) {
  .main-header--transparent {
    position: sticky;
    background: rgba(244, 239, 232, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .main-header--transparent .nav-links li a {
    color: var(--text-main);
  }
  .main-header--transparent .hamburger span {
    background: var(--primary);
  }
  .main-header--transparent .hamburger {
    border-color: var(--primary);
  }
  .main-logo-image--light {
    filter: none;
  }

  .booking-page .main-header--transparent {
    background: rgba(22, 16, 26, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .booking-page .main-header--transparent .nav-links li a {
    color: var(--white);
  }
  .booking-page .main-header--transparent .hamburger span {
    background: var(--white);
  }
  .booking-page .main-header--transparent .hamburger {
    border-color: rgba(255, 255, 255, 0.4);
  }
  .booking-page .main-nav {
    background: rgba(255, 250, 242, 0.98);
    border-bottom-color: rgba(75, 38, 63, 0.12);
  }
  .booking-page .main-nav .nav-links li a {
    color: var(--text-main);
  }
}

.vip-hero {
  height: 100vh;
  background-image: url("images/vip-experience.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.vip-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  max-width: 900px;
}

.invitation-card {
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(24px);
  padding: 60px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  transition:
    transform 0.45s var(--ease-custom),
    border-color 0.35s ease,
    box-shadow 0.45s ease;
}

.invitation-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.24);
}

.luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.vip-tier-card {
  background: var(--white);
  padding: 36px 40px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-xs);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.vip-tier-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

/*  Values Section  */
.values-section {
  background: var(--surface);
  padding: 130px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.35s var(--ease-custom),
    box-shadow 0.35s ease;
  height: 100%;
}

.value-card:nth-child(2n) {
  border-top-color: var(--secondary);
}
.value-card:nth-child(3n) {
  border-top-color: var(--accent);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.value-card i {
  font-size: 1.7rem;
  color: var(--secondary);
  margin-bottom: 18px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.72;
}

/*  Mission Section  */
.mission-section {
  padding: 130px 40px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--text-main);
  line-height: 1.85;
  padding: 44px 48px;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--secondary);
  text-align: left;
  margin-bottom: 40px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.45s var(--ease-custom),
    box-shadow 0.45s ease;
}

.mission-quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

/*  Program Hero  */
.program-hero {
  height: 70vh;
  min-height: 500px;
  background-image: url("images/fine-to-done-hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.55));
}

.program-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  color: var(--white);
}

/*  Pricing Section  */
.pricing-section {
  padding: 100px 40px;
  background: var(--bg-main);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: content-box;
}

/*  Card Side Images  */
.card {
  width: 300px;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.card-image-left {
  background-image: url("images/philosophy_grounded.png");
}
.card-image-right {
  background-image: url("images/philosophy_grounded.png");
  transform: scaleX(-1);
}

.card-overlay {
  background: rgba(244, 239, 232, 0.85);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  transform: scaleX(1) !important;
}

.card-image-right .card-text {
  transform: scaleX(-1);
}

.card-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  line-height: 1.55;
  text-align: center;
  font-style: italic;
}

/*  Philosophy Content  */
.philosophy-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-center {
  flex: 1;
  max-width: 500px;
}

.subsection-title {
  color: var(--text-main);
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.35;
}

/*  Hamburger Button  */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1.5px solid rgba(75, 38, 63, 0.3);
  border-radius: var(--radius-sm);
  padding: 9px 10px;
  cursor: pointer;
  z-index: 1100;
  flex-shrink: 0;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  transition: border-color 0.25s ease;
}

.hamburger:hover {
  border-color: var(--primary);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/*  Responsive — Tablet / Compact Header 1040px  */
@media (max-width: 1040px) {
  .hamburger {
    display: flex;
  }

  .main-header {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    padding: 10px clamp(14px, 3.6vw, 28px);
    position: sticky;
    top: 0;
  }

  .main-header.sticky {
    padding: 8px clamp(14px, 3.6vw, 28px);
  }
  .main-logo-image {
    height: clamp(40px, 6vw, 50px);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(244, 239, 232, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 8px 0 max(16px, env(safe-area-inset-bottom));
    flex-grow: unset;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.nav-open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  .nav-links > li > a {
    display: block;
    padding: 13px clamp(18px, 6vw, 32px);
    font-size: clamp(0.94rem, 2.8vw, 1rem);
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-links > li > a:hover {
    background: rgba(75, 38, 63, 0.07);
    border-radius: 0;
  }

  /* Mobile dropdown */
  .dropdown-content {
    position: static !important;
    display: none;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: var(--surface) !important;
    padding: 0 !important;
    min-width: 0 !important;
    white-space: normal !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease !important;
  }

  .dropdown-content.mobile-open {
    display: block;
    max-height: 500px;
  }

  .dropdown-content a {
    padding: 12px clamp(32px, 10vw, 48px) !important;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0 !important;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .has-dropdown::after {
    display: none;
  }

  /* Hide header social icons; show mobile social icons inside nav */
  .main-header > .social-icons {
    display: none;
  }

  .mobile-social-icons {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    padding: 18px clamp(18px, 6vw, 32px) 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .mobile-social-icons a.brand-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
  }
  .mobile-social-icons a.brand-fb {
    background: #1877f2;
    color: var(--white);
  }
  .mobile-social-icons a.brand-group {
    background: #0084ff;
    color: var(--white);
  }
  .mobile-social-icons a.brand-tt {
    background: #000;
    color: var(--white);
    text-shadow:
      1px 1px 0 #ff0050,
      -1px -1px 0 #00f2fe;
  }

  .mobile-social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  }

  /* Section spacing */
  .section-padding {
    padding: 64px 0;
  }
  .page-hero {
    padding: 64px 24px 48px;
  }
  .ecosystem-intro {
    padding: 64px 24px;
  }
  .cta-banner {
    padding: 64px 24px;
  }
  .guide-section {
    padding: 64px 24px;
  }
  .newsletter-section {
    padding: 72px 24px;
  }

  /* Stacking layouts */
  .philosophy-content {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .luxury-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bio-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bio-photo-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  .book-layout {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }

  .booking-stats,
  .booking-followup-grid {
    grid-template-columns: 1fr;
  }

  .page-hero--booking {
    padding: 92px 24px 56px;
  }

  .booking-followup {
    padding: 0 24px 72px;
  }

  .book-form-wrap {
    position: static;
    padding: 32px 24px;
  }

  .floating-quote {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }

  /* Support bar */
  .support-bar {
    flex-direction: column;
    gap: 0;
  }
  .support-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
  }
  .support-item:last-child {
    border-bottom: none;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-left {
    align-items: center;
  }
  .footer-right {
    justify-content: center;
  }
  .footer-banner-image {
    max-width: 280px;
    margin-top: 0;
  }

  /* Grid adjustments */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .price-card {
    max-width: 100%;
  }
  .pricing-section {
    padding: 60px 20px;
  }
  .faq-section {
    padding: 60px 0;
  }
  .ecosystem-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 32px;
  }

  /* Chat button - smaller on tablet */
  .chat-btn {
    padding: 11px 22px;
    font-size: 0.82rem;
  }

  /* Calendly widget overflow */
  .calendly-inline-widget {
    min-width: 0 !important;
  }

  /* Product card buttons — prevent cramping */
  .product-card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .product-card-actions a {
    font-size: 0.75rem;
    padding: 10px 8px;
  }

  /* Substack embed */
  .substack-container {
    max-width: 100%;
  }
}

/*  Responsive — Mobile 560px  */
@media (max-width: 560px) {
  .main-header {
    padding: 12px 16px;
  }
  .main-logo-image {
    height: 44px;
  }
  .cwm-brand-lockup {
    gap: 9px;
  }
  .cwm-brand-lockup__name {
    max-width: 116px;
    font-size: 0.88rem;
  }

  .section-padding {
    padding: 52px 0;
  }
  .page-hero {
    padding: 52px 16px 36px;
  }
  .page-hero h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.15rem) !important;
  }
  .page-hero p {
    font-size: 1rem;
  }

  .cta-banner {
    padding: 52px 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .program-hero {
    height: 55vh;
    min-height: 380px;
  }
  .program-hero h1 {
    font-size: 2.4rem !important;
  }

  .hero-section {
    height: auto;
    min-height: min(680px, 88svh);
    padding: 72px 0 48px;
  }
  .hero-content {
    padding: 24px 18px;
  }
  .hero-glass-card {
    padding: clamp(28px, 8vw, 36px) clamp(18px, 6vw, 24px);
  }
  .hero-main-title {
    font-size: clamp(2.1rem, 11vw, 3rem) !important;
  }
  .hero-main-subtitle {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .mission-quote {
    padding: 28px 22px;
    font-size: 1.1rem;
  }
  .invitation-card {
    padding: 36px 24px;
  }

  .book-form-wrap {
    padding: 24px 18px;
  }
  .book-layout {
    padding: 36px 16px;
  }

  .feature-card {
    padding: 30px 26px;
  }
  .value-card {
    padding: 30px 24px;
  }
  .profound-card {
    padding: 30px 24px;
  }

  .programs-section {
    padding: 60px 20px;
  }

  /* Stack product card buttons vertically */
  .product-card-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .product-card-actions a {
    font-size: 0.82rem;
    padding: 12px 16px;
  }

  /* Full-width buttons */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 100%;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }

  /* Hero actions stack on small screens */
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  /* Ecosystem card tighter */
  .ecosystem-card {
    padding: 28px 20px;
  }

  /* Chat button — icon only on very small screens */
  .chat-btn {
    bottom: 14px;
    right: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 0;
    justify-content: center;
    gap: 0;
  }
  .chat-btn i {
    font-size: 1rem;
  }

  /* Bio text */
  .bio-text h2 {
    font-size: 2rem;
  }
  .bio-text p {
    font-size: 0.95rem;
  }

  /* Footer tighter */
  .main-footer {
    padding: 60px 0 30px;
  }
  .footer-content {
    gap: 28px;
  }
  .footer-banner-image {
    max-width: 220px;
  }
  .footer-right {
    min-width: 0;
  }

  /* Pricing */
  .price-card {
    padding: 36px 28px;
  }
  .price-val {
    font-size: 2.2rem;
  }
}

/*  Responsive — Extra-Small Phones 400px  */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }
  .main-header {
    padding: 10px 12px;
  }
  .main-logo-image {
    height: 40px;
  }

  .hero-glass-card {
    padding: 28px 18px;
  }
  .hero-main-title {
    font-size: clamp(1.95rem, 10vw, 2.2rem) !important;
  }
  .hero-main-subtitle {
    font-size: 0.92rem;
  }
  .hero-label {
    font-size: 0.6rem;
    letter-spacing: 2.5px;
    padding: 5px 14px;
  }

  .page-hero h1 {
    font-size: 1.7rem !important;
  }
  .page-hero p {
    font-size: 0.92rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
  .body-text {
    font-size: 0.92rem;
  }

  .ecosystem-card {
    padding: 22px 16px;
  }
  .step-content h4 {
    font-size: 0.92rem;
  }
  .step-content p {
    font-size: 0.85rem;
  }

  .feature-card {
    padding: 24px 20px;
  }
  .feature-card h3 {
    font-size: 1.05rem;
  }
  .feature-icon {
    font-size: 1.6rem;
  }

  .product-card-top {
    padding: 22px 20px 18px;
  }
  .product-card-top h3 {
    font-size: 1.2rem;
  }
  .product-card-body {
    padding: 22px 20px;
  }
  .product-card-body > p {
    font-size: 0.88rem;
  }

  .faq-item {
    padding: 22px 20px;
  }
  .guide-step {
    padding: 22px 18px;
    gap: 16px;
  }

  .chat-btn {
    bottom: 14px;
    right: 12px;
    width: 52px;
    height: 52px;
    padding: 0;
    font-size: 0;
    justify-content: center;
    gap: 0;
  }
  .chat-btn i {
    font-size: 1rem;
  }

  .vip-hero-content {
    padding: 24px 16px;
  }
  .invitation-card {
    padding: 28px 18px;
  }

  .book-layout {
    padding: 28px 12px;
  }
  .book-form-wrap {
    padding: 20px 14px;
  }
  .booking-sidebar h3,
  .booking-followup-card h3 {
    font-size: 1.1rem;
  }

  .mission-quote {
    padding: 22px 18px;
    font-size: 1rem;
  }
}

/*  Scroll Reveal Animations  */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 0.7s var(--ease-custom),
    transform 0.7s var(--ease-custom),
    filter 0.7s var(--ease-custom);
  filter: blur(8px);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* Stagger delays for grid children */
.product-card:nth-child(2) {
  transition-delay: 0.08s;
}
.product-card:nth-child(3) {
  transition-delay: 0.16s;
}
.value-card:nth-child(2) {
  transition-delay: 0.08s;
}
.value-card:nth-child(3) {
  transition-delay: 0.16s;
}
.value-card:nth-child(4) {
  transition-delay: 0.24s;
}
.value-card:nth-child(5) {
  transition-delay: 0.32s;
}
.value-card:nth-child(6) {
  transition-delay: 0.4s;
}
.feature-card:nth-child(2) {
  transition-delay: 0.08s;
}
.feature-card:nth-child(3) {
  transition-delay: 0.16s;
}
.feature-card:nth-child(4) {
  transition-delay: 0.24s;
}
/*  Substack Section  */
.substack-section {
  padding: 100px 20px;
  background: var(--surface);
  text-align: center;
}

.substack-container {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.4s var(--ease-custom),
    box-shadow 0.4s ease;
}

.substack-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(75, 38, 63, 0.15);
}

.substack-container iframe {
  width: 100% !important;
  height: 320px !important;
  border: none !important;
  display: block;
}

/* Header Subscribe Link */
.nav-subscribe-link {
  background: var(--secondary) !important;
  color: var(--navy-deep) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease-custom) !important;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(199, 146, 79, 0.25);
}

.nav-subscribe-link:hover {
  background: var(--secondary-light) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(199, 146, 79, 0.35);
  color: var(--navy-deep) !important;
}

/* Admin Portal Link */
.nav-admin-link {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  transition: all 0.3s var(--ease-custom) !important;
  margin-left: 10px;
  box-shadow: 0 4px 12px rgba(75, 38, 63, 0.22);
}

.nav-admin-link:hover {
  background: #235056 !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(75, 38, 63, 0.28);
  color: var(--white) !important;
}

/* Footer Substack */
.footer-substack {
  margin-bottom: 30px;
  width: 100%;
}

.footer-substack iframe {
  width: 100% !important;
  max-width: 480px;
  height: 320px !important;
  border: none !important;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .nav-subscribe-link {
    margin-left: 0;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
  }

  .nav-admin-link {
    margin-left: 0;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
  }
}

/* ── Ticket/Registration Modal ── */
.ticket-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ticket-modal-overlay.open {
  display: flex;
}
.ticket-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.35s var(--ease-custom);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.ticket-modal-header {
  background: var(--primary);
  border-radius: 20px 20px 0 0;
  padding: 32px 40px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.ticket-modal-header h2 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.ticket-modal-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}
.ticket-modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.ticket-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}
.ticket-modal-body {
  padding: 40px;
}

/* ── Registration Form ── */
.register-form .form-group {
  margin-bottom: 16px;
  text-align: left;
}
.register-form label {
  color: var(--primary);
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.register-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.25s ease;
}
.register-form input:focus-visible {
  border-color: var(--primary);
  outline: 3px solid rgba(75, 38, 63, 0.35);
  outline-offset: 2px;
}
.register-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--secondary);
  color: var(--navy-deep);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 8px 20px rgba(199, 146, 79, 0.25);
}
.register-form .submit-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199, 146, 79, 0.35);
}
.register-form .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── Zoom Confirmation & Upsell ── */
.zoom-card {
  text-align: center;
}
.zoom-check-icon {
  width: 72px;
  height: 72px;
  background: #e8f4f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--primary);
}
.zoom-link-block {
  background: var(--bg-main);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  margin-top: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.zoom-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.zoom-link-block a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-all;
}
.zoom-meta {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 14px;
  line-height: 1.8;
}
.zoom-join-btn {
  display: block;
  background: var(--secondary);
  color: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  margin-top: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.zoom-join-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .ticket-modal-header {
    padding: 24px 28px;
  }
  .ticket-modal-body {
    padding: 28px;
  }
  .ticket-modal-header h2 {
    font-size: 1.3rem;
  }
}

/* ── Persistent Legal Disclaimer ── */
.legal-disclaimer-overlay {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 380px;
  max-width: calc(100vw - 56px);
  background: rgba(244, 239, 232, 0.95);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  border: 2px solid var(--secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  z-index: 99999; /* Float above everything including the chat button */
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    opacity 0.4s var(--ease-custom),
    transform 0.4s var(--ease-custom),
    visibility 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.legal-disclaimer-overlay.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.legal-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(75, 38, 63, 0.12);
  padding-bottom: 14px;
}

.legal-disclaimer-header i {
  color: var(--secondary);
  font-size: 1.4rem;
}

.legal-disclaimer-header h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

.legal-disclaimer-body {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-light);
}

.legal-disclaimer-body p {
  margin: 0;
}

.legal-disclaimer-btn {
  width: 100%;
  padding: 13px 28px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(199, 146, 79, 0.22);
  transition: all 0.3s var(--ease-custom);
  text-align: center;
}

.legal-disclaimer-btn:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(199, 146, 79, 0.35);
}

/* Mobile responsive adjustments */
@media (max-width: 600px) {
  .legal-disclaimer-overlay {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-width: 2px 0 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding: 28px 24px 36px;
    transform: translateY(100%);
  }
  .legal-disclaimer-overlay.show {
    transform: translateY(0);
  }
}

.main-logo-image--brand {
  width: clamp(52px, 6vw, 76px);
  height: clamp(52px, 6vw, 76px);
}

@media (max-width: 768px) {
  .main-logo-image--brand {
    width: 46px;
    height: 46px;
  }
}
/* Conversion-focused public journey */
.conversion-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 100px) 24px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(199, 146, 79, 0.22), transparent 28rem),
    linear-gradient(135deg, #4b263f 0%, #6b385b 56%, #815352 100%);
}

.conversion-hero--compact {
  padding-block: clamp(64px, 7vw, 96px);
}

.conversion-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
}

.conversion-hero h1 {
  max-width: 800px;
  margin: 12px 0 24px;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.conversion-hero--compact h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.conversion-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.75;
}

.conversion-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
}

.conversion-text-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.conversion-note {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.conversion-note h2 {
  margin-top: 0;
  color: #fff;
  font-size: 1.7rem;
}
.conversion-note p {
  font-size: 1rem;
}

.conversion-welcome-video {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  background: rgba(31, 16, 28, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.conversion-welcome-video video {
  display: block;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #2b211d;
}

.conversion-welcome-video figcaption {
  padding: 20px 22px 22px;
}

.conversion-welcome-video figcaption .eyebrow {
  margin: 0 0 7px;
  color: #e6bc79;
}

.conversion-welcome-video figcaption p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.6;
}

.masterclass-welcome-video {
  padding: clamp(64px, 8vw, 112px) 24px;
  background: var(--bg-main);
}

.masterclass-welcome-video__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.masterclass-welcome-video__copy h2 {
  max-width: 620px;
  margin: 12px 0 20px;
  color: var(--primary);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.masterclass-welcome-video__copy > p:not(.hero-label) {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--text-light);
  font-size: 1.12rem;
  line-height: 1.75;
}

.masterclass-welcome-video__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 38, 63, 0.15);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(75, 38, 63, 0.14);
}

.masterclass-welcome-video__media video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 560px;
  object-fit: cover;
  background: #2b211d;
}

.masterclass-welcome-video__media figcaption {
  padding: 14px 18px 16px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-grid,
.audience-grid,
.method-grid,
.outcome-grid,
.offer-ladder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.scene-card,
.audience-card,
.method-card,
.outcome-card,
.offer-step {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(75, 38, 63, 0.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(43, 33, 29, 0.07);
}

.offer-ladder {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.offer-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  border: 0;
  background: linear-gradient(155deg, #fff 0%, #fffaf2 100%);
  box-shadow: 0 16px 38px rgba(75, 38, 63, 0.1);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}
.offer-step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--secondary);
}
.offer-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(75, 38, 63, 0.18);
}
.offer-step--masterclass::before {
  background: var(--accent);
}
.offer-step--program::before {
  background: var(--primary-light);
}
.offer-step--vip::before {
  background: linear-gradient(90deg, var(--gold-deep), var(--secondary-light));
}
.offer-step__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.offer-step__number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.offer-step__price {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offer-step .product-label {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.offer-step h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  color: var(--primary);
}
.offer-step > p:not(.product-label) {
  color: var(--text-light);
  line-height: 1.65;
}
.offer-step__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
  padding: 13px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
  text-decoration: none;
  transition:
    background 180ms ease,
    transform 180ms ease;
}
.offer-step__cta:hover,
.offer-step__cta:focus-visible {
  color: #fff;
  background: var(--gold-deep);
  transform: translateX(3px);
}

.scene-card h3,
.audience-card h3,
.method-card h3,
.outcome-card h3,
.offer-step h3 {
  margin-top: 0;
}

.audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.method-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: method;
}
.method-card {
  position: relative;
  padding-top: 70px;
  counter-increment: method;
}
.method-card::before {
  content: "0" counter(method);
  position: absolute;
  top: 24px;
  left: 30px;
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.conversion-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.conversion-section-heading h2 {
  margin: 10px 0 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.conversion-section-heading p {
  font-size: 1.1rem;
  line-height: 1.75;
}

.conversion-band {
  background: #f7f1e8;
}
.conversion-band--dark {
  color: #fff;
  background: linear-gradient(135deg, #4b263f 0%, #6b385b 58%, #815352 100%);
}
.conversion-band--dark h2,
.conversion-band--dark h3 {
  color: #fff;
}
.conversion-band--dark p {
  color: rgba(255, 255, 255, 0.78);
}
.conversion-band--dark .outcome-card {
  background: #fffaf2;
  border-color: rgba(255, 255, 255, 0.34);
}
.conversion-band--dark .outcome-card h3 {
  color: var(--primary);
}
.conversion-band--dark .outcome-card p {
  color: var(--text-light);
}

.conversion-note .btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: #fff;
}
.conversion-note .btn-secondary:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.payment-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.payment-plan {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(75, 38, 63, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 45px rgba(43, 33, 29, 0.07);
}
.payment-plan--featured {
  border: 2px solid var(--secondary);
}
.payment-plan__label {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.payment-plan h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1.2;
}
.payment-plan p:not(.payment-plan__label) {
  margin: 0;
  color: var(--text-light);
  line-height: 1.65;
}
.payment-plan .btn-primary,
.payment-plan .btn-secondary {
  width: 100%;
  margin-top: auto;
  text-align: center;
}
.payment-plan-note {
  max-width: 780px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--text-light);
}

/* Wildly Alive editorial story system */
.wildly-alive-story {
  --alive-image-path-y: 65%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 680px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #301b2c 0%, var(--primary) 58%, #5f314f 100%);
}

.wildly-alive-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 120px) clamp(28px, 6vw, 96px);
}

.wildly-alive-story h2 {
  max-width: 780px;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2.55rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.wildly-alive-story__lead,
.wildly-alive-story__support {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.7;
}

.wildly-alive-story__lead {
  margin: 0;
}

.wildly-alive-story__support {
  margin: 30px 0 0;
}

.wildly-alive-story__media {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #2b211d;
}

.wildly-alive-story__media::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: var(--alive-image-path-y);
  left: -2px;
  width: 108%;
  height: 2px;
  background: var(--secondary-light);
  clip-path: inset(0 100% 0 0);
  transform: rotate(-4deg);
  transform-origin: left center;
  transition: clip-path 1.35s 0.7s var(--ease-custom);
}

.wildly-alive-story--masterclass {
  --alive-image-path-y: 48%;
}

.wildly-alive-story.revealed .wildly-alive-story__media::after {
  clip-path: inset(0);
}

.wildly-alive-story__media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-custom);
}

.wildly-alive-story.revealed .wildly-alive-story__media img {
  transform: scale(1.025);
}

.alive-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 50px 0 42px;
  padding: 34px 0 0;
  list-style: none;
}

.alive-path::before,
.alive-path::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
}

.alive-path::before {
  background: rgba(255, 255, 255, 0.2);
}

.alive-path::after {
  background: var(--secondary-light);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.35s 0.2s var(--ease-custom);
}

.wildly-alive-story.revealed .alive-path::after {
  transform: scaleX(1);
}

.alive-path li {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.alive-path li::before {
  content: "";
  position: absolute;
  top: -33px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 2px solid var(--secondary-light);
  border-radius: 50%;
  background: var(--primary);
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.wildly-alive-story.revealed .alive-path li::before {
  background: var(--secondary-light);
  transform: scale(1.08);
}

.wildly-alive-story .btn-primary {
  align-self: flex-start;
}

.wildly-alive-story__action {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin-top: 34px;
}

.wildly-alive-story__action span {
  color: var(--secondary-light);
  font-size: 0.9rem;
  font-weight: 700;
}

.wildly-alive-bridge {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--surface);
}

.wildly-alive-bridge__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(300px, 1.1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.wildly-alive-bridge .eyebrow {
  margin: 8px 0 0;
}

.wildly-alive-bridge h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.wildly-alive-bridge p:not(.eyebrow) {
  margin: 6px 0 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.85;
}

.wildly-alive-bridge--program {
  background: #fff;
}

.wildly-alive-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(28px, 4vw, 54px) 0 clamp(34px, 5vw, 62px);
}

.wildly-alive-gallery__image {
  position: relative;
  min-height: clamp(300px, 33vw, 500px);
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #2b211d;
  box-shadow: 0 24px 60px rgba(43, 33, 29, 0.16);
}

.wildly-alive-gallery__image:nth-child(2) {
  min-height: clamp(240px, 27vw, 420px);
  align-self: end;
}

.wildly-alive-gallery--single {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: center;
}

.wildly-alive-gallery--single .wildly-alive-gallery__image:nth-child(2),
.wildly-alive-gallery--single .wildly-alive-gallery__image {
  min-height: clamp(330px, 38vw, 520px);
}

.wildly-alive-gallery__copy {
  padding: clamp(12px, 2vw, 28px);
}

.wildly-alive-gallery__copy .eyebrow {
  margin: 0 0 16px;
}

.wildly-alive-gallery__copy h2 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.15rem, 3.6vw, 3.65rem);
  line-height: 1.05;
}

.wildly-alive-gallery__copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.wildly-alive-gallery__image::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(48, 27, 44, 0.25));
  pointer-events: none;
}

.wildly-alive-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-custom);
}

.wildly-alive-gallery__image:hover img {
  transform: scale(1.035);
}

.wildly-alive-gallery__image figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  background: var(--secondary-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.footer-social-links i {
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
}

.footer-social-links .footer-social-link {
  border: 0;
  color: #fff;
}

.footer-social-links .footer-social-link--instagram {
  background: radial-gradient(circle at 31% 106%, #ffd776 0 10%, #f56040 30%, #c13584 58%, #5851db 100%);
}

.footer-social-links .footer-social-link--facebook,
.footer-social-links .footer-social-link--facebook-group {
  background: #1877f2;
}

.footer-social-links .footer-social-link--tiktok {
  background: #010101;
  text-shadow:
    1px 1px 0 #fe2c55,
    -1px -1px 0 #25f4ee;
}

.footer-social-links .footer-social-link:hover,
.footer-social-links .footer-social-link:focus-visible {
  background: var(--secondary-light);
  color: var(--navy-deep);
  text-shadow: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(43, 33, 29, 0.1);
}

.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  font-weight: 700;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(75, 38, 63, 0.28);
  border-radius: 9px;
  padding: 14px 16px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(199, 146, 79, 0.3);
  border-color: var(--gold-deep);
}
.consent-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
}
.consent-field input {
  margin-top: 5px;
}
.form-status {
  min-height: 1.5em;
  font-weight: 600;
}

.conversion-footer {
  padding: 36px 24px;
  color: #fff;
  background: #211820;
}
.conversion-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.conversion-footer a {
  color: #fff;
}

@media (max-width: 900px) {
  .conversion-hero__inner,
  .contact-layout,
  .wildly-alive-story,
  .wildly-alive-bridge__inner,
  .masterclass-welcome-video__inner {
    grid-template-columns: 1fr;
  }

  .conversion-welcome-video {
    max-width: min(100%, 460px);
  }

  .wildly-alive-story {
    min-height: 0;
  }

  .wildly-alive-story__media,
  .wildly-alive-story__media img {
    min-height: clamp(360px, 62vw, 560px);
  }

  .wildly-alive-bridge__inner {
    gap: 22px;
  }

  .wildly-alive-gallery {
    grid-template-columns: 1fr;
    padding-top: 10px;
  }

  .wildly-alive-gallery--single {
    grid-template-columns: 1fr;
  }

  .wildly-alive-gallery__copy {
    padding: 10px 0 0;
  }

  .wildly-alive-gallery__image,
  .wildly-alive-gallery__image:nth-child(2) {
    min-height: clamp(300px, 68vw, 500px);
  }

  .wildly-alive-bridge p:not(.eyebrow) {
    max-width: 720px;
  }
  .scene-grid,
  .outcome-grid,
  .offer-ladder {
    grid-template-columns: 1fr 1fr;
  }
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .payment-plan-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .scene-grid,
  .audience-grid,
  .method-grid,
  .outcome-grid,
  .offer-ladder {
    grid-template-columns: 1fr;
  }
  .payment-plan-grid {
    grid-template-columns: 1fr;
  }
  .conversion-footer__inner {
    display: grid;
  }

  .wildly-alive-story__content {
    padding: 70px 24px 64px;
  }

  .wildly-alive-story h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .alive-path {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-block: 40px 34px;
    padding: 0 0 0 34px;
  }

  .alive-path::before,
  .alive-path::after {
    top: 4px;
    left: 7px;
    width: 2px;
    height: calc(100% - 8px);
  }

  .alive-path::after {
    transform: scaleY(0);
    transform-origin: center top;
  }

  .wildly-alive-story.revealed .alive-path::after {
    transform: scaleY(1);
  }

  .alive-path li::before {
    top: 3px;
    left: -33px;
  }

  .wildly-alive-story__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .wildly-alive-story__media,
  .wildly-alive-story__media img {
    min-height: 340px;
  }

  .wildly-alive-story__media::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .alive-path::after {
    transform: none !important;
  }

  .wildly-alive-story__media img {
    transform: none !important;
  }

  .wildly-alive-story__media::after {
    clip-path: inset(0) !important;
  }
}
