/* =================================================================
   POWER WITH POISE — style.css
================================================================= */

/* ============================================================
   DESIGN TOKENS — lighter dark palette
============================================================ */
:root {
  --primary-black: #1c1c1c;
  /* was #0a0a0a */
  --charcoal: #2a2a2a;
  /* was #1a1a1a */
  --deep-red: #ff2f2f;
  /* was #5c1a1a */
  --wine: #ff2f2f;
  /* was #7d2828 */
  --gold: #d4af37;
  --nude: #c9ada7;
  --off-white: #f2f2f2;
  --accent-red: #ff2f2f;
  /* was #8b0000 */
  --accent-red-hover: rgba(255, 47, 47, 0.12);
  /* was #a00000 */
  --accent-red-light: rgba(255, 47, 47, 0.05);
  /* was #8b00001a */
  --accent-red-border: rgba(255, 47, 47, 0.2);
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--primary-black);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.3px;
  font-size: 1rem;
}

/* ============================================================
   GRAIN TEXTURE OVERLAY
============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='noise'><feTurbulence baseFrequency='0.9' numOctaves='4'/></filter><rect width='100%' height='100%' filter='url(%23noise)' opacity='0.03'/></svg>");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* ============================================================
   CUSTOM SCROLLBAR
============================================================ */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--wine);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-red);
}

/* ============================================================
   PAGE INTRO OVERLAY
============================================================ */
.page-intro {
  position: fixed;
  inset: 0;
  background: var(--primary-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: piCurtain 0.9s cubic-bezier(0.76, 0, 0.24, 1) 1.3s forwards;
}

.pi-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.pi-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0;
  animation: piFadeUp 0.9s ease 0.2s forwards;
}

.pi-logo {
  height: clamp(96px, 16vw, 180px);
  width: auto;
  display: block;
  opacity: 0;
  animation: piFadeUp 0.9s ease 0.2s forwards;
}

.pi-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: piRuleExpand 0.7s ease 0.8s forwards;
}

.pi-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: piFadeUp 0.9s ease 0.2s forwards;
}

@keyframes piCurtain {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes piFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes piRuleExpand {
  to {
    width: clamp(100px, 18vw, 200px);
  }
}

@keyframes piFadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================================
   NAVIGATION
============================================================ */
.navbar {
  background: rgba(28, 28, 28, 0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.3s ease;
  z-index: 1050;
}

.navbar.scrolled {
  padding: 0.85rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--off-white) !important;
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--gold) !important;
}

.navbar-logo {
  height: 140px;
  width: auto;
  display: block;
}

.nav-link {
  color: var(--nude) !important;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 1.8px;
  margin: 0 0.75rem;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent-red);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active-link {
  color: var(--accent-red) !important;
}

.nav-link:hover::after,
.nav-link.active-link::after {
  width: 100%;
}

