/*
 Theme Name: The Warwick Academy
 Theme URI: https://thewarwickacademy.com
 Description: Premium dark luxury theme for The Warwick Academy — Build. Scale. Get Known.
 Author: The Warwick Academy
 Author URI: https://thewarwickacademy.com
 Template: astra
 Version: 1.0.0
 Text Domain: warwick-academy
*/

/* ========== CSS VARIABLES ========== */
:root {
  --gold: #C9A84C;
  --gold-l: #E2C97E;
  --gold-xl: #F0DFA0;
  --gold-d: #7A611E;
  --rose: #C4907A;
  --rose-l: #DDB8A8;
  --rose-xl: #EDD4C8;
  --rose-d: #6B3E30;
  --bg: #0A090C;
  --bg2: #100E13;
  --bg3: #181520;
  --cream: #F0EDE6;
  --grey-l: #A8A4B0;
  --grey-d: #6B6777;
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 0;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body, .ast-separate-container, .ast-page-builder-template .entry-content, 
.ast-plain-container, #page, .site-content {
  background: var(--bg) !important;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.site-header, .ast-primary-header, #masthead { display: none !important; }
.site-footer, #colophon, .ast-footer-overlay { display: none !important; }
.entry-header { display: none !important; }
.ast-container { max-width: 100% !important; padding: 0 !important; }
.site-content .ast-container { display: block !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }
article.page { margin: 0 !important; padding: 0 !important; }
.ast-single-post .entry-content, .ast-page-builder-template .entry-content { margin: 0 !important; }
#primary, #content, .content-area { width: 100% !important; margin: 0 !important; padding: 0 !important; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-l); }

img { max-width: 100%; height: auto; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--cream);
  font-weight: 400;
  line-height: 1.2;
}

.wa-section { padding: var(--section-pad); position: relative; }
.wa-container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ========== CUSTOM NAV ========== */
.wa-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,9,12,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  padding: 0 40px;
}
.wa-nav.scrolled { background: rgba(10,9,12,0.97); }
.wa-nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}
.wa-logo {
  font-family: var(--font-heading); font-size: 22px; color: var(--cream);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
}
.wa-logo span { color: var(--gold); }
.wa-nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.wa-nav-links a {
  color: var(--grey-l); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
  position: relative; padding: 4px 0;
}
.wa-nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: var(--transition);
}
.wa-nav-links a:hover { color: var(--cream); }
.wa-nav-links a:hover::after { width: 100%; }
.wa-nav-cta {
  background: var(--gold) !important; color: var(--bg) !important;
  padding: 10px 24px !important; font-size: 12px !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  font-weight: 700 !important; border: none !important;
  transition: var(--transition) !important;
}
.wa-nav-cta:hover { background: var(--gold-l) !important; transform: translateY(-1px); }

/* Mobile nav */
.wa-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.wa-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: var(--transition); }

@media (max-width: 768px) {
  .wa-hamburger { display: flex; }
  .wa-nav-links {
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--bg); flex-direction: column; padding: 40px;
    gap: 24px; transform: translateX(100%); transition: var(--transition);
  }
  .wa-nav-links.open { transform: translateX(0); }
}

/* ========== HERO ========== */
.wa-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; padding-top: 80px;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(196,144,122,0.04) 0%, transparent 60%),
              var(--bg);
  overflow: hidden;
}
.wa-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.wa-hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 900px; margin: 0 auto; padding: 0 40px;
}
.wa-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 20px; border-radius: 100px; margin-bottom: 32px;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-l); font-weight: 500;
}
.wa-hero-badge::before { content: '●'; font-size: 6px; color: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.wa-hero h1 {
  font-size: clamp(42px, 7vw, 80px); line-height: 1.05;
  margin-bottom: 24px; font-weight: 300;
}
.wa-hero h1 em {
  font-style: italic; color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.wa-hero p {
  font-size: 18px; color: var(--grey-l); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.8;
}

.wa-hero-stats {
  display: flex; justify-content: center; gap: 60px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid rgba(201,168,76,0.15);
}
.wa-hero-stat { text-align: center; }
.wa-hero-stat-num {
  font-family: var(--font-heading); font-size: 42px; color: var(--gold);
  display: block; line-height: 1;
}
.wa-hero-stat-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--grey-l); margin-top: 8px; display: block;
}

