/*
Theme Name: Fusion Teacher Training 2026 v2
Theme URI: https://fusionteachertraining.com
Author: Fusion Teacher Training
Author URI: https://fusionteachertraining.com
Description: A modern, premium WordPress theme for Fusion Teacher Training — Pilates instructor education and continuing education. Features a warm natural palette (sage green, soft coral, warm white), parallax effects, interactive cards, and mobile-first responsive design.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fusion-theme-2026-v2
Tags: pilates, education, wellness, custom-menu, featured-images, theme-options
*/

/* ===== CSS VARIABLES ===== */
:root {
  --sage: #7A9B8A;
  --sage-deep: #5B7D6B;
  --sage-light: #B8CFC2;
  --sage-pale: #E8F0EB;
  --coral: #D4856A;
  --coral-soft: #E8A690;
  --coral-pale: #F5DDD4;
  --warm-white: #FDFAF7;
  --cream: #F5F0EA;
  --sand: #EDE6DC;
  --text-dark: #2A2A28;
  --text-mid: #5A5A56;
  --text-light: #8A8A84;
  --white: #FFFFFF;
  --dark: #1E201C;
  --overlay-dark: rgba(30, 32, 28, 0.55);
  --overlay-light: rgba(30, 32, 28, 0.3);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }

/* ===== OVERLINE ===== */
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.overline::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--coral);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}
.btn-sm {
  font-size: 11px;
  padding: 9px 20px;
  letter-spacing: 0.07em;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 155, 138, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-coral:hover {
  background: #C27558;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 133, 106, 0.35);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
}
.btn-sage:hover {
  background: var(--sage-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 155, 138, 0.3);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--sage);
}
.btn-outline-dark:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--text-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, box-shadow 0.5s;
}
.header.scrolled {
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Solid header for all non-homepage pages */
.header.header-solid {
  background: rgba(253, 250, 247, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header.header-solid .nav-desktop a,
.header.header-solid .nav-desktop .menu a { color: var(--text-mid); }
.header.header-solid .nav-desktop a:hover,
.header.header-solid .nav-desktop .menu a:hover { color: var(--text-dark); }
.header.header-solid .menu-toggle span { background: var(--text-dark); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: padding 0.4s;
}
.header.scrolled .header-inner { padding: 14px 0; }

/* ===== SITE LOGO ===== */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-text-wrap { display: flex; flex-direction: column; align-items: center; }
.logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  transition: color 0.4s;
}
.logo-tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  transition: color 0.4s;
}
/* Mark ellipse colours — transparent/hero header (default: white) */
.lm-top { fill: #B8CFC2; transition: fill 0.4s; }
.lm-mid { fill: #E8A690; transition: fill 0.4s; }
.lm-bot { fill: #B8CFC2; transition: fill 0.4s; }

/* Solid header + scrolled — switch to colour version */
.header.header-solid .logo-name,
.header.scrolled .logo-name { color: var(--text-dark); }
.header.header-solid .logo-tagline,
.header.scrolled .logo-tagline { color: var(--text-light); }
.header.header-solid .lm-top,
.header.scrolled .lm-top { fill: #5B7D6B; }
.header.header-solid .lm-mid,
.header.scrolled .lm-mid { fill: #D4856A; }
.header.header-solid .lm-bot,
.header.scrolled .lm-bot { fill: #7A9B8A; }

/* Footer logo */
.site-logo--footer .logo-name { color: var(--white); }
.site-logo--footer .logo-tagline { color: rgba(255,255,255,0.4); }

.nav-desktop { display: none; gap: 32px; align-items: center; }
@media (min-width: 960px) { .nav-desktop { display: flex; } }
/* Standard wp_nav_menu output */
.nav-desktop .menu,
.nav-desktop ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-desktop .menu li { margin: 0; }
.nav-desktop a,
.nav-desktop .menu a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover::after { width: 100%; }

/* Dropdown submenus */
.nav-desktop .menu li { position: relative; }
.nav-desktop .menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-top: 2px solid var(--coral);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 200px;
  padding: 8px 0;
  padding-top: 12px;
  list-style: none;
  flex-direction: column;
  gap: 0;
  z-index: 200;
  border-radius: 0 0 6px 6px;
}
.nav-desktop .menu li:hover > ul.sub-menu { display: flex; }
.nav-desktop .menu li ul.sub-menu li { margin: 0; width: 100%; }
.nav-desktop .menu li ul.sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-mid) !important;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-desktop .menu li ul.sub-menu a::after { display: none; }
.nav-desktop .menu li ul.sub-menu a:hover { color: var(--coral) !important; background: var(--warm-white); }

/* Dropdown arrow */
.nav-arrow {
  font-size: 14px;
  margin-left: 3px;
  display: inline-block;
  transition: transform 0.2s;
  vertical-align: middle;
  line-height: 1;
  opacity: 0.7;
}
.nav-desktop .menu li.has-dropdown:hover > a > .nav-arrow:not(.nav-arrow--right) { transform: rotate(180deg); }

/* Right-pointing arrow for fly-out items */
.nav-arrow--right {
  font-size: 13px;
  margin-left: auto;
  padding-left: 8px;
  color: var(--text-light);
  transition: color 0.2s, transform 0.2s;
}
.nav-desktop .menu li ul.sub-menu li.has-dropdown > a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.nav-desktop .menu li ul.sub-menu li.has-dropdown:hover > a .nav-arrow--right {
  color: var(--coral);
  transform: translateX(2px);
}

/* Level-2 fly-out sub-menu */
.nav-desktop .menu li ul.sub-menu li { position: relative; }
.nav-desktop .menu li ul.sub-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: -10px;
  left: 100%;
  background: var(--white);
  border-top: 2px solid var(--coral);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 210px;
  padding: 8px 0;
  list-style: none;
  flex-direction: column;
  gap: 0;
  z-index: 201;
  border-radius: 0 0 6px 6px;
}
.nav-desktop .menu li ul.sub-menu li:hover > ul.sub-menu { display: flex; }

.header.scrolled .nav-desktop a,
.header.scrolled .nav-desktop .menu a { color: var(--text-mid); }
.header.scrolled .nav-desktop a:hover,
.header.scrolled .nav-desktop .menu a:hover { color: var(--text-dark); }

.nav-cta-btn,
.nav-desktop .menu li.menu-cta > a {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta-btn::after,
.nav-desktop .menu li.menu-cta > a::after { display: none !important; }
.nav-cta-btn:hover,
.nav-desktop .menu li.menu-cta > a:hover { background: var(--sage-deep); transform: scale(1.04); }
.header.scrolled .nav-cta-btn,
.header.scrolled .nav-desktop .menu li.menu-cta > a { color: var(--white) !important; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 26px; height: 2px; background: var(--white);
  border-radius: 2px; transition: background 0.4s;
}
.header.scrolled .menu-toggle span { background: var(--text-dark); }

/* Mobile nav */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: var(--sage-deep);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: 28px; color: var(--white);
  opacity: 0.85; transition: opacity 0.3s;
}
.mobile-nav-overlay a:hover { opacity: 1; }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 32px; cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s linear;
}
.hero.loaded .hero-media img {
  transform: scale(1);
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15, 20, 15, 0.82) 0%, rgba(15, 20, 15, 0.60) 45%, rgba(15, 20, 15, 0.30) 100%);
}
.hero-video-badge {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 50px;
  color: var(--white);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s;
}
.hero-video-badge:hover { background: rgba(255,255,255,0.25); }
.play-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
}
.play-icon svg { margin-left: 2px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--sage-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s var(--ease) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--coral-soft);
}
.hero p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s var(--ease) forwards;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s var(--ease) forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-down span {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(6px); }
  60% { transform: rotate(45deg) translateY(3px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--sage-deep);
  padding: 0;
  overflow: hidden;
}
.trust-ticker {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.trust-ticker-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 40px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.trust-ticker-item .dot {
  width: 5px; height: 5px;
  background: var(--coral-soft);
  border-radius: 50%;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== ABOUT INTRO ===== */
.about-intro {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .about-intro { padding: 72px 0; } }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-intro-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.about-img-stack {
  position: relative;
  height: 480px;
}
@media (max-width: 768px) { .about-img-stack { height: 360px; } }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 85%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid var(--warm-white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute;
  bottom: 44px; left: 16px;
  top: auto; right: auto;
  transform: none;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  text-align: center;
  z-index: 2;
}
.floating-badge .badge-number {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--sage-deep);
  line-height: 1;
}
.floating-badge .badge-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
}
.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.about-intro-text p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 16px;
  max-width: 480px;
}
.credential-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0;
}
.pill {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--sage-pale);
  color: var(--sage-deep);
}

