*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fcf7fa; --green: #5f7468; --green-light: #8fa898; --green-pale: #eef2f0;
  --orange: #b67d53; --orange-light: #d4a07a; --text: #4a4a4a; --text-light: #7a7a7a;
  --white: #ffffff; --border: rgba(95,116,104,0.15);
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(252,247,250,0.93); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border); padding: 0 3rem; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Lora', serif; font-size: 1.95rem; color: var(--green); text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; }
.nav-tagline { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 400; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 3px; }
.nav-logo-name { display: block; }
.nav-logo-name span { color: var(--orange); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: var(--orange) !important; color: white !important; padding: 0.5rem 1.25rem; border-radius: 50px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--orange-light) !important; color: white !important; }

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: all 0.3s ease; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(252,247,250,0.98); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 99; padding: 1.5rem 2rem 2rem; flex-direction: column; gap: 0; }
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; color: var(--text); font-size: 1.05rem; padding: 0.85rem 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mob-cta { margin-top: 1rem; background: var(--orange); color: white !important; padding: 0.85rem 1.5rem; border-radius: 50px; text-align: center; font-weight: 500; border-bottom: none !important; }
.mobile-menu .mob-cta:hover { background: var(--orange-light); }

.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 136px 6rem 4rem; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.hero-tag { display: inline-block; background: var(--green-pale); color: var(--green); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Lora', serif; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--green); line-height: 1.2; margin-bottom: 1rem; font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: var(--text-light); margin-bottom: 2rem; max-width: 440px; line-height: 1.85; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.btn-primary { background: var(--orange); color: white; padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-secondary { color: var(--green); text-decoration: none; font-weight: 500; font-size: 0.95rem; border-bottom: 1.5px solid var(--green); padding-bottom: 1px; transition: color 0.2s; }
.btn-secondary:hover { color: var(--orange); border-color: var(--orange); }

.hero-card { background: var(--white); border-radius: 24px; padding: 2.5rem; border: 1px solid var(--border); max-width: 340px; width: 100%; }
.hero-card-name { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--green); margin-bottom: 0.25rem; }
.hero-card-title { color: var(--orange); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-card-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.hero-card-fact { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.9rem; }
.hero-card-fact:last-child { margin-bottom: 0; }
.fact-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; margin-top: 0.45rem; flex-shrink: 0; }
.hero-card-fact p { font-size: 0.9rem; color: var(--text); line-height: 1.6; }

section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.section-title { font-family: 'Lora', serif; font-size: clamp(1.8rem,3vw,2.5rem); color: var(--green); line-height: 1.25; margin-bottom: 1rem; font-weight: 600; }
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 580px; line-height: 1.85; margin-bottom: 3rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-quote { font-family: 'Lora', serif; font-size: 1.2rem; font-style: italic; color: var(--green); line-height: 1.7; border-left: 3px solid var(--orange); padding-left: 1.5rem; margin-bottom: 2rem; }
.about-body p { color: var(--text-light); line-height: 1.85; margin-bottom: 1rem; font-size: 0.98rem; }
.credential-list { display: flex; flex-direction: column; gap: 1rem; }
.credential { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem 1.25rem; display: flex; gap: 1rem; align-items: flex-start; }
.cred-icon { width: 40px; height: 40px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.credential h4 { font-size: 0.92rem; font-weight: 500; color: var(--green); margin-bottom: 0.2rem; }
.credential p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin: 0; }

.training-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.75rem; }
.training-col { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.75rem; }
.training-col p { font-size: 0.97rem; color: var(--text-light); line-height: 1.85; }

.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.what-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; transition: transform 0.2s, box-shadow 0.2s; }
.what-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(95,116,104,0.1); }
.what-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.4rem; }
.what-card h3 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--green); margin-bottom: 0.6rem; font-weight: 600; }
.what-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

