/* ─── RESET & ROOT ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1A2E;
  --navy-mid: #0f2040;
  --navy-card: #111e33;
  --navy-light: #162847;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: rgba(201,168,76,0.15);
  --silver: #B0B8C8;
  --silver-light: #D4DAE4;
  --silver-dark: #8A94A6;
  --white: #FFFFFF;
  --text-mid: #8A94A6;
  --border: rgba(255,255,255,0.07);
  --border-gold: rgba(201,168,76,0.3);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(11,26,46,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}

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

.nav-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  background: transparent;
}

nav a.nav-cta {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

nav a.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 65%);
  pointer-events: none;
}

.hero-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute;
  border: 0.5px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}

.hero-lines::before {
  width: 650px; height: 650px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.hero-lines::after {
  width: 1000px; height: 1000px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--border-gold);
  background: var(--gold-dim);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Hero logo */
.hero-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  background: transparent;
}

/* Fallback monogram if no logo */
.hero-monogram {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-monogram span { color: var(--gold); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-divider {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0 auto 2rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300; font-style: italic;
  color: var(--white);
  max-width: 640px; line-height: 1.4;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.35s both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--silver-dark);
}

.scroll-line {
  width: 0.5px; height: 40px;
  background: linear-gradient(to bottom, var(--silver-dark), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: 0.5px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  background: var(--navy);
  padding: 8rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.about-heading em { font-style: italic; color: var(--gold); }

.about-body {
  font-size: 0.9rem; line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.about-closing {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--silver-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-top: 2rem;
  line-height: 1.7;
}

.pillars-list { display: flex; flex-direction: column; margin-top: 1rem; }

.pillar-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.5px solid var(--border);
}

.pillar-item:first-child { border-top: 0.5px solid var(--border); }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem; color: var(--gold);
  padding-top: 2px; min-width: 20px;
}

.pillar-text { font-size: 0.86rem; color: var(--silver-light); line-height: 1.5; }

/* ─── SESSIONS ───────────────────────────────────────────────── */
.sessions { background: var(--navy); padding: 8rem 2rem; }

.sessions .section-label { color: var(--gold); }
.sessions .section-label::before { background: var(--gold); }

.sessions-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 0.75rem;
}

.sessions-sub {
  font-size: 0.88rem; color: var(--text-mid);
  margin-bottom: 3.5rem; max-width: 520px;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.session-card {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.2s;
}

.session-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.session-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}

.session-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.75rem; line-height: 1.25;
}

.session-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.65; }

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing { background: var(--navy); padding: 8rem 2rem; }

.pricing .section-label { color: var(--gold); }
.pricing .section-label::before { background: var(--gold); }

.pricing-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--white); margin-bottom: 0.75rem;
}

.pricing-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 3.5rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pricing-card {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.2s;
}

.pricing-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }

.pricing-duration {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}

.pricing-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 300;
  color: var(--white); line-height: 1; margin-bottom: 0.25rem;
}

.pricing-amount sup { font-size: 1.5rem; vertical-align: top; margin-top: 0.6rem; }

.pricing-desc { font-size: 0.78rem; color: var(--text-mid); margin-bottom: 1.75rem; }

.pricing-divider { height: 0.5px; background: var(--border); margin-bottom: 1.5rem; }

.pricing-deposit, .pricing-balance {
  font-size: 0.82rem; color: var(--text-mid);
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem;
}

.pricing-deposit strong, .pricing-balance strong { color: var(--white); font-weight: 500; }

.pricing-policy {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}

.pricing-policy p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; }
.pricing-policy strong { color: var(--white); }

.terms-link {
  background: none; border: none;
  color: var(--gold);
  font-size: 0.78rem; text-decoration: underline;
  cursor: pointer; padding: 0.5rem 0 0;
  display: block; transition: color 0.2s;
}

.terms-link:hover { color: var(--gold-light); }

/* ─── BOOKING ────────────────────────────────────────────────── */
.booking { background: var(--navy); padding: 8rem 2rem; }

.booking .section-label { color: var(--gold); }
.booking .section-label::before { background: var(--gold); }

.booking-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; color: var(--white); margin-bottom: 0.75rem;
}

.booking-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 3.5rem; }

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full, .full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--border-gold); }