/* ===== PROGRAMS ===== */
.programs {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}
@media (max-width: 768px) { .programs { padding: 72px 0; } }
.programs::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
  position: relative;
}
.section-header .overline { justify-content: center; }
.section-header .overline::before { display: none; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-mid);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
@media (min-width: 768px) {
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
}

.program-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.program-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.program-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.program-card:hover .program-card-img img {
  transform: scale(1.08);
}
.card-badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--sage-deep);
}
.program-card-body {
  padding: 28px 24px;
}
.program-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.25;
}
.program-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.04em;
  transition: gap 0.3s var(--ease);
}
.program-card:hover .card-link { gap: 14px; }

/* ===== FULL-BLEED PHOTO ===== */
.photo-break {
  position: relative;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 768px) { .photo-break { height: 360px; } }
.photo-break-img {
  position: absolute; inset: 0;
}
.photo-break-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(42, 42, 40, 0.7) 0%, rgba(42, 42, 40, 0.2) 70%);
  display: flex; align-items: center;
}
.photo-break-content {
  max-width: 520px;
  padding: 0 64px;
}
@media (max-width: 768px) { .photo-break-content { padding: 0 24px; } }
.photo-break-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.photo-break-content cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-soft);
}

/* ===== SCHEDULE ===== */
.schedule {
  padding: 80px 0;
}
@media (max-width: 768px) { .schedule { padding: 56px 0; } }
.schedule--compact { padding-top: 40px; }
.schedule-list { margin-top: 40px; }
.schedule-list--no-header { margin-top: 0; }
/* Mobile-first: stacked card */
.schedule-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--sand);
  margin-bottom: 10px;
  transition: all 0.3s var(--ease);
  position: relative;
}
/* Desktop: horizontal row */
@media (min-width: 768px) {
  .schedule-item {
    grid-template-columns: 2fr 1.2fr 1fr 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 16px;
    border-radius: 8px;
    border: none;
    margin-bottom: 2px;
  }
  .schedule-item:nth-child(even) {
    background: rgba(122, 155, 138, 0.07);
  }
  .schedule-item:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transform: translateX(4px);
  }
}
.schedule-item .course-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}
.schedule-item .course-dates {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}
.schedule-item .course-location {
  font-size: 14px;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 6px;
}
.location-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.schedule-item .course-instructor {
  font-size: 14px;
  color: var(--text-light);
}
.register-btn {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--sage-pale);
  color: var(--sage-deep);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}