.for-section { background: var(--green); color: white; border-radius: 32px; padding: 4rem; margin: 0 2rem; }
.for-section .section-label { color: var(--orange-light); }
.for-section .section-title { color: white; margin-bottom: 0.5rem; }
.for-section .section-intro { color: rgba(255,255,255,0.75); }
.for-list { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.for-item { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 14px; padding: 1.1rem 1.4rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.for-check { color: var(--orange-light); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.for-item p { font-size: 0.92rem; color: rgba(255,255,255,0.9); line-height: 1.6; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.step { text-align: center; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); color: var(--green); font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; border: 2px solid var(--green); }
.step h3 { font-family: 'Lora', serif; font-size: 0.95rem; color: var(--green); margin-bottom: 0.5rem; font-weight: 600; }
.step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

.programme-card { background: var(--white); border: 1.5px solid var(--orange); border-radius: 24px; padding: 3rem; max-width: 820px; margin: 0 auto; }
.programme-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
.programme-title { font-family: 'Lora', serif; font-size: 1.5rem; color: var(--green); font-weight: 600; margin-bottom: 0.4rem; }
.programme-subtitle { font-size: 0.92rem; color: var(--text-light); max-width: 400px; line-height: 1.65; }
.programme-divider { height: 1px; background: var(--border); margin-bottom: 2rem; }
.programme-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 2rem; margin-bottom: 2rem; }
.programme-feature { font-size: 0.92rem; color: var(--text); display: flex; gap: 0.6rem; align-items: flex-start; }
.programme-feature::before { content: '\2713'; color: var(--green); font-weight: 500; flex-shrink: 0; }
.programme-urgency { background: #fff8f3; border: 1px solid rgba(182,125,83,0.25); border-radius: 12px; padding: 1rem 1.25rem; font-size: 0.88rem; color: var(--orange); margin-bottom: 2rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.programme-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── PRICE WALL ─────────────────────────────────── */
.price-wall { background: var(--green-pale); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; min-width: 240px; max-width: 280px; flex-shrink: 0; }
.price-wall-heading { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 0.25rem; }
.price-wall-sub { font-size: 0.78rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.5; }
.price-wall-form { display: flex; flex-direction: column; gap: 0.5rem; }
.price-wall-form input[type="text"],
.price-wall-form input[type="email"] { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 0.6rem 0.85rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--text); outline: none; width: 100%; transition: border-color 0.2s; }
.price-wall-form input[type="text"]:focus,
.price-wall-form input[type="email"]:focus { border-color: var(--green); }
.price-wall-gdpr { display: flex; gap: 0.5rem; align-items: flex-start; background: rgba(95,116,104,0.07); border-radius: 8px; padding: 0.6rem 0.75rem; }
.price-wall-gdpr input[type="checkbox"] { width: 14px; height: 14px; margin-top: 3px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.price-wall-gdpr label { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; cursor: pointer; }
.price-wall-gdpr a { color: var(--orange); text-decoration: none; }
.price-wall-btn { background: var(--green); color: white; border: none; padding: 0.65rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: background 0.2s; width: 100%; margin-top: 0.25rem; }
.price-wall-btn:hover { background: var(--green-light); }
.price-wall-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.price-revealed { display: none; min-width: 200px; }
.price-revealed .prog-price-amount { font-size: 2.4rem; font-weight: 500; color: var(--orange); line-height: 1; }
.price-revealed .prog-price-label { font-size: 0.88rem; color: var(--text-light); display: block; margin-top: 0.3rem; }
.price-revealed .prog-price-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.5rem; font-style: italic; line-height: 1.5; }

.booking-section { background: var(--white); border: 1px solid var(--border); border-radius: 32px; padding: 4rem; margin: 0 2rem; text-align: center; }

.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.testimonial-placeholder { background: var(--green-pale); border: 2px dashed rgba(95,116,104,0.25); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; min-height: 160px; gap: 0.5rem; }
.testimonial-placeholder p { font-size: 0.88rem; color: var(--green-light); font-style: italic; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-quote { font-family: 'Lora', serif; font-size: 0.97rem; font-style: italic; color: var(--text); line-height: 1.8; }
.testimonial-quote::before { content: '\201C'; color: var(--orange); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-right: 0.15em; }
.testimonial-quote::after { content: '\201D'; color: var(--orange); font-size: 1.4rem; line-height: 0; vertical-align: -0.3em; margin-left: 0.15em; }
.testimonial-author { font-size: 0.85rem; font-weight: 500; color: var(--green); }

.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.community-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; display: block; }
.community-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(95,116,104,0.1); }
.community-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.community-card h3 { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--green); margin-bottom: 0.4rem; font-weight: 600; }
.community-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.community-link { font-size: 0.85rem; color: var(--orange); font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.95rem; }
.contact-detail a { color: var(--orange); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-icon { width: 36px; height: 36px; background: var(--green-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 1rem; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.form-group input, .form-group textarea { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text); transition: border-color 0.2s; outline: none; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.gdpr-group { display: flex; gap: 0.75rem; align-items: flex-start; background: var(--green-pale); border-radius: 10px; padding: 1rem; }
.gdpr-group input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; }
.gdpr-group label { font-size: 0.83rem; color: var(--text); line-height: 1.6; cursor: pointer; }
.gdpr-group a { color: var(--orange); text-decoration: none; }
.gdpr-group a:hover { text-decoration: underline; }
.form-submit { background: var(--orange); color: white; border: none; padding: 0.85rem 2rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
.form-submit:hover { background: var(--orange-light); }
.form-success-msg { display: none; background: var(--green-pale); border-radius: 10px; padding: 1rem 1.25rem; color: var(--green); font-size: 0.9rem; }

/* ── RESOURCES PAGE ──────────────────────────────── */
.resources-hero { background: var(--green); padding: 7rem 2rem 4rem; }
.resources-hero-inner { max-width: 760px; margin: 0 auto; }
.resources-hero h1 { font-family: 'Lora', serif; font-size: clamp(2rem,4vw,2.8rem); font-weight: 600; color: white; line-height: 1.2; margin-bottom: 1rem; }
.resources-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.85; max-width: 540px; }
.resources-body { max-width: 760px; margin: 0 auto; padding: 4rem 2rem 5rem; }

.resource-gate { background: var(--white); border: 1.5px solid var(--orange); border-radius: 24px; padding: 2.5rem; margin-bottom: 3rem; }
.resource-gate h2 { font-family: 'Lora', serif; color: var(--green); font-size: 1.4rem; margin-bottom: 0.5rem; font-weight: 600; }
.resource-gate .gate-sub { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.75rem; }
.resource-gate-form { display: flex; flex-direction: column; gap: 0.85rem; }
.resource-gate-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.resource-gate-form input[type="text"],
.resource-gate-form input[type="email"] { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.2s; }
.resource-gate-form input:focus { border-color: var(--green); }
.resource-gate-submit { background: var(--orange); color: white; border: none; padding: 0.85rem 2rem; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: background 0.2s; align-self: flex-start; }
.resource-gate-submit:hover { background: var(--orange-light); }
.resource-gate-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.gate-success { display: none; background: var(--green-pale); border-radius: 10px; padding: 0.85rem 1.1rem; color: var(--green); font-size: 0.9rem; }

.resource-list { display: none; }
.resource-list.unlocked { display: flex; flex-direction: column; gap: 1rem; }
.resource-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 1.75rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; }
.resource-info h3 { font-family: 'Lora', serif; color: var(--green); font-size: 1.05rem; margin-bottom: 0.35rem; font-weight: 600; }
.resource-info p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; margin: 0; }
.resource-dl-btn { background: var(--green); color: white; text-decoration: none; padding: 0.65rem 1.5rem; border-radius: 50px; font-size: 0.88rem; font-weight: 500; white-space: nowrap; transition: background 0.2s; flex-shrink: 0; display: inline-flex; align-items: center; gap: 0.4rem; }
.resource-dl-btn:hover { background: var(--green-light); }