.form-group select option { background: var(--navy-card); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Step labels */
.step-label {
  font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 0.75rem;
}

/* Duration selector */
.duration-selector {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem;
}

.duration-option {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}

.duration-option:hover { border-color: var(--border-gold); }

.duration-option.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.duration-option-hours {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  color: var(--white); margin-bottom: 0.25rem;
}

.duration-option-price { font-size: 0.78rem; color: var(--text-mid); margin-bottom: 0.2rem; }
.duration-option-deposit { font-size: 0.7rem; color: var(--gold); }

/* Coaching type pills */
.coaching-grid {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 0.5rem;
}

.coaching-option {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  font-size: 0.8rem; color: var(--text-mid);
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}

.coaching-option:hover { border-color: var(--border-gold); color: var(--white); }

.coaching-option.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

/* Deposit summary */
.deposit-summary {
  background: var(--navy-card);
  border: 0.5px solid var(--border-gold);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
}

.deposit-summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.83rem; color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.deposit-summary-row.total {
  color: var(--white); font-weight: 500; font-size: 1rem;
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--border);
  margin-top: 0.4rem; margin-bottom: 0;
}

/* Add to cart button */
.btn-add-session {
  background: transparent;
  border: 0.5px solid var(--gold);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
}

.btn-add-session:hover:not(:disabled) {
  background: var(--gold-dim); color: var(--white);
}

.btn-add-session:disabled { opacity: 0.3; cursor: not-allowed; }

/* Submit button */
.submit-btn {
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none; border-radius: 50px; cursor: pointer;
  transition: background 0.2s;
  width: 100%; margin-top: 1rem;
}

.submit-btn:hover { background: var(--gold-light); }
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.submit-area { display: flex; flex-direction: column; gap: 0.75rem; }

.form-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  text-align: center; line-height: 1.6;
}

.terms-link-inline {
  background: none; border: none;
  color: var(--gold); font-size: 0.72rem;
  text-decoration: underline; cursor: pointer;
  padding: 0; transition: color 0.2s;
}

.terms-link-inline:hover { color: var(--gold-light); }

/* Form messages */
#form-message {
  padding: 1rem; border-radius: 8px;
  font-size: 0.85rem; display: none;
  margin-top: 0.75rem;
}

#form-message.success {
  background: rgba(100,200,150,0.1);
  border: 0.5px solid rgba(100,200,150,0.3);
  color: #7de0aa; display: block;
}

#form-message.error {
  background: rgba(220,80,80,0.1);
  border: 0.5px solid rgba(220,80,80,0.3);
  color: #f08080; display: block;
}

/* ─── CART ───────────────────────────────────────────────────── */
.cart-section {
  margin-top: 3rem;
  border-top: 0.5px solid var(--border);
  padding-top: 2.5rem;
}

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.5rem;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--white);
}

.btn-add-another {
  background: transparent;
  border: 0.5px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.78rem; letter-spacing: 0.08em;
  padding: 0.5rem 1.1rem;
  border-radius: 50px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-add-another:hover { background: var(--gold-dim); color: var(--white); }

.cart-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }

.cart-item {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 10px; padding: 1.25rem;
}

.cart-item-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}

.cart-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--white);
}

.cart-item-remove {
  background: none; border: none;
  color: var(--text-mid); font-size: 0.75rem;
  cursor: pointer; text-decoration: underline;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: #f08080; }

.cart-item-details {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.75rem;
}

.cart-item-pricing {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--text-mid);
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--border);
}

.cart-item-deposit { color: var(--gold); font-weight: 500; }

.cart-summary {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.cart-row {
  display: flex; justify-content: space-between;
  font-size: 0.84rem; color: var(--text-mid); margin-bottom: 0.5rem;
}

.cart-row.total {
  color: var(--white); font-weight: 500; font-size: 1rem;
  padding-top: 0.75rem;
  border-top: 0.5px solid var(--border);
  margin-top: 0.5rem; margin-bottom: 0;
}

/* ─── PAYMENT SECTION ────────────────────────────────────────── */
.payment-section {
  background: var(--navy-card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

.payment-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--white); margin-bottom: 0.4rem;
}

.payment-sub {
  font-size: 0.82rem; color: var(--text-mid);
  margin-bottom: 1.5rem; line-height: 1.6;
}

#payment-element-container { margin-bottom: 1rem; }

.stripe-placeholder {
  background: rgba(201,168,76,0.04);
  border: 0.5px dashed var(--border-gold);
  border-radius: 8px;
  padding: 1.5rem; text-align: center;
  font-size: 0.84rem; color: var(--text-mid); line-height: 1.7;
}

.stripe-placeholder small { opacity: 0.6; font-size: 0.72rem; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: #060d1a;
  padding: 4.5rem 2rem;
  text-align: center;
}

.footer-logo-wrap { margin-bottom: 1.25rem; }

.footer-logo {
  width: 72px; height: 72px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: luminosity;
}

.footer-name {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 0.5rem;
}

.footer-contact {
  font-size: 0.8rem; color: rgba(255,255,255,0.25); margin-bottom: 2rem;
}

.footer-contact a { color: rgba(201,168,76,0.5); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }

.footer-verse {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 0.95rem;
  color: rgba(255,255,255,0.2);
}

.footer-divider {
  width: 40px; height: 0.5px;
  background: rgba(255,255,255,0.08);
  margin: 1.5rem auto;
}

.footer-area {
  font-size: 0.65rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.15); text-transform: uppercase;
}