.navbar-toggler {
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.65rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-luxury {
  background: var(--accent-red);
  color: var(--primary-black);
  padding: 0.9rem 2.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0f0f0f;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;
}

.btn-luxury span {
  position: relative;
  z-index: 1;
}

.btn-luxury:hover {
  color: var(--accent-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 78, 55, 0.3);
}

.btn-luxury:hover::before {
  transform: translateX(0);
}

.btn-ghost-luxury {
  background: transparent;
  color: var(--off-white);
  padding: 0.9rem 2.75rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(201, 173, 167, 0.5);
  border-radius: 0;
  transition: all 0.4s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-ghost-luxury:hover {
  background: var(--nude);
  color: var(--primary-black);
  border-color: var(--nude);
  transform: translateY(-3px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 0;
  transition: all 0.4s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--primary-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

/* ============================================================
   SHARED SECTION STYLES
============================================================ */
.section-sub {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--off-white);
}

.section-title .section-title-number {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  font-size: 0.72em;
  line-height: 1;
}

.section-title .accent {
  color: var(--gold);
  font-style: italic;
}

.gold-text {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.accent-red-text {
  color: var(--accent-red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-body {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--nude);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.gold-rule-left {
  margin: 0 0 1.5rem;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(130deg, var(--primary-black) 0%, var(--charcoal) 55%, var(--deep-red) 100%);
  padding-top: clamp(190px, 22vh, 240px);
  padding-bottom: clamp(5rem, 10vh, 9rem);
}

.hero-section>.container {
  padding-top: 1.5rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.4s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  letter-spacing: -1px;
  opacity: 0;
  animation: heroTitleReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) 1.65s forwards;
}

.hero-title-plain {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.1vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.45;
  color: var(--off-white);
  max-width: 680px;
}

.hero-title .accent {
  font-style: italic;
  background: linear-gradient(105deg, #c9a227 0%, #f5d76e 45%, #c9a227 70%, #d4af37 100%);
  background-size: 250% auto;
  background-position: right center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentGloss 1.4s ease 2.9s forwards;
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  max-width: 540px;
  color: var(--nude);
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.95s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 2.2s forwards;
}

.hero-image-wrap {
  position: relative;
  opacity: 0;
  animation: fadeInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.hero-img-inner {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
  z-index: 5;
}

.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.6);
}

.scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.96);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes accentGloss {
  to {
    background-position: left center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PHILOSOPHY SECTION
============================================================ */
.philosophy-section {
  padding: 3rem 5rem;
  background: var(--charcoal);
  position: relative;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.philosophy-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.philosophy-text {
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--nude);
}

.stat-box {
  text-align: center;
  padding: 2.25rem 1.5rem;
  background: var(--accent-red-light);
  border: 1px solid var(--accent-red-border);
  transition: all 0.35s ease;
}

.stat-box:hover {
  background: var(--accent-red-hover);
  transform: translateY(-6px);
  border-color: var(--accent-red-border);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nude);
}

@media (max-width: 991.98px) {
  .philosophy-section {
    padding: 4rem 1.5rem;
  }

  .philosophy-text {
    font-size: 1rem;
    line-height: 1.85;
  }

  .stat-box {
    padding: 1.75rem 1rem;
  }

  .stat-number {
    font-size: 2.6rem;
  }

  .stat-label {
    letter-spacing: 1.5px;
  }
}

@media (max-width: 575.98px) {
  .philosophy-section {
    padding: 3rem 1rem;
  }

  .philosophy-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .stat-box {
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 1px;
  }
}

/* ============================================================
   COURSE CARDS
============================================================ */
.courses-section {
  padding: 7rem 0;
  background: var(--primary-black);
}

.course-card {
  background: var(--charcoal);
  padding: 2.75rem 2.25rem;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.09), transparent);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.course-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.course-card:hover::before {
  transform: translateX(100%);
}

.course-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.course-img-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 1.75rem;
}

.course-img {
  width: 100%;
  height: 200px;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
  margin-bottom: 1.75rem;
  background: rgba(212, 175, 55, 0.04);
}

.course-placeholder-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.2);
  letter-spacing: 8px;
  line-height: 1;
}

.course-placeholder-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.course-placeholder-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201, 173, 167, 0.35);
  margin: 0;
}

.course-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--off-white);
  line-height: 1.2;
}

.course-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--nude);
  margin-bottom: 1.75rem;
}

.course-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.course-link:hover {
  gap: 1rem;
  color: var(--off-white);
}

/* ============================================================
   TRANSFORMATION SECTION
============================================================ */
.transformation-section {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative;
}

.transformation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.transform-card {
  padding: 2.5rem 2rem;
  height: 100%;
}

.transform-card.before-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(255, 255, 255, 0.15);
}

.transform-card.after-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-left: 3px solid var(--gold);
}

.transform-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--off-white);
}

.transform-label.gold {
  color: var(--gold);
}

.transform-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.transform-list li {
  font-size: 1rem;
  font-weight: 300;
  color: var(--nude);
  padding: 0.5rem 0 0.5rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

.transform-list li:last-child {
  border-bottom: none;
}

.before-card .transform-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.35);
}

.after-card .transform-list li::before {
  content: '\2736';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.65rem;
}

/* ============================================================
   TIERS SECTION
============================================================ */
.tiers-section {
  padding: 7rem 0;
  background: var(--primary-black);
}

.tier-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 3rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.tier-card-premium {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(145deg, var(--charcoal) 0%, rgba(110, 36, 36, 0.15) 100%);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.07);
}