.privacy-content { max-width: 720px; margin: 0 auto; padding: 100px 2rem 5rem; }
.privacy-content h1 { font-family: 'Lora', serif; font-size: 2.2rem; color: var(--green); margin-bottom: 0.5rem; font-weight: 600; }
.privacy-content .updated { font-size: 0.85rem; color: var(--text-light); margin-bottom: 3rem; }
.privacy-content h2 { font-family: 'Lora', serif; font-size: 1.25rem; color: var(--green); margin: 2rem 0 0.75rem; font-weight: 600; }
.privacy-content p, .privacy-content li { font-size: 0.97rem; color: var(--text-light); line-height: 1.85; margin-bottom: 0.75rem; }
.privacy-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-content a { color: var(--orange); }

footer { background: var(--green); color: rgba(255,255,255,0.75); padding: 3rem 2rem; text-align: center; font-size: 0.88rem; }
footer a { color: var(--orange-light); text-decoration: none; }
.footer-logo { font-family: 'Lora', serif; font-size: 1.3rem; color: white; display: block; margin-bottom: 0.5rem; }
.footer-social { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin: 1rem 0; }
.footer-social a { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; padding: 0.4rem 0.9rem; font-size: 0.8rem; color: white; text-decoration: none; transition: background 0.2s; }
.footer-social a:hover { background: rgba(255,255,255,0.2); }
.footer-pagenest { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; opacity: 0.75; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  nav { height: 64px; padding: 0 1.5rem; }
  .mobile-menu { top: 64px; }
  .nav-logo { font-size: 1.6rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 100px 2rem 3rem; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 100%; }
  .what-grid { grid-template-columns: 1fr 1fr; }
  .for-list { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-two-col { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .for-section { padding: 3rem 2rem; margin: 0 1rem; }
  .booking-section { padding: 3rem 2rem; margin: 0 1rem; }
  .programme-features { grid-template-columns: 1fr; }
  .programme-header { flex-direction: column; }
  .price-wall { max-width: 100%; min-width: unset; }
  .resource-gate-row { grid-template-columns: 1fr; }
  .resource-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 1.25rem 2.5rem; }
  .what-grid { grid-template-columns: 1fr; }
  .prog-features-grid { grid-template-columns: 1fr !important; }
  .training-split { grid-template-columns: 1fr; }
  .for-list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .for-section { padding: 2.5rem 1.25rem; margin: 0; border-radius: 0; }
  .booking-section { padding: 2.5rem 1.25rem; margin: 0; border-radius: 0; }
  .programme-card { padding: 1.75rem; }
  section { padding: 3.5rem 1.25rem; }
  .step { text-align: left; display: flex; gap: 1.25rem; align-items: flex-start; }
  .step-num { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1rem; }
  .step-text { flex: 1; }
}

/* ── ACCESSIBILITY PANEL ────────────────────────────── */
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/npm/open-dyslexic@1.0.3/open-dyslexic-regular.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}