/* ========== BUTTONS ========== */
.wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; font-family: var(--font-body);
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none;
}
.wa-btn-gold {
  background: var(--gold); color: var(--bg);
}
.wa-btn-gold:hover { background: var(--gold-l); color: var(--bg); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.3); }
.wa-btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(240,237,230,0.2);
}
.wa-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.wa-btn-rose { background: var(--rose); color: var(--bg); }
.wa-btn-rose:hover { background: var(--rose-l); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,144,122,0.3); }

.wa-btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CREDENTIALS MARQUEE ========== */
.wa-marquee {
  padding: 24px 0; border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden; background: var(--bg2);
}
.wa-marquee-track {
  display: flex; gap: 60px; animation: marquee 30s linear infinite;
  width: max-content;
}
.wa-marquee-track:hover { animation-play-state: paused; }
.wa-marquee-item {
  font-size: 13px; color: var(--grey-d); letter-spacing: 2px;
  text-transform: uppercase; white-space: nowrap; font-weight: 500;
}
.wa-marquee-item span { color: var(--gold); margin: 0 20px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== SECTION HEADERS ========== */
.wa-section-header { text-align: center; margin-bottom: 60px; }
.wa-section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block; font-weight: 600;
}
.wa-section-title {
  font-size: clamp(32px, 4vw, 52px); margin-bottom: 16px; font-weight: 300;
}
.wa-section-subtitle {
  font-size: 17px; color: var(--grey-l); max-width: 600px; margin: 0 auto;
  line-height: 1.8;
}

/* ========== PROBLEM / PROMISE ========== */
.wa-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.wa-split-left {
  padding: 80px 60px; background: var(--bg2);
  border-right: 1px solid rgba(201,168,76,0.1);
}
.wa-split-right { padding: 80px 60px; background: var(--bg3); }
.wa-split h3 {
  font-size: 28px; margin-bottom: 24px; font-weight: 300;
}
.wa-split ul { list-style: none; }
.wa-split ul li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px; color: var(--grey-l); display: flex; align-items: flex-start; gap: 12px;
}
.wa-split ul li::before { font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.wa-split-left ul li::before { content: '✕'; color: #8B3A3A; }
.wa-split-right ul li::before { content: '✓'; color: var(--gold); }

@media (max-width: 768px) { .wa-split { grid-template-columns: 1fr; } }

/* ========== INSTRUCTOR CARDS ========== */
.wa-instructors { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.wa-instructor {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.05);
  padding: 48px; position: relative; overflow: hidden;
  transition: var(--transition);
}
.wa-instructor:hover { border-color: rgba(201,168,76,0.2); }
.wa-instructor--james .wa-instructor-accent { background: var(--gold); }
.wa-instructor--louisa .wa-instructor-accent { background: var(--rose); }
.wa-instructor-accent {
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
}
.wa-instructor-photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--bg3); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 36px; color: var(--gold);
  border: 2px solid rgba(201,168,76,0.2);
}
.wa-instructor--louisa .wa-instructor-photo { color: var(--rose); border-color: rgba(196,144,122,0.2); }
.wa-instructor h3 { font-size: 28px; margin-bottom: 8px; }
.wa-instructor-role {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; display: block;
}
.wa-instructor--louisa .wa-instructor-role { color: var(--rose); }
.wa-instructor p { color: var(--grey-l); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.wa-instructor-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.wa-instructor-cred {
  font-size: 11px; padding: 6px 14px; background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15); color: var(--gold-l);
  letter-spacing: 0.5px;
}
.wa-instructor--louisa .wa-instructor-cred {
  background: rgba(196,144,122,0.08); border-color: rgba(196,144,122,0.15);
  color: var(--rose-l);
}

@media (max-width: 768px) { .wa-instructors { grid-template-columns: 1fr; } }