.tier-card-premium:hover {
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.14);
}

.tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--nude);
  margin-bottom: 1.75rem;
  width: fit-content;
}

.tier-badge-gold {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold);
}

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.tier-tagline {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tier-card-premium .tier-tagline {
  border-bottom-color: rgba(212, 175, 55, 0.14);
}

.tier-features {
  flex: 1;
  margin-bottom: 2.5rem;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--nude);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li i {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section {
  padding: 7rem 0;
  background: var(--deep-red);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.testimonial-card {
  background: rgba(28, 28, 28, 0.5);
  padding: 3rem 2.5rem;
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(10px);
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.testimonials-carousel-inner {
  padding-bottom: 3.5rem;
}

.testimonial-slide-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 4.25rem;
}

.testimonials-control {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 50%;
  opacity: 1;
}

.testimonials-control:hover {
  background: rgba(212, 175, 55, 0.2);
}

.testimonials-control.carousel-control-prev {
  left: -10px;
}

.testimonials-control.carousel-control-next {
  right: -10px;
}

.testimonials-control .carousel-control-prev-icon,
.testimonials-control .carousel-control-next-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.testimonials-indicators {
  margin-bottom: 0;
  gap: 0.45rem;
}

.testimonials-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.7);
  background-color: transparent;
  opacity: 0.9;
}

.testimonials-indicators .active {
  background-color: var(--gold);
}

#testimonialsCarousel.carousel-fade .carousel-item {
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

#testimonialsCarousel .testimonial-card {
  opacity: 0;
  transform: translateY(12px) scale(0.99);
  transition: opacity 0.8s ease, transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

#testimonialsCarousel .carousel-item.active .testimonial-card,
#testimonialsCarousel .carousel-item.carousel-item-start .testimonial-card,
#testimonialsCarousel .carousel-item.carousel-item-end .testimonial-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testim-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--off-white);
  font-weight: 300;
  flex: 1;
}

.testim-author {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.testim-role {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--nude);
  margin-top: 0.3rem;
}

@media (max-width: 991px) {
  .testimonial-slide-wrap {
    padding: 0 3.25rem;
  }

  .testimonials-control.carousel-control-prev {
    left: 0;
  }

  .testimonials-control.carousel-control-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-slide-wrap {
    padding: 0;
  }

  .testimonials-control {
    display: none;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {

  #testimonialsCarousel.carousel-fade .carousel-item,
  #testimonialsCarousel .testimonial-card {
    transition: none;
  }

  #testimonialsCarousel .testimonial-card {
    transform: none;
    opacity: 1;
  }
}

/* ============================================================
   CTA SECTION
============================================================ */
.cta-section {
  padding: 8rem 0;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(110, 36, 36, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  position: relative;
  z-index: 2;
}

.cta-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--nude);
  max-width: 650px;
  margin: 0 auto 2.75rem;
  line-height: 1.85;
  position: relative;
  z-index: 2;
}

.cta-btns {
  position: relative;
  z-index: 2;
}

/* ============================================================
   FOOTER
============================================================ */
.pwp-footer {
  background: var(--primary-black);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--off-white);
  display: inline-block;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-brand-logo {
  height: 120px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-brand:hover {
  color: var(--gold);
}

.footer-brand:hover .footer-brand-logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.25));
}

.footer-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.8;
  max-width: 320px;
}

.footer-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-link {
  display: block;
  color: var(--nude);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 173, 167, 0.35);
  color: var(--nude);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-black);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(201, 173, 167, 0.45);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.footer-legal a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(201, 173, 167, 0.45);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: clamp(175px, 18vh, 210px);
  }

  .legal-hero {
    padding-top: clamp(200px, 20vh, 235px);
  }

  .hero-img-inner {
    height: 420px;
    margin-top: 3rem;
  }

  .hero-image-wrap::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
    line-height: 1.25;
    letter-spacing: -0.3px;
  }

  .hero-title-plain {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-luxury,
  .hero-btns .btn-ghost-luxury {
    width: 100%;
    text-align: center;
  }

  .transform-card {
    padding: 2rem 1.5rem;
  }

  .tier-card {
    padding: 2.25rem 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1400px) {
  .hero-img-inner {
    height: 680px;
  }
}

/* ============================================================
   LEGAL PAGES (privacy-policy.html / terms-and-conditions.html)
============================================================ */
.legal-hero {
  padding: clamp(210px, 24vh, 260px) 0 5rem;
  background: linear-gradient(130deg, var(--primary-black) 0%, var(--charcoal) 60%, var(--deep-red) 100%);
  text-align: center;
  position: relative;
}

.legal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.legal-eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.legal-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--nude);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-section {
  padding: 6rem 0;
  background: var(--primary-black);
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}