#a11y-toggle {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  background: var(--green); color: white; border: none;
  border-radius: 0 8px 8px 0; padding: 0.9rem 0.55rem;
  cursor: pointer; z-index: 10000; writing-mode: vertical-rl;
  text-orientation: mixed; font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.06em;
  box-shadow: 2px 0 12px rgba(0,0,0,0.15); transition: background 0.2s;
}
#a11y-toggle:hover { background: var(--orange); }

#a11y-panel {
  position: fixed; left: -280px; top: 50%; transform: translateY(-50%);
  width: 260px; background: var(--white);
  border-radius: 0 16px 16px 0;
  box-shadow: 4px 0 24px rgba(0,0,0,0.14);
  z-index: 9999; padding: 1.4rem 1.5rem;
  transition: left 0.3s ease;
  border: 1px solid var(--border); border-left: none;
}
#a11y-panel.open { left: 0; }

.a11y-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.1rem; padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.a11y-header span {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
}
#a11y-close {
  background: none; border: none; font-size: 1.5rem; line-height: 1;
  cursor: pointer; color: var(--text-light); padding: 0;
}
#a11y-close:hover { color: var(--text); }

.a11y-option {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 0.85rem; gap: 0.5rem;
}
.a11y-option > span { font-size: 0.88rem; color: var(--text); flex: 1; }