/* ─── TERMS MODAL ────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6,13,26,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}

.modal-box {
  background: var(--navy-mid);
  border: 0.5px solid var(--border-gold);
  border-radius: 12px;
  max-width: 620px; width: 100%; max-height: 80vh;
  display: flex; flex-direction: column;
}

.modal-header {
  padding: 1.5rem 1.5rem 1rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--white);
}

.modal-close {
  background: none; border: none;
  color: var(--text-mid); font-size: 1rem;
  cursor: pointer; padding: 0.25rem; transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

.modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; }

.modal-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500; color: var(--gold);
  margin-bottom: 0.5rem; margin-top: 1.25rem;
}

.modal-body h4:first-child { margin-top: 0; }

.modal-body p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.7; }
.modal-body a { color: var(--gold); }

.modal-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 0.5px solid var(--border);
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ─── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .sessions-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .form-group.full, .full { grid-column: 1; }
  .duration-selector { grid-template-columns: 1fr; }
  .cart-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  nav { padding: 0.75rem 1rem; }
}

/* ─── CART ITEM ACTIONS ──────────────────────────────────────── */
.cart-item-actions {
  display: flex; gap: 0.75rem; align-items: center;
}

.cart-item-edit {
  background: none; border: 0.5px solid var(--border-gold);
  color: var(--gold); font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cart-item-edit:hover { background: var(--gold-dim); color: var(--white); }

/* ─── THEME TOGGLE ───────────────────────────────────────────── */
.nav-right {
  display: flex; align-items: center; gap: 1rem;
}

.theme-toggle {
  background: none;
  border: 0.5px solid var(--border);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: border-color 0.2s, background 0.2s;
}

.theme-toggle:hover { border-color: var(--gold); background: var(--gold-dim); }

/* Show correct icon per mode */
body:not(.light-mode) .theme-icon-light { display: none; }
body.light-mode .theme-icon-dark { display: none; }

/* ─── LIGHT MODE ─────────────────────────────────────────────── */
body.light-mode {
  --navy: #F0EDE8;
  --navy-mid: #E8E4DE;
  --navy-card: #FFFFFF;
  --navy-light: #DDD9D3;
  --border: rgba(0,0,0,0.08);
  --border-gold: rgba(160,120,40,0.35);
  --gold: #A07828;
  --gold-light: #C49A30;
  --gold-dim: rgba(160,120,40,0.08);
  --white: #1A1A1A;
  --silver: #4A4A4A;
  --silver-light: #2A2A2A;
  --silver-dark: #6A6A6A;
  --text-mid: #666666;
  background: #F0EDE8;
  color: #1A1A1A;
}

body.light-mode nav {
  background: rgba(240,237,232,0.95);
  border-bottom-color: rgba(0,0,0,0.08);
}

body.light-mode .hero {
  background: #F0EDE8;
}

body.light-mode .hero::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(160,120,40,0.06) 0%, transparent 65%);
}

body.light-mode .hero-lines::before,
body.light-mode .hero-lines::after {
  border-color: rgba(160,120,40,0.08);
}