.register-btn:hover {
  background: var(--sage);
  color: var(--white);
}
/* Mobile register button — full width in stacked card */
@media (max-width: 767px) {
  .schedule-item .register-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
  .schedule-item .course-instructor {
    font-size: 13px;
  }
}

.schedule-footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 0;
  background: var(--cream);
}
@media (max-width: 768px) { .testimonials { padding: 72px 0; } }
.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .testimonial-cards { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 16px; height: 16px; color: var(--coral); }
.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--coral-pale));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--sage-deep);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.author-info .role { font-size: 12px; color: var(--text-light); }
.testimonial-program {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--sage-pale);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212, 133, 106, 0.85) 0%, rgba(122, 155, 138, 0.85) 100%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 36px;
}
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.5fr; gap: 40px; }
}
.footer-brand .site-logo {
  margin-bottom: 14px;
}
.footer-brand > p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}
.footer h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--coral-soft); }
.newsletter-input { display: flex; margin-top: 4px; }
.newsletter-input input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: 50px 0 0 50px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input input:focus { border-color: var(--sage); }
.newsletter-input button {
  padding: 12px 20px;
  background: var(--sage);
  border: none;
  border-radius: 0 50px 50px 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-input button:hover { background: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--coral-soft); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== WORDPRESS SPECIFIC ===== */
.wp-block-image img { border-radius: 12px; }
.entry-content p { margin-bottom: 1.5em; }
.entry-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 1.5em 0 0.5em;
}
.entry-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 1.2em 0 0.4em;
}

/* ===== EVENT ESPRESSO — MASTER SCHEDULE ===== */

/* Page wrapper padding for fixed header */
.page-template-default main,
.page-id-masterschedule main {
  padding-top: 100px;
}

/* Page title */
.entry-content h1,
.page-template-default h1.entry-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* Category filter bar */
.category-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.category-filter label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.category-filter select,
#ee_filter_cat {
  appearance: none;
  -webkit-appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A9B8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid var(--sage-light);
  border-radius: 6px;
  padding: 8px 36px 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 180px;
}
.category-filter select:focus,
#ee_filter_cat:focus {
  outline: none;
  border-color: var(--sage);
}

/* Search bar */
#filter {
  border: 1.5px solid var(--sage-light);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  width: 220px;
  transition: border-color 0.2s;
}
#filter:focus {
  outline: none;
  border-color: var(--sage);
}

/* Table container — full width, scrollable wrapper */
.entry-content,
article.entry-content {
  max-width: 100% !important;
  width: 100%;
}
/* Scrollable wrapper — added by JS in page-masterschedule.php */
.ee-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
#ee_filter_table {
  width: 100%;
  min-width: 640px; /* keeps columns legible; wrapper scrolls on mobile */
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 0;
  font-family: var(--font-body);
  table-layout: auto;
}

/* Fallback — scrollable content area if JS wrap fails */
.schedule--compact .container { overflow-x: auto; }

/* Header row */
.espresso-table-header-row tr,
#ee_filter_table thead tr {
  background: #2A2A28 !important;
}
.espresso-table-header-row th,
#ee_filter_table thead th {
  padding: 10px 14px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-align: left !important;
  white-space: nowrap !important;
  border: none !important;
  background: #2A2A28 !important;
}

/* Body rows */
.espresso-table-row,
#ee_filter_table tbody tr {
  border-bottom: 1px solid var(--cream);
  transition: background 0.2s;
}
.espresso-table-row:last-child,
#ee_filter_table tbody tr:last-child {
  border-bottom: none;
}
.espresso-table-row:hover,
#ee_filter_table tbody tr:hover {
  background: var(--sage-pale);
}

/* Cells */
.espresso-table-row td,
#ee_filter_table tbody td {
  padding: 9px 14px;
  font-size: 13px;
  color: var(--text-mid);
  vertical-align: middle;
  border: none;
  line-height: 1.3;
}

/* Event title link */
.espresso-table-row td.event_title a.registartionlink,
#ee_filter_table .event_title a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.35;
}
.espresso-table-row td.event_title a.registartionlink:hover,
#ee_filter_table .event_title a:hover {
  color: var(--coral);
}

/* Date lists — remove bullets, tighten spacing */
.ee-table-view-datetime-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ee-table-view-datetime-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 2px 0;
  white-space: nowrap;
}