.a11y-btn {
  background: var(--green-pale); border: 1.5px solid var(--border);
  border-radius: 6px; padding: 0.28rem 0.65rem;
  font-size: 0.78rem; font-weight: 500; cursor: pointer;
  color: var(--green); transition: all 0.2s; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.a11y-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.a11y-btn.active { background: var(--green); color: white; border-color: var(--green); }

.a11y-font-controls { display: flex; align-items: center; gap: 0.4rem; }
.a11y-font-label {
  font-size: 0.78rem; color: var(--text-light);
  min-width: 38px; text-align: center;
}

.a11y-divider { height: 1px; background: var(--border); margin: 0.6rem 0 0.85rem; }

#a11y-reset {
  width: 100%; background: none; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0.45rem; font-size: 0.78rem;
  color: var(--text-light); cursor: pointer; margin-top: 0.25rem;
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
#a11y-reset:hover { border-color: var(--orange); color: var(--orange); }

/* Colour overlay */
#colour-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(255, 236, 180, 0.3);
  pointer-events: none; z-index: 9990; mix-blend-mode: multiply;
}

/* Reading ruler */
#reading-ruler {
  display: none; position: fixed; left: 0; right: 0; height: 3rem;
  background: rgba(95, 116, 104, 0.1);
  border-top: 2px solid rgba(95, 116, 104, 0.22);
  border-bottom: 2px solid rgba(95, 116, 104, 0.22);
  pointer-events: none; z-index: 9989; transform: translateY(-50%);
}

/* Dark mode overrides */
body.a11y-dark {
  --bg: #1c1c1e; --white: #2c2c2e; --text: #e5e5e7;
  --text-light: #aeaeb2; --green: #8fa898; --green-pale: #2a3530;
  --border: rgba(143,168,152,0.2); --orange: #d4a07a; --orange-light: #b67d53;
}

/* Dyslexia font */
body.a11y-dyslexia, body.a11y-dyslexia * {
  font-family: 'OpenDyslexic', sans-serif !important;
}

/* Reduce motion */
body.a11y-reduce-motion *, body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
body.a11y-reduce-motion .fade-up { opacity: 1 !important; transform: none !important; }

/* ── MAILERLITE FORM CSS ────────────────────────────── */
@import url("https://assets.mlcdn.com/fonts.css?version=1774528");