body.light-mode .hero-tagline { color: #2A2A2A; }
body.light-mode .hero-title { color: #888; }

body.light-mode .hero-badge {
  color: var(--gold);
  border-color: var(--border-gold);
  background: var(--gold-dim);
}

body.light-mode .about { background: #F0EDE8; }
body.light-mode .sessions { background: #E8E4DE; }
body.light-mode .pricing { background: #F0EDE8; }
body.light-mode .booking { background: #E8E4DE; }

body.light-mode .session-card,
body.light-mode .pricing-card,
body.light-mode .cart-item,
body.light-mode .cart-summary,
body.light-mode .payment-section,
body.light-mode .duration-option,
body.light-mode .checkout-right-inner {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.12);
  color: #1A1A1A;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder { color: rgba(0,0,0,0.3); }

body.light-mode .coaching-option {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.1);
  color: #666;
}

body.light-mode .coaching-option.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
  color: var(--gold);
}

body.light-mode .duration-option.selected {
  border-color: var(--gold);
  background: var(--gold-dim);
}

body.light-mode .pricing-policy {
  background: #FFFFFF;
  border-color: rgba(0,0,0,0.08);
  border-left-color: var(--gold);
}

body.light-mode .modal-box {
  background: #FFFFFF;
  border-color: var(--border-gold);
}

body.light-mode footer {
  background: #E0DDD8;
}

body.light-mode .footer-contact a { color: var(--gold); }
body.light-mode .footer-verse { color: rgba(0,0,0,0.35); }
body.light-mode .footer-name,
body.light-mode .footer-area { color: rgba(0,0,0,0.35); }
body.light-mode .footer-contact { color: rgba(0,0,0,0.4); }
body.light-mode .footer-divider { background: rgba(0,0,0,0.1); }

body.light-mode .scroll-line {
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

body.light-mode .hero-scroll span { color: rgba(0,0,0,0.4); }

body.light-mode .about-body { color: #555; }
body.light-mode .session-desc { color: #777; }
body.light-mode .pricing-sub,
body.light-mode .sessions-sub,
body.light-mode .booking-sub { color: #777; }

body.light-mode .pillar-item { border-color: rgba(0,0,0,0.07); }
body.light-mode .pillar-text { color: #444; }

body.light-mode .cart-empty-text { color: #333; }
body.light-mode .cart-empty-sub { color: #999; }

body.light-mode .stripe-placeholder {
  background: rgba(160,120,40,0.04);
  border-color: rgba(160,120,40,0.2);
  color: #888;
}

body.light-mode .theme-toggle {
  border-color: rgba(0,0,0,0.15);
  color: #333;
}

body.light-mode .nav-cta {
  background: var(--gold);
  color: #fff;
}

body.light-mode .btn-primary { background: var(--gold); color: #fff; }
body.light-mode .btn-secondary {
  border-color: rgba(0,0,0,0.2);
  color: #333;
}

body.light-mode .hero-divider {
  background: linear-gradient(to bottom, rgba(160,120,40,0.3), transparent);
}

body.light-mode .cart-row { color: #666; }
body.light-mode .cart-row.total { color: #1A1A1A; }

body.light-mode .deposit-summary {
  background: #fff;
  border-color: rgba(160,120,40,0.2);
}

body.light-mode .deposit-summary-row { color: #666; }
body.light-mode .deposit-summary-row.total { color: #1A1A1A; }

/* ─── TWO COLUMN CHECKOUT ────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

.checkout-left { width: 100%; }

.checkout-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid var(--border);
}

body.light-mode .checkout-section-title { color: #1A1A1A; }

.checkout-right { position: sticky; top: 90px; }

.checkout-right-inner {
  background: var(--navy-card);
  border-radius: 12px;
  overflow: hidden;
}

/* Cart empty state */
.cart-empty {
  padding: 3rem 2rem;
  text-align: center;
}

.cart-empty-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.4; }

.cart-empty-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--white);
  margin-bottom: 0.4rem;
}

.cart-empty-sub { font-size: 0.78rem; color: var(--text-mid); line-height: 1.5; }

/* Cart section inside right panel */
#cartSection {
  padding: 1.5rem;
}

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--white);
}

body.light-mode .cart-title { color: #1A1A1A; }

.payment-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--border);
}

.payment-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem;
}

body.light-mode .payment-header { color: #1A1A1A; }

body.light-mode .hero-logo {
  filter: brightness(0) opacity(1);
  mix-blend-mode: normal;
}

body.light-mode .nav-logo-img {
  filter: brightness(0) opacity(1);
  mix-blend-mode: normal;
}

body.light-mode .footer-logo {
  filter: brightness(0) opacity(1);
  mix-blend-mode: normal;
}

/* Mobile — stack columns */
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-right { position: static; }
}

/* ─── FLATPICKR OVERRIDES ────────────────────────────────────── */
.flatpickr-calendar {
  background: #0f2040;
  border: 0.5px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  font-family: 'DM Sans', sans-serif;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: #C9A84C;
  border-color: #C9A84C;
}

.flatpickr-day:hover {
  background: rgba(201,168,76,0.15);
}

.flatpickr-months .flatpickr-month {
  background: #0f2040;
  color: white;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: #0f2040;
}

.flatpickr-weekday {
  color: #C9A84C;
  font-weight: 500;
}

.flatpickr-day {
  color: #B0B8C8;
  border-radius: 8px;
}

.flatpickr-day.today {
  border-color: #C9A84C;
  color: #C9A84C;
}

.numInputWrapper:hover {
  background: rgba(201,168,76,0.1);
}

.flatpickr-time input {
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
}

.flatpickr-time .flatpickr-am-pm {
  color: #C9A84C;
}

#sessionTime option:first-child {
  color: rgba(176,184,200,0.3);
}

#sessionTime {
  color: rgba(176,184,200,0.3);
}

#sessionTime.has-value {
  color: white;
}