/* Venue cells */
td.venue_title {
  font-size: 13px;
  color: var(--text-mid);
}

/* Instructor cell */
#ee_filter_table td.event_title:not(:first-child) {
  font-size: 13px;
  color: var(--sage-deep);
  font-weight: 600;
}

/* Register / Sold Out buttons */
.a_register_link,
.a_register_link_sold_out {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.a_register_link {
  background: var(--coral);
  color: var(--white) !important;
}
.a_register_link:hover {
  background: var(--sage-deep);
  transform: scale(1.03);
}
.a_register_link_sold_out {
  background: var(--sand);
  color: var(--text-light) !important;
  cursor: default;
}

/* Footer / pagination */
#ee_filter_table tfoot td {
  padding: 14px 18px;
  background: var(--cream);
  border-top: 1px solid var(--sand);
}
.pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }

/* Alternating row tint */
#ee_filter_table tbody tr:nth-child(odd) {
  background: #ffffff;
}
#ee_filter_table tbody tr:nth-child(even) {
  background: #f0f4f1;
}
#ee_filter_table tbody tr:hover {
  background: var(--coral-pale) !important;
}

/*
 * Mobile — override BOTH our own stacking AND EE's .ee-responsive-table stacking.
 * The table stays as a proper <table> at all widths; .ee-table-wrap scrolls it.
 */
@media only screen and (max-width: 760px),
       (min-device-width: 768px) and (max-device-width: 1024px) {

  /* Undo EE's espresso_default.css responsive stacking */
  .ee-table-wrap .ee-responsive-table,
  .ee-table-wrap .ee-responsive-table thead,
  .ee-table-wrap .ee-responsive-table tbody,
  .ee-table-wrap .ee-responsive-table tfoot,
  .ee-table-wrap .ee-responsive-table tr,
  .ee-table-wrap .ee-responsive-table th,
  .ee-table-wrap .ee-responsive-table td {
    display: revert !important;
  }
  .ee-table-wrap .ee-responsive-table           { display: table !important; }
  .ee-table-wrap .ee-responsive-table thead     { display: table-header-group !important; position: static !important; top: auto !important; left: auto !important; }
  .ee-table-wrap .ee-responsive-table tbody     { display: table-row-group !important; }
  .ee-table-wrap .ee-responsive-table tfoot     { display: table-footer-group !important; }
  .ee-table-wrap .ee-responsive-table tr        { display: table-row !important; border: none !important; }
  .ee-table-wrap .ee-responsive-table th,
  .ee-table-wrap .ee-responsive-table td        { display: table-cell !important; padding-left: 14px !important; position: static !important; }

  /* Hide EE's generated data-th labels */
  .ee-table-wrap .ee-responsive-table td::before { display: none !important; content: none !important; }
}

/* Also undo our own previous stacked-card approach for #ee_filter_table */
@media (max-width: 700px) {
  .ee-table-wrap #ee_filter_table thead,
  .ee-table-wrap #ee_filter_table tbody tr,
  .ee-table-wrap #ee_filter_table tbody td { display: revert !important; }
  .ee-table-wrap #ee_filter_table           { display: table !important; }
  .ee-table-wrap #ee_filter_table thead     { display: table-header-group !important; }
  .ee-table-wrap #ee_filter_table tbody     { display: table-row-group !important; }
  .ee-table-wrap #ee_filter_table tr        { display: table-row !important; }
  .ee-table-wrap #ee_filter_table th,
  .ee-table-wrap #ee_filter_table td        { display: table-cell !important; }
  .ee-table-wrap #ee_filter_table td::before { display: none !important; content: none !important; }
}

/* ===== INTERIOR PAGE LAYOUT ===== */

.page-hero {
  padding: 120px 0 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
}
.page-hero--compact {
  padding: 80px 0 32px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.page-breadcrumb a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover { color: var(--coral); }
.page-breadcrumb span { color: var(--text-light); }

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 800px;
}

.page-main {
  padding: 56px 0 96px;
  min-height: 50vh;
}

.page-container {
  max-width: 900px;
}

/* ===== PAGE CONTENT TYPOGRAPHY ===== */

.page-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.4em;
  max-width: 72ch;
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--text-dark);
  margin: 2em 0 0.6em;
  line-height: 1.15;
}

.page-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.8em 0 0.5em;
  letter-spacing: -0.01em;
}

.page-content h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 1.5em 0 0.4em;
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--sand);
  margin: 40px 0;
}

.page-content strong {
  font-weight: 700;
  color: var(--text-dark);
}

.page-content a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.page-content a:hover { color: var(--sage-deep); }

/* Images */
.page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 16px 0;
}
.page-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.page-content img.alignleft {
  float: left;
  margin: 4px 24px 16px 0;
}
.page-content img.alignright {
  float: right;
  margin: 4px 0 16px 24px;
}

/* Lists */
.page-content ul,
.page-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
  color: var(--text-mid);
  line-height: 1.8;
}
.page-content li { margin-bottom: 0.4em; }

/* Module / event listing blocks */
.page-content strong + br + a,
.page-content p > strong:first-child {
  color: var(--text-dark);
}