.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.g-recaptcha { transform: scale(1); -webkit-transform: scale(1); transform-origin: 0 0; -webkit-transform-origin: 0 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.ml-form-embedSubmitLoad:after {
  content: " "; display: block; width: 11px; height: 11px; margin: 1px;
  border-radius: 50%; border: 4px solid #fff;
  border-color: #ffffff #ffffff #ffffff transparent;
  animation: ml-form-embedSubmitLoad 1.2s linear infinite;
}
@keyframes ml-form-embedSubmitLoad { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

#mlb2-39154190.ml-form-embedContainer { box-sizing: border-box; display: table; margin: 0 auto; position: static; width: 100% !important; }
#mlb2-39154190.ml-form-embedContainer h4,
#mlb2-39154190.ml-form-embedContainer p,
#mlb2-39154190.ml-form-embedContainer span,
#mlb2-39154190.ml-form-embedContainer button { text-transform: none !important; letter-spacing: normal !important; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper { background-color: transparent; border-width: 0px; border-color: transparent; border-radius: 4px; border-style: solid; box-sizing: border-box; display: inline-block !important; margin: 0; padding: 0; position: relative; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper.embedPopup,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper.embedDefault { width: 100%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper.embedForm { max-width: 100%; width: 100%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-align-left { text-align: left; }
#mlb2-39154190.ml-form-embedContainer .ml-form-align-center { text-align: center; }
#mlb2-39154190.ml-form-embedContainer .ml-form-align-default { display: table-cell !important; vertical-align: middle !important; text-align: center !important; }
#mlb2-39154190.ml-form-embedContainer .ml-form-align-right { text-align: right; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody { padding: 0; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent { text-align: left; margin: 0 0 20px 0; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 { color: #5f7468; font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 600; margin: 0 0 10px 0; text-align: left; word-break: break-word; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p { color: #7a7a7a; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400; line-height: 1.75; margin: 0 0 10px 0; text-align: left; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p:last-child,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p:last-child { margin: 0; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form { margin: 0; width: 100%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow { margin: 0 0 20px 0; width: 100%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow { float: left; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow { margin: 0 0 10px 0; width: 100%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow.ml-last-item { margin: 0; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input { background-color: #ffffff !important; color: #4a4a4a !important; border-color: rgba(95,116,104,0.25); border-radius: 10px !important; border-style: solid !important; border-width: 1px !important; font-family: 'DM Sans', sans-serif; font-size: 0.95rem !important; height: auto; line-height: 21px !important; margin: 0; padding: 0.75rem 1rem !important; width: 100% !important; box-sizing: border-box !important; max-width: 100% !important; transition: border-color 0.2s; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:focus { border-color: #5f7468 !important; outline: none; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-webkit-input-placeholder { color: #7a7a7a; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder { color: #7a7a7a; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:-ms-input-placeholder { color: #7a7a7a; }

#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit { margin: 0 0 20px 0; float: left; width: 100%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button { background-color: #b67d53 !important; border: none !important; border-radius: 50px !important; box-shadow: none !important; color: #ffffff !important; cursor: pointer; font-family: 'DM Sans', sans-serif !important; font-size: 0.95rem !important; font-weight: 500 !important; line-height: 21px !important; height: auto; padding: 0.85rem 2rem !important; width: 100% !important; box-sizing: border-box !important; transition: background 0.2s, transform 0.15s; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.loading { display: none; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover { background-color: #d4a07a !important; transform: translateY(-1px); }

#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description { color: #7a7a7a; display: block; font-family: 'DM Sans', sans-serif; font-size: 0.83rem; line-height: 1.6; text-align: left; margin-bottom: 0; position: relative; vertical-align: top; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label { font-weight: normal; margin: 0; padding: 0; position: relative; display: block; min-height: 24px; padding-left: 24px; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label p { color: #7a7a7a !important; font-family: 'DM Sans', sans-serif !important; font-size: 0.83rem !important; font-weight: normal !important; line-height: 1.6 !important; padding: 0 !important; margin: 0 5px 0 0 !important; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type="checkbox"] { box-sizing: border-box; padding: 0; position: absolute; z-index: -1; opacity: 0; margin-top: 5px; margin-left: -1.5rem; overflow: visible; }

#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::before,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::before { position: absolute; top: 4px; left: -1.5rem; display: block; width: 16px; height: 16px; pointer-events: none; content: ""; background-color: #ffffff; border: #8fa898 solid 1px; border-radius: 4px; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description::after,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox .label-description::after { position: absolute; top: 0px !important; left: -1.5rem; display: block; width: 1rem; height: 1rem; content: ""; background: no-repeat 50%/50% 50%; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::after,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::after { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e"); }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow input[type=checkbox]:checked~.label-description::before,
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsOptionsCheckbox input[type=checkbox]:checked~.label-description::before { border-color: #5f7468 !important; background-color: #5f7468 !important; }

/* Hide empty last_name placeholder field */
#mlb2-39154190 .ml-field-last_name { display: none !important; }

.ml-error input, .ml-error textarea, .ml-error select { border-color: red !important; }
.ml-error .label-description, .ml-error .label-description p, .ml-error label:first-child { color: #ff0000 !important; }
#mlb2-39154190.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow.ml-error .label-description p { color: #ff0000 !important; }

@media only screen and (max-width: 400px) {
  .ml-form-embedWrapper.embedDefault, .ml-form-embedWrapper.embedPopup { width: 100% !important; }
}

/* ── FLOATING BOOK CTA ──────────────────────────── */
.floating-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9998;
  background: var(--orange); color: white !important; text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  padding: 0.85rem 1.5rem; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(182,125,83,0.45);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.floating-cta:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(182,125,83,0.55);
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta { transition: none; }
}

/* ── CALENDLY EMBED ─────────────────────────────── */
.calendly-section {
  max-width: 900px; margin: 0 auto; padding: 2rem 0 4rem;
}
.calendly-inline-widget {
  min-width: 320px; height: 700px; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--border);
}
@media (max-width: 600px) {
  .floating-cta { bottom: 1.25rem; right: 1.25rem; font-size: 0.85rem; padding: 0.75rem 1.25rem; }
  .calendly-inline-widget { height: 1100px; }
}

/* ── BLOG ───────────────────────────────────────── */
.blog-header { padding: 7rem 2rem 3.5rem; background: var(--white); border-bottom: 1px solid var(--border); }
.blog-header-inner { max-width: 760px; margin: 0 auto; }
.blog-posts { max-width: 760px; margin: 0 auto; padding: 3.5rem 2rem 5rem; display: flex; flex-direction: column; gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 2.5rem; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(95,116,104,0.1); }
.blog-card-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.75rem; letter-spacing: 0.03em; }
.blog-card h2 { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--green); font-weight: 600; margin-bottom: 0.6rem; line-height: 1.3; }
.blog-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 1.25rem; }
.blog-card-link { font-size: 0.9rem; color: var(--orange); font-weight: 500; text-decoration: none; border-bottom: 1.5px solid var(--orange); padding-bottom: 1px; transition: color 0.2s; }
.blog-card-link:hover { color: var(--orange-light); border-color: var(--orange-light); }