/* ========== PRODUCT CARDS ========== */
.wa-products { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.wa-product {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; transition: var(--transition);
  display: flex; flex-direction: column;
}
.wa-product:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.wa-product-cover {
  width: 100%; aspect-ratio: 3/4; background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.wa-product-cover-placeholder {
  font-family: var(--font-heading); font-size: 18px; color: var(--grey-d);
  text-align: center; padding: 20px;
}
.wa-product-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: var(--bg); font-size: 10px;
  padding: 4px 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
}
.wa-product-badge--rose { background: var(--rose); }
.wa-product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.wa-product-author {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; font-weight: 600;
}
.wa-product-author--louisa { color: var(--rose); }
.wa-product h3 { font-size: 22px; margin-bottom: 12px; font-weight: 400; }
.wa-product p { font-size: 14px; color: var(--grey-l); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.wa-product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.wa-product-price {
  font-family: var(--font-heading); font-size: 28px; color: var(--cream);
}
.wa-product-price small { font-size: 14px; color: var(--grey-d); }
.wa-product-buy {
  padding: 10px 24px; background: var(--gold); color: var(--bg);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; font-family: var(--font-body);
}
.wa-product-buy:hover { background: var(--gold-l); color: var(--bg); }
.wa-product--louisa .wa-product-buy { background: var(--rose); }
.wa-product--louisa .wa-product-buy:hover { background: var(--rose-l); }

/* ========== COURSE CARDS ========== */
.wa-courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.wa-course {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.05);
  padding: 48px; position: relative; overflow: hidden;
}
.wa-course::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
}
.wa-course--louisa::before { background: linear-gradient(90deg, var(--rose), var(--rose-l)); }
.wa-course-status {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; display: inline-block; margin-bottom: 20px; font-weight: 700;
}
.wa-course-status--live { background: rgba(76,175,80,0.15); color: #66BB6A; }
.wa-course-status--soon { background: rgba(201,168,76,0.15); color: var(--gold-l); }
.wa-course h3 { font-size: 26px; margin-bottom: 16px; }
.wa-course p { color: var(--grey-l); font-size: 15px; line-height: 1.8; margin-bottom: 24px; }
.wa-course-meta { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.wa-course-meta-item {
  font-size: 12px; color: var(--grey-d); display: flex; align-items: center; gap: 6px;
}
.wa-course-meta-item strong { color: var(--cream); }
.wa-course-price {
  font-family: var(--font-heading); font-size: 36px; color: var(--gold);
  margin-bottom: 24px; display: block;
}
.wa-course--louisa .wa-course-price { color: var(--rose); }

@media (max-width: 768px) { .wa-courses-grid { grid-template-columns: 1fr; } }

/* ========== TESTIMONIALS ========== */
.wa-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.wa-testimonial {
  background: var(--bg2); border: 1px solid rgba(255,255,255,0.05);
  padding: 36px; position: relative;
}
.wa-testimonial::before {
  content: '"'; font-family: var(--font-heading); font-size: 60px;
  color: rgba(201,168,76,0.2); position: absolute; top: 16px; left: 24px;
  line-height: 1;
}
.wa-testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.wa-testimonial p { font-size: 14px; color: var(--grey-l); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.wa-testimonial-author { font-size: 13px; color: var(--cream); font-weight: 600; }
.wa-testimonial-role { font-size: 11px; color: var(--grey-d); margin-top: 2px; }

@media (max-width: 768px) { .wa-testimonials { grid-template-columns: 1fr; } }

/* ========== STATS BAND ========== */
.wa-stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  background: var(--bg2);
}
.wa-stat {
  text-align: center; padding: 40px 20px;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.wa-stat:last-child { border-right: none; }
.wa-stat-num {
  font-family: var(--font-heading); font-size: 40px; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 8px;
}
.wa-stat-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--grey-l);
}
@media (max-width: 768px) {
  .wa-stats-band { grid-template-columns: 1fr 1fr; }
  .wa-stat:nth-child(2) { border-right: none; }
}

/* ========== GUARANTEE ========== */
.wa-guarantee {
  background: var(--bg2); border: 1px solid rgba(201,168,76,0.15);
  padding: 60px; text-align: center; max-width: 700px; margin: 0 auto;
}
.wa-guarantee-badge {
  width: 80px; height: 80px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-family: var(--font-heading); font-size: 14px;
  color: var(--gold); text-align: center; line-height: 1.2;
}
.wa-guarantee h3 { font-size: 28px; margin-bottom: 16px; }
.wa-guarantee p { color: var(--grey-l); font-size: 15px; line-height: 1.8; }

/* ========== FAQ ========== */
.wa-faq { max-width: 700px; margin: 0 auto; }
.wa-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wa-faq-q {
  padding: 24px 0; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: var(--font-heading); font-size: 20px; color: var(--cream);
  background: none; border: none; width: 100%; text-align: left;
  font-weight: 400;
}
.wa-faq-q::after {
  content: '+'; font-size: 24px; color: var(--gold);
  transition: var(--transition); flex-shrink: 0; margin-left: 20px;
}
.wa-faq-item.open .wa-faq-q::after { content: '−'; }
.wa-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.wa-faq-item.open .wa-faq-a { max-height: 300px; }
.wa-faq-a p { padding-bottom: 24px; color: var(--grey-l); font-size: 15px; line-height: 1.8; }

/* ========== NEWSLETTER ========== */
.wa-newsletter {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(196,144,122,0.05));
  border: 1px solid rgba(201,168,76,0.15); padding: 60px; text-align: center;
  max-width: 600px; margin: 0 auto;
}
.wa-newsletter h3 { font-size: 28px; margin-bottom: 12px; }
.wa-newsletter p { color: var(--grey-l); margin-bottom: 28px; font-size: 15px; }
.wa-newsletter-form { display: flex; gap: 0; }
.wa-newsletter-form input {
  flex: 1; padding: 14px 20px; background: var(--bg);
  border: 1px solid rgba(255,255,255,0.1); color: var(--cream);
  font-family: var(--font-body); font-size: 14px; outline: none;
}
.wa-newsletter-form input::placeholder { color: var(--grey-d); }
.wa-newsletter-form button {
  padding: 14px 28px; background: var(--gold); color: var(--bg);
  border: none; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; cursor: pointer;
  font-family: var(--font-body); transition: var(--transition);
}
.wa-newsletter-form button:hover { background: var(--gold-l); }