/* Register button image — make it styled */
.page-content a img[src*="register"],
.page-content a img[src*="Register"] {
  border-radius: 6px;
  transition: opacity 0.2s, transform 0.2s;
}
.page-content a img[src*="register"]:hover,
.page-content a img[src*="Register"]:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Clearfix for floated images */
.page-content::after {
  content: '';
  display: table;
  clear: both;
}

/* ===== PILATES TRAINING PAGE ===== */

.pt-section { padding: 80px 0; }

.pt-overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}

.pt-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Two-column layout */
.pt-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.pt-two-col--reverse { direction: rtl; }
.pt-two-col--reverse > * { direction: ltr; }

@media (max-width: 860px) {
  .pt-two-col { grid-template-columns: 1fr; gap: 40px; }
  .pt-two-col--reverse { direction: ltr; }
}

/* Intro section */
.pt-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2em;
}
.pt-intro-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.pt-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Training levels */
.pt-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .pt-levels-grid { grid-template-columns: 1fr; }
}

.pt-level-card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pt-level-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}
.pt-level-card--featured {
  border-color: var(--sage);
  background: var(--sage-pale);
}

.pt-level-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pt-level-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 8px;
}
.pt-level-card--featured .pt-level-number { color: var(--sage); }

.pt-level-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.pt-level-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.pt-level-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pt-level-card ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream);
  padding-left: 18px;
  position: relative;
}
.pt-level-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 12px;
}
.pt-level-card ul li:last-child { border-bottom: none; }

/* Why Fusion */
.pt-why-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
}
.pt-why-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2em;
}
.pt-why-points { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.pt-why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pt-why-icon {
  color: var(--coral);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}
.pt-why-point strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.pt-why-point p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

/* Testimonials */
.pt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .pt-testimonials-grid { grid-template-columns: 1fr; }
}

.pt-testimonial {
  background: var(--warm-white);
  border-left: 3px solid var(--sage);
  border-radius: 0 12px 12px 0;
  padding: 28px 28px 24px;
}
.pt-testimonial blockquote {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 16px;
}
.pt-testimonial cite {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

/* CTA Banner */
.pt-cta-banner {
  background: var(--sage-deep);
  padding: 72px 0;
  text-align: center;
}
.pt-cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.pt-cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}
.btn-outline-light {
  background: transparent;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Level card total hours line */
.pt-level-total {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-deep);
  padding-top: 12px;
  border-top: 1px solid var(--sand);
}

/* ===== PILATES TRAINING HUB PAGE ===== */

.page-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 600px;
  margin-top: 16px;
}

.hub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .hub-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.hub-card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.hub-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}
.hub-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.hub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  border-radius: 0;
  margin: 0;
}
.hub-card:hover .hub-card-image img { transform: scale(1.04); }

.hub-card-body {
  padding: 28px;
}
.hub-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.hub-card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.hub-card-body p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.hub-card-body .btn { font-size: 12px; padding: 11px 22px; }

/* Trust strip */
.hub-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
@media (max-width: 700px) {
  .hub-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.hub-trust-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 8px;
}
.hub-trust-label {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ===== WOMEN'S HEALTH HUB ===== */
.wh-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 860px) {
  .wh-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}
.wh-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.wh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.wh-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--sage), var(--coral));
}
.wh-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.wh-card-number {
  font-family: var(--font-head);
  font-size: 40px;
  line-height: 1;
  color: var(--sage);
  opacity: 0.25;
  margin-bottom: 12px;
}
.wh-card-body h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-dark);
  margin: 0 0 14px;
  font-weight: 400;
}
.wh-card-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.wh-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.wh-card-body ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0 5px 16px;
  border-left: 2px solid var(--sand);
  margin-bottom: 6px;
}

/* ===== MOVEMENT PRINCIPLES PAGE ===== */

.mp-learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 860px) { .mp-learn-grid { grid-template-columns: 1fr; gap: 40px; } }

.mp-learn-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2em;
}

.mp-learn-topics { display: flex; flex-direction: column; gap: 20px; }
.mp-topic {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--sand);
}
.mp-topic-icon {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--sage-light);
  flex-shrink: 0;
  width: 32px;
  line-height: 1;
  margin-top: 2px;
}
.mp-topic strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.mp-topic p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

/* Detail cards */
.mp-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .mp-details-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

.mp-detail-card {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 16px;
  padding: 32px 28px;
}
.mp-detail-card--highlight {
  border-color: var(--sage);
  background: var(--sage-pale);
}
.mp-detail-icon {
  font-size: 20px;
  color: var(--coral);
  margin-bottom: 12px;
}
.mp-detail-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.mp-detail-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.mp-detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.mp-detail-card ul li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 0 6px 18px;
  border-bottom: 1px solid var(--cream);
  position: relative;
  line-height: 1.5;
}
.mp-detail-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 11px;
  top: 8px;
}
.mp-detail-card ul li:last-child { border-bottom: none; }
.mp-detail-card ul li a { color: var(--coral); text-decoration: underline; }
.mp-detail-value {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--sage-deep) !important;
  margin-top: 12px !important;
}

/* ===== EVENT ESPRESSO — REGISTER NOW BUTTONS ===== */