/* ── BLOG POST ───────────────────────────────────── */
.post-header { background: var(--white); padding: 7rem 2rem 3.5rem; border-bottom: 1px solid var(--border); }
.post-header-inner { max-width: 760px; margin: 0 auto; }
.post-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; letter-spacing: 0.03em; }
.post-body { max-width: 760px; margin: 0 auto; padding: 3.5rem 2rem 5rem; }
.post-body h2 { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--green); font-weight: 600; margin: 2rem 0 0.75rem; }
.post-body p { font-size: 0.97rem; color: var(--text-light); line-height: 1.85; margin-bottom: 1.1rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body li { font-size: 0.97rem; color: var(--text-light); line-height: 1.85; margin-bottom: 0.4rem; }
.post-body a { color: var(--orange); }
.post-body .btn-primary { color: white; }
.post-cta { background: var(--green-pale); border-radius: 16px; padding: 2rem 2.5rem; margin-top: 3rem; }
.post-cta h3 { font-family: 'Lora', serif; color: var(--green); font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600; }
.post-cta p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }

@media (max-width: 600px) {
  .blog-posts { padding: 2.5rem 1.25rem 4rem; }
  .blog-card { padding: 1.5rem; }
  .post-body { padding: 2.5rem 1.25rem 4rem; }
}

/* ── FAQ PAGE ───────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-family: 'Lora', serif; font-size: 1.05rem; color: var(--green); font-weight: 600; margin-bottom: 0.75rem; cursor: pointer; display: flex; justify-content: space-between; align-items: start; gap: 1rem; }
.faq-answer { display: none; font-size: 0.97rem; color: var(--text-light); line-height: 1.85; padding-bottom: 0.25rem; }
.faq-item.open .faq-answer { display: block; }
.faq-answer a { color: var(--orange); }