.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.legal-content p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.85;
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-content ul li:last-child {
  border-bottom: none;
}

.legal-content ul li::before {
  content: '\2736';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.72rem;
}

.legal-content ul ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}

.legal-content ul ul li::before {
  content: '\2013';
  font-size: 1rem;
  top: 0.45rem;
  color: rgba(201, 173, 167, 0.5);
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.legal-content a:hover {
  opacity: 0.75;
}

.legal-updated {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 173, 167, 0.45);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 1.5rem;
  width: 100%;
}

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-section {
  padding: 7rem 0;
  background: var(--primary-black);
}

.contact-intro-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}

.contact-intro-heading .accent {
  color: var(--gold);
  font-style: italic;
}

.contact-intro-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  color: inherit;
}

.contact-card-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.contact-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 0.5rem;
}

.contact-card-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--off-white);
  word-break: break-all;
}

.contact-form-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem 2.5rem;
  height: 100%;
}

.contact-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--nude);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-form-card .form-control {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0;
  color: var(--off-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card .form-control::placeholder {
  color: rgba(201, 173, 167, 0.45);
}

.contact-form-card .form-control:focus {
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.08);
  color: var(--off-white);
  outline: none;
}

.contact-form-card select.form-control option {
  background: #ffffff;
  color: #1c1c1c;
}

.contact-form-card textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-field-error {
  font-size: 0.8rem;
  color: #e07070;
  display: none;
}

.contact-intent-group {
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.contact-intent-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--off-white);
  margin-bottom: 0;
  white-space: nowrap;
}

.contact-intent-options {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.contact-intent-options .form-check {
  margin-bottom: 0;
  white-space: nowrap;
}

/* Mobile/Responsive: Stack label and buttons vertically */
@media (max-width: 767px) {
  .contact-intent-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-intent-label {
    width: 100%;
    white-space: normal;
  }

  .contact-intent-options {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .contact-intent-options .form-check {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 150px;
  }
}

.contact-intent-options .form-check-input {
  margin-top: 0.33rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.contact-intent-options .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.contact-intent-options .form-check-input:focus {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.16);
}

.contact-intent-options .form-check-label {
  color: var(--nude);
  font-size: 0.88rem;
  font-weight: 300;
}

.contact-privacy {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(201, 173, 167, 0.5);
  margin-bottom: 1.5rem;
}

.contact-privacy a {
  color: var(--gold);
  text-decoration: none;
}

.contact-privacy a:hover {
  text-decoration: underline;
}

#contactFormMsg {
  font-size: 0.9rem;
  font-weight: 300;
  min-height: 2rem;
  letter-spacing: 0.5px;
}

@media (max-width: 991.98px) {
  .contact-form-card {
    padding: 2.25rem 1.5rem;
    margin-top: 3rem;
  }
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.serve-section {
  padding: 7rem 0;
  background: var(--primary-black);
}

.serve-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 3rem 2.25rem;
  height: 100%;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.serve-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.serve-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.serve-card:hover::before {
  transform: scaleX(1);
}

.serve-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}

.serve-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.75rem;
}

.serve-card-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.serve-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.serve-card-list li {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--nude);
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.serve-card-list li:last-child {
  border-bottom: none;
}

.serve-card-list li::before {
  content: '\2736';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.65rem;
}

.values-section {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.values-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.value-item {
  padding: 2.5rem 2rem;
  border-left: 2px solid rgba(212, 175, 55, 0.2);
  transition: border-color 0.35s ease;
}

.value-item:hover {
  border-left-color: var(--gold);
}

.value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 0;
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.85;
}