.ticket-selector-submit-btn-wrap {
  float: none !important;
  display: block !important;
  text-align: center !important;
  margin-top: 12px !important;
  padding-top: 0 !important;
  clear: both !important;
}

.ticket-selector-submit-btn {
  float: none !important;
  display: inline-block !important;
  background: var(--coral) !important;
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  width: auto !important;
  min-width: 180px !important;
}

.ticket-selector-submit-btn:hover {
  background: var(--sage-deep) !important;
  transform: scale(1.03) !important;
}

.ticket-selector-submit-btn.view-details-btn {
  background: var(--sage) !important;
}
.ticket-selector-submit-btn.view-details-btn:hover {
  background: var(--sage-deep) !important;
}

/* Tighten spacing between event info and button */
.ee-event-registration-details-dv,
.ticket-selector-form {
  margin-top: 8px !important;
}

/* ===== MODULE PAGES (Mat, Reformer, Apparatus) ===== */
.mod-section {
  padding: 70px 0 50px;
}
.mod-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 36px;
}
.mod-number {
  font-family: var(--font-head);
  font-size: 64px;
  line-height: 1;
  color: var(--sage);
  opacity: 0.22;
  flex-shrink: 0;
  min-width: 68px;
  text-align: right;
}
.mod-header .pt-overline {
  margin-bottom: 4px;
}
.mod-header .pt-heading {
  margin-bottom: 6px;
}
.mod-subtitle {
  font-style: italic;
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}
.mod-body {
  padding-left: 96px; /* align with header text, after number */
}
@media (max-width: 768px) {
  .mod-body { padding-left: 0; }
  .mod-number { font-size: 40px; min-width: 44px; }
}
.mod-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
@media (max-width: 720px) {
  .mod-detail-row { grid-template-columns: 1fr; }
}
.mod-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 10px;
}
.mod-prereqs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mod-prereqs ul li {
  padding: 7px 0 7px 14px;
  border-left: 2px solid var(--sand);
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.mod-prep-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 20px 22px;
}
.mod-prep-icon {
  color: var(--sage);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mod-prep-note strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.mod-prep-note p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.mod-events-section {
  padding: 48px 0;
}
.mod-events-heading {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 32px;
  font-weight: 400;
}
.ee-no-events-notice {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  padding: 20px 0 8px;
  margin: 0;
}
.ee-no-events-notice a {
  color: var(--coral);
  text-decoration: underline;
}

/* ===== GROW MENTORSHIP PAGE ===== */

/* Opening quote */
.grow-quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0 56px;
}
.grow-quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.5;
  color: var(--sage);
  opacity: 0.3;
  margin-bottom: 16px;
}
.grow-quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin: 0 0 20px;
  border: none;
  padding: 0;
}
.grow-quote-block cite {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
}

/* Devotion / intent section */
.grow-devotion {
  background: var(--dark);
  padding: 80px 0;
}
.grow-devotion-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.grow-devotion-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--white);
  font-weight: 400;
  line-height: 1.4;
  margin: 16px 0 24px;
}
.grow-devotion-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Four Phases */
.grow-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (max-width: 960px) {
  .grow-phases { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grow-phases { grid-template-columns: 1fr; }
}
.grow-phase {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.grow-phase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--coral));
}
.grow-phase-months {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.grow-phase-number {
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 1;
  color: var(--sage);
  opacity: 0.18;
  margin-bottom: 12px;
}
.grow-phase h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 12px;
}
.grow-phase p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Program Notes strip */
.grow-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
@media (max-width: 860px) {
  .grow-notes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .grow-notes { grid-template-columns: 1fr; }
}
.grow-note {
  text-align: center;
}
.grow-note-icon {
  font-size: 24px;
  margin-bottom: 10px;
}
.grow-note strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.grow-note p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Sessions grid */
.grow-sessions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .grow-sessions { grid-template-columns: 1fr; }
}
.grow-session {
  background: var(--cream);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid var(--sand);
  position: relative;
}
.grow-session--highlight {
  background: var(--dark);
  border-color: var(--dark);
}
.grow-session--highlight .grow-session-freq {
  color: rgba(255,255,255,0.5);
}
.grow-session--highlight h3 {
  color: var(--white);
}
.grow-session--highlight p {
  color: rgba(255,255,255,0.65);
}
.grow-session-freq {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.grow-session h3 {
  font-family: var(--font-head);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 14px;
}
.grow-session p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Benefits two-col */
.grow-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 720px) {
  .grow-benefits { grid-template-columns: 1fr; gap: 40px; }
}
.grow-benefit-col {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.grow-benefit-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.grow-benefit-col h3 {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  color: var(--text-dark);
  margin: 8px 0 20px;
}
.grow-benefit-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.grow-benefit-col ul li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 9px 0 9px 16px;
  border-left: 2px solid var(--sand);
  margin-bottom: 8px;
}
.grow-benefit-col ul li strong {
  color: var(--sage);
}