/* ========== FOOTER ========== */
.wa-footer {
  padding: 80px 0 40px; border-top: 1px solid rgba(201,168,76,0.1);
  background: var(--bg);
}
.wa-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
.wa-footer-brand .wa-logo { margin-bottom: 16px; display: block; }
.wa-footer-brand p { color: var(--grey-d); font-size: 14px; line-height: 1.7; max-width: 280px; }
.wa-footer-col h4 {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 700;
}
.wa-footer-col ul { list-style: none; }
.wa-footer-col ul li { margin-bottom: 10px; }
.wa-footer-col ul a { color: var(--grey-d); font-size: 14px; }
.wa-footer-col ul a:hover { color: var(--cream); }
.wa-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px; display: flex; justify-content: space-between;
  font-size: 12px; color: var(--grey-d);
}

@media (max-width: 768px) {
  .wa-footer-grid { grid-template-columns: 1fr 1fr; }
  .wa-footer-bottom { flex-direction: column; gap: 8px; }
}

/* ========== ABOUT PAGE ========== */
.wa-about-hero {
  padding: 160px 0 100px; text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 60%), var(--bg);
}
.wa-bio-section { padding: 100px 0; }
.wa-bio {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
  margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wa-bio:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.wa-bio-photo {
  aspect-ratio: 3/4; background: var(--bg3);
  border: 1px solid rgba(201,168,76,0.15); position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 48px; color: var(--gold);
}
.wa-bio--louisa .wa-bio-photo { border-color: rgba(196,144,122,0.15); color: var(--rose); }
.wa-bio-content h2 { font-size: 38px; margin-bottom: 8px; }
.wa-bio-tagline {
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; display: block; font-weight: 600;
}
.wa-bio--louisa .wa-bio-tagline { color: var(--rose); }
.wa-bio-content p { color: var(--grey-l); font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.wa-bio-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.wa-bio-highlight {
  background: var(--bg2); padding: 20px; border-left: 2px solid var(--gold);
}
.wa-bio--louisa .wa-bio-highlight { border-color: var(--rose); }
.wa-bio-highlight strong { display: block; color: var(--cream); font-size: 14px; margin-bottom: 4px; }
.wa-bio-highlight span { font-size: 12px; color: var(--grey-d); }

@media (max-width: 768px) {
  .wa-bio { grid-template-columns: 1fr; gap: 40px; }
  .wa-bio-highlights { grid-template-columns: 1fr; }
}

/* ========== CONTACT PAGE ========== */
.wa-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.wa-contact-form input, .wa-contact-form textarea, .wa-contact-form select {
  width: 100%; padding: 16px 20px; background: var(--bg2);
  border: 1px solid rgba(255,255,255,0.08); color: var(--cream);
  font-family: var(--font-body); font-size: 14px; margin-bottom: 16px;
  outline: none; transition: var(--transition);
}
.wa-contact-form input:focus, .wa-contact-form textarea:focus {
  border-color: var(--gold);
}
.wa-contact-form textarea { min-height: 150px; resize: vertical; }
.wa-contact-form label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--grey-l); margin-bottom: 8px; display: block;
}
.wa-contact-info-item {
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.wa-contact-info-item h4 {
  font-family: var(--font-body); font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 600;
}
.wa-contact-info-item p { color: var(--grey-l); font-size: 15px; }

@media (max-width: 768px) { .wa-contact-grid { grid-template-columns: 1fr; } }

/* ========== ANIMATIONS ========== */
.wa-fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.wa-fade-up.visible { opacity: 1; transform: translateY(0); }

.wa-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.wa-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.wa-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.wa-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.wa-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.wa-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.wa-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.wa-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ========== VIDEO EMBED ZONE ========== */
.wa-video-zone {
  background: var(--bg2); border: 1px solid rgba(201,168,76,0.1);
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer;
  max-width: 800px; margin: 0 auto;
}
.wa-video-zone::before {
  content: '▶'; font-size: 48px; color: var(--gold);
  width: 80px; height: 80px; border: 2px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.wa-video-zone:hover::before { background: var(--gold); color: var(--bg); }
.wa-video-zone iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ========== AFFILIATE SECTION ========== */
.wa-affiliate {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border: 1px solid rgba(201,168,76,0.1); padding: 60px; text-align: center;
}
.wa-affiliate h3 { font-size: 32px; margin-bottom: 16px; }
.wa-affiliate p { color: var(--grey-l); max-width: 500px; margin: 0 auto 32px; }
.wa-affiliate-perks {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 32px; flex-wrap: wrap;
}
.wa-affiliate-perk {
  text-align: center;
}
.wa-affiliate-perk strong {
  display: block; font-family: var(--font-heading); font-size: 28px; color: var(--gold);
}
.wa-affiliate-perk span { font-size: 12px; color: var(--grey-d); text-transform: uppercase; letter-spacing: 1px; }

/* ========== FILTER TABS ========== */
.wa-filter-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.wa-filter-tab {
  padding: 10px 24px; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; background: none; border: 1px solid rgba(255,255,255,0.1);
  color: var(--grey-l); cursor: pointer; transition: var(--transition);
  font-family: var(--font-body); font-weight: 500;
}
.wa-filter-tab.active, .wa-filter-tab:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}

/* ========== CTA FINAL ========== */
.wa-cta-final {
  text-align: center; padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 50%), var(--bg);
}
.wa-cta-final h2 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; font-weight: 300; }
.wa-cta-final p { color: var(--grey-l); font-size: 17px; max-width: 550px; margin: 0 auto 40px; }

/* ========== SOCIAL PROOF BAR ========== */
.wa-social-proof {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 16px 0; font-size: 13px; color: var(--grey-l);
}
.wa-social-proof strong { color: var(--cream); }

/* ========== COURSE MODULE LIST ========== */
.wa-module-list { max-width: 700px; margin: 0 auto; }
.wa-module {
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 20px; align-items: baseline;
}
.wa-module-num {
  font-family: var(--font-heading); font-size: 24px; color: var(--gold);
  width: 40px; flex-shrink: 0;
}
.wa-module-title { font-size: 16px; color: var(--cream); }
.wa-module-lessons { font-size: 12px; color: var(--grey-d); margin-left: auto; }

/* ========== UTILITY ========== */
.wa-divider { height: 1px; background: rgba(201,168,76,0.1); margin: 0; }
.wa-spacer-sm { height: 40px; }
.wa-spacer-md { height: 80px; }
.wa-spacer-lg { height: 120px; }
.wa-text-gold { color: var(--gold); }
.wa-text-rose { color: var(--rose); }
.wa-text-center { text-align: center; }

/* ========== ADMIN BAR FIX ========== */
.admin-bar .wa-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .wa-nav { top: 46px; } }