.founder-section {
  padding: 7rem 0;
  background: var(--primary-black);
}

.founder-image-wrap {
  position: relative;
}

.founder-image-inner {
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.founder-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.founder-placeholder-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(212, 175, 55, 0.2);
  letter-spacing: 8px;
  line-height: 1;
}

.founder-placeholder-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.founder-image-wrap::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 55%;
  height: 55%;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  z-index: -1;
}

.founder-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 55%;
  height: 55%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  border-right: 1px solid rgba(212, 175, 55, 0.25);
  z-index: -1;
}

.founder-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.founder-name-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}

.founder-role-tag {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 2rem;
  display: block;
}

.founder-bio p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.founder-quote {
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  background: rgba(212, 175, 55, 0.04);
}

.founder-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--off-white) !important;
  line-height: 1.7;
  margin: 0 !important;
}

/* ============================================================
   COURSES PAGE
============================================================ */
.module-overview-section {
  padding: 5rem 0 3rem;
  background: var(--primary-black);
}

.courses-page .module-overview-section {
  padding-top: clamp(190px, 20vh, 240px);
}

.courses-page #module-1 {
  padding-top: clamp(230px, 26vh, 300px);
}

.module-overview-card {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 2.75rem 2.25rem;
  height: 100%;
  transition: all 0.35s ease;
}

.module-overview-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.module-number-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.module-overview-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.4rem;
}

.module-overview-sub {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.module-overview-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.85;
}

.module-duration-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
  margin-top: 1.25rem;
}

.module-detail-section {
  padding: 7rem 0;
  background: var(--primary-black);
  scroll-margin-top: 90px;
}

.module-detail-section.module-alt {
  background: var(--charcoal);
  position: relative;
}

.module-detail-section.module-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.module-detail-section.module-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.module-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.module-label-number {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.2rem 0.85rem;
}

.module-detail-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.module-detail-title span {
  color: var(--gold);
  font-style: italic;
}

.module-tagline {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 520px;
}

.module-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.module-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--nude);
}

.module-info-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

.module-info-date {
  color: var(--gold);
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.3rem 0.85rem;
}

.module-info-date span {
  font-style: italic;
}

.module-info-fee {
  color: var(--gold);
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.3rem 0.85rem;
}

.module-info-fee span {
  font-style: italic;
}

.outcomes-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.outcome-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.outcome-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--nude);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

.outcome-list li:last-child {
  border-bottom: none;
}

.outcome-list li i {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.curriculum-panel {
  background: var(--charcoal);
  border: 1px solid rgba(212, 175, 55, 0.12);
  padding: 2.5rem;
}

.module-alt .curriculum-panel {
  background: var(--primary-black);
}

.curriculum-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.week-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
}

.week-item:last-child {
  border-bottom: none;
}

.week-badge {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 0.3rem 0.4rem;
  text-align: center;
  white-space: nowrap;
}

.week-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.week-desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1.7;
}

.week-points {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--nude);
}

.week-points li {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.week-points li:last-child {
  margin-bottom: 0;
}

.tiers-detail-section {
  padding: 7rem 0;
  background: var(--primary-black);
}

.faq-section {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pwp-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.pwp-accordion .accordion-item:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.pwp-accordion .accordion-button {
  background: transparent;
  color: var(--off-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.5rem 0;
  box-shadow: none;
  border: none;
}

.pwp-accordion .accordion-button:not(.collapsed) {
  color: var(--gold);
  background: transparent;
  box-shadow: none;
}

.pwp-accordion .accordion-button::after {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.1);
}

.pwp-accordion .accordion-button:focus {
  box-shadow: none;
}

.pwp-accordion .accordion-body {
  padding: 0 0 1.5rem;
  color: var(--nude);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
}

@media (max-width: 991.98px) {
  .founder-image-inner {
    height: 380px;
    margin-bottom: 3rem;
  }

  .founder-image-wrap::before,
  .founder-image-wrap::after {
    display: none;
  }

  .curriculum-panel {
    padding: 1.75rem;
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .week-item {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .value-item {
    padding: 2rem 1.25rem;
  }

  .module-info-bar {
    gap: 1rem;
  }
}