/* Pricing */
.grow-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 800px) {
  .grow-pricing { grid-template-columns: 1fr; }
}
.grow-pricing-main {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--sand);
}
.grow-pricing-total {
  background: var(--dark);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.grow-price-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.grow-price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.grow-price-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.grow-pricing-breakdown {
  padding: 28px 36px;
}
.grow-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 14px;
  color: var(--text-light);
}
.grow-price-row:last-child { border-bottom: none; }
.grow-price-row strong {
  color: var(--text-dark);
  font-size: 15px;
}
.grow-price-row--highlight {
  background: rgba(122,155,138,0.08);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 8px -14px 0;
  border: none;
}
.grow-price-row--highlight span {
  color: var(--sage);
  font-weight: 600;
}
.grow-price-row--highlight strong {
  color: var(--sage);
}
.grow-pricing-note {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.grow-note-callout {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--sand);
}
.grow-note-callout p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.grow-note-callout p:last-of-type { margin-bottom: 0; }

/* ===== NEWSLETTER POPUP ===== */
.nl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 32, 28, 0.65);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nl-overlay.active {
  opacity: 1;
  visibility: visible;
}
.nl-popup {
  background: var(--warm-white);
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  padding: 52px 40px 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.nl-overlay.active .nl-popup {
  transform: translateY(0);
}
.nl-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  border-radius: 40px;
  padding: 9px 18px 9px 14px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.nl-close:hover { background: var(--coral); }
.nl-popup h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 10px 0 12px;
}
.nl-popup p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nl-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input[type="email"]:focus { border-color: var(--sage); }
.nl-form .btn-coral { width: 100%; justify-content: center; text-align: center; }
.nl-skip {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 13px;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}
.nl-skip:hover { color: var(--text-dark); }
@media (max-width: 500px) {
  .nl-popup { padding: 48px 24px 32px; }
}
.nl-message {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
  min-height: 18px;
}
.nl-message--success { color: var(--sage-deep); font-weight: 600; }
.nl-message--error   { color: var(--coral); }
#footerNlMessage { text-align: left; margin-top: 8px; }

/* ===== TESTIMONIALS PAGE ===== */
.tpage-hero { padding-bottom: 56px; }
.tpage-hero-sub {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 640px;
}

/* Stats Strip */
.tpage-stats-strip {
  background: var(--sage-pale);
  border-bottom: 1px solid rgba(122, 155, 138, 0.18);
  padding: 28px 0;
}
.tpage-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.tpage-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 40px;
  text-align: center;
}
.tpage-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--sage-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.tpage-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.tpage-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(122, 155, 138, 0.35);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .tpage-stat { padding: 8px 20px; }
  .tpage-stat-divider { display: none; }
  .tpage-stats { gap: 8px; }
}

/* Featured Quote */
.tpage-feature {
  padding: 80px 0 72px;
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}
.tpage-feature-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.tpage-feature-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.6;
  color: var(--coral-pale);
  margin-bottom: 24px;
  display: block;
}
.tpage-feature-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.tpage-feature-cite {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  font-style: normal;
}
#footerNlMessage.nl-message--success { color: var(--sage-light); }

/* ===== HOST A COURSE PAGE ===== */

/* Benefit cards */
.host-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .host-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .host-benefits { grid-template-columns: 1fr; }
}
.host-benefit {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
.host-benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--coral));
}
.host-benefit-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.host-benefit h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.host-benefit p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* How It Works steps */
.host-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.host-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--sage-light), var(--coral-pale));
  z-index: 0;
}
@media (max-width: 860px) {
  .host-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .host-steps::before { display: none; }
}
@media (max-width: 520px) {
  .host-steps { grid-template-columns: 1fr; }
}
.host-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.host-step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  background: var(--sage);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  letter-spacing: 0.04em;
}
.host-step h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.host-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* Available Courses grid */
.host-courses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .host-courses { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .host-courses { grid-template-columns: 1fr; }
}
.host-course {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.host-course-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.host-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.host-course:hover .host-course-img img {
  transform: scale(1.04);
}
.host-course-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.host-course:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.07);
}
.host-course-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.host-course h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.3;
}
.host-course p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0 0 auto;
  flex: 1;
}
.host-course-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}
.host-course-link:hover { color: var(--coral); }

/* Requirements in dark section */
.host-reqs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 860px) {
  .host-reqs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .host-reqs { grid-template-columns: 1fr; }
}
.host-req {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.host-req-icon { font-size: 24px; margin-bottom: 12px; }
.host-req strong {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  font-weight: 700;
}
.host-req p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

/* Location chips */
.host-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}
.host-location-chip {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--sand);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.host-location-chip--dark {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}

/* Partnership Models */
.host-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 860px) {
  .host-models { grid-template-columns: 1fr; }
}
.host-model {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.host-model--featured {
  border: 2px solid var(--coral-pale);
}
.host-model-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-pale);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.host-model-tag--coral {
  color: var(--coral);
  background: var(--coral-pale);
}
.host-model-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 10px;
  line-height: 1.2;
}
.host-model-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0 0 24px;
}
.host-model-rows {
  border-top: 1px solid var(--sand);
  margin-bottom: 24px;
}
.host-model-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 13px;
}
.host-model-row span { color: var(--text-light); }
.host-model-row strong { color: var(--text-dark); font-weight: 700; white-space: nowrap; }
.host-model-row--note {
  display: block;
  padding: 8px 0;
}
.host-model-formula {
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
}
.host-model-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 4px;
}
.host-model-side-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}
.host-model-side ul,
.host-model-payment ol {
  margin: 0;
  padding: 0 0 0 16px;
}
.host-model-side ul li,
.host-model-payment ol li {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 4px;
}
.host-model-payment ol li strong { color: var(--text-dark); }
.host-model-volume {
  margin-bottom: 20px;
}
.host-volume-rows {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.host-volume-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  background: var(--sage-pale);
  border-radius: 10px;
  flex: 1;
  min-width: 80px;
  text-align: center;
}
.host-volume-row span {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.host-volume-row strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--sage-deep);
}
.host-model-payment {
  margin-bottom: 4px;
}
.host-model-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== GLOBAL LOCATIONS SECTION ===== */
.loc-section--light {
  background: var(--cream);
}
.loc-sub-text {
  font-size: 15px;
  color: var(--text-light);
  max-width: 520px;
  margin: 12px auto 0;
  text-align: center;
  line-height: 1.65;
}
.loc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
.loc-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px 9px;
  border-radius: 10px;
  border: 1px solid var(--sand);
  background: var(--white);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.loc-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}
.loc-chip--intl {
  border-color: var(--coral-pale);
  background: #fdf6f3;
}
.loc-chip--domestic {
  border-color: var(--sage-pale);
  background: #f2f6f4;
}
.loc-chip-venue {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.loc-chip-city {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.3;
  margin-top: 1px;
}

/* Dark variant (host page) */
.loc-chips--dark .loc-chip {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}
.loc-chips--dark .loc-chip:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: none;
}
.loc-chips--dark .loc-chip--intl {
  background: rgba(212, 133, 106, 0.15);
  border-color: rgba(212, 133, 106, 0.25);
}
.loc-chips--dark .loc-chip--domestic {
  background: rgba(184, 207, 194, 0.12);
  border-color: rgba(184, 207, 194, 0.2);
}
.loc-chips--dark .loc-chip-venue { color: rgba(255,255,255,0.9); }
.loc-chips--dark .loc-chip-city  { color: rgba(255,255,255,0.5); }

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-section { background: var(--warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-intro {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Detail items */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-detail-item a,
.contact-detail-item span {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
}
.contact-detail-item a:hover { color: var(--sage-deep); text-decoration: underline; }

/* Social row */
.contact-social {
  display: flex;
  gap: 10px;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.contact-social-link:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
  background: var(--sage-pale);
}

/* Quick links */
.contact-links-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.contact-links-list li { margin-bottom: 10px; }
.contact-links-list a {
  color: var(--text-mid);
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.contact-links-list a::before {
  content: '→';
  font-size: 13px;
  color: var(--coral);
}
.contact-links-list a:hover { color: var(--sage-deep); }

/* Form card */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.contact-form-row .contact-form-group { margin-bottom: 0; }

.contact-form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.contact-required { color: var(--coral); margin-left: 1px; }
.contact-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,155,138,0.15);
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder { color: var(--text-light); opacity: 0.65; }

.contact-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 14px;
  margin-top: 4px;
}
.contact-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* Status message */
.contact-status { font-size: 15px; font-weight: 500; line-height: 1.5; }
.contact-status:empty { display: none; }
.contact-status--success {
  display: block;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(91,125,107,0.1);
  color: var(--sage-deep);
  border: 1px solid rgba(91,125,107,0.2);
  margin-bottom: 24px;
}
.contact-status--error {
  display: block;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(212,133,106,0.1);
  color: var(--coral);
  border: 1px solid rgba(212,133,106,0.2);
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 36px 28px; }
}
@media (max-width: 560px) {
  .contact-form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* =====================================================================
   EE UPCOMING EVENTS (course pages)
   ===================================================================== */
.ee-upcoming-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Desktop: 4-column row */
.ee-upcoming-item {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1fr auto;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 16px 22px;
}

/* Tablet: 2-column grid */
@media (max-width: 860px) {
  .ee-upcoming-item {
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    padding: 14px 18px;
  }
  .ee-date       { grid-column: 1; grid-row: 1; }
  .ee-venue      { grid-column: 2; grid-row: 1; text-align: right; }
  .ee-instructor { grid-column: 1; grid-row: 2; }
  .ee-upcoming-item .btn { grid-column: 2; grid-row: 2; justify-self: end; white-space: nowrap; }
}

.ee-date {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.ee-instructor {
  font-size: 14px;
  color: var(--text-mid);
}

.ee-venue {
  font-size: 14px;
  color: var(--text-light);
}

.ee-no-courses {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  font-style: italic;
  margin: 8px auto 0;
}
.ee-no-courses a {
  color: var(--sage-deep);
  text-decoration: underline;
}

/* Mobile: single-column stacked card */
@media (max-width: 480px) {
  .ee-upcoming-item {
    grid-template-columns: 1fr;
    padding: 14px 16px;
  }
  .ee-date, .ee-instructor, .ee-venue {
    grid-column: 1;
    grid-row: auto;
    text-align: left;
  }
  .ee-upcoming-item .btn {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
}
