/*
Theme Name: MyKite
Theme URI: https://mykitecoaching.com
Author: MyKite
Author URI: https://mykitecoaching.com
Description: Custom theme for MyKite – Executive Coaching, AI Advisory & Consultancy by Gareth John.
Version: 1.5.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mykite
*/

:root {
  --teal: #0891b2;
  --teal-dark: #0e7490;
  --teal-light: #e0f7fa;
  --teal-bg: #f0fdfa;
  --emerald: #10b981;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
  --radius: 12px;
  --radius-lg: 16px;
  --hero-overlay: 0.35;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--slate-700);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}
.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--teal), var(--emerald));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; color: white; }
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo--image { gap: 0; }
.logo--image .logo-icon { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  padding: 9px 20px;
  background: var(--teal);
  color: white !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: 0.3s;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255, var(--hero-overlay)) 0%,
    rgba(255,255,255, calc(var(--hero-overlay) * 0.6)) 50%,
    rgba(255,255,255, 0) 100%
  );
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 580px; }
.hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-sans);
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 17px;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--teal);
  color: white;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  border: none; border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8,145,178,0.25); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: white;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--slate-300);
  border-radius: 10px;
  cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--slate-500);
}
.hero-trust-item svg { width: 16px; height: 16px; color: var(--teal); }

/* ==================== SECTION COMMON ==================== */
.section { padding: 96px 0; }
.section-gray { background: var(--slate-50); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-sans);
  font-size: 36px; font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--slate-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==================== BENEFITS 3x2 GRID ==================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-icon.teal { background: #e0f7fa; color: var(--teal); }
.benefit-icon.emerald { background: #d1fae5; color: #059669; }
.benefit-icon.blue { background: #dbeafe; color: #2563eb; }
.benefit-icon.amber { background: #fef3c7; color: #d97706; }
.benefit-icon.purple { background: #ede9fe; color: #7c3aed; }
.benefit-icon.rose { background: #fce7f3; color: #db2777; }
.benefit-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 14px; color: var(--slate-500);
  line-height: 1.65;
}

/* ==================== ABOUT / PARTNER ==================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-label {
  font-size: 13px; font-weight: 600;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.about-content h2 {
  font-family: var(--font-sans);
  font-size: 34px; font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 15px; color: var(--slate-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 24px 0 28px;
}
.credential-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--slate-700);
}
.credential-item svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  background: var(--slate-50);
  aspect-ratio: 3 / 4;
}
.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.stars {
  display: flex; gap: 3px; margin-bottom: 16px;
}
.stars svg { width: 18px; height: 18px; color: #f59e0b; fill: #f59e0b; }
.testimonial-card blockquote {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

/* ==================== PRICING ==================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  background: white;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--teal);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 18px; font-weight: 700;
  margin-bottom: 4px;
}
.pricing-card.featured .pricing-name { color: white; }
.pricing-price {
  font-family: var(--font-sans);
  font-size: 44px; font-weight: 800;
  color: var(--navy);
  margin: 16px 0 4px;
}
.pricing-price span { font-size: 16px; font-weight: 400; color: var(--slate-400); }
.pricing-card.featured .pricing-price { color: white; }
.pricing-card.featured .pricing-price span { color: var(--slate-400); }
.pricing-per {
  font-size: 13px; color: var(--slate-400);
  margin-bottom: 24px;
}
.pricing-divider {
  height: 1px;
  background: var(--slate-200);
  margin: 0 -28px 24px;
}
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px;
  padding: 6px 0;
}
.pricing-features li svg {
  width: 18px; height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-features li svg { color: var(--emerald); }
.pricing-btn {
  display: block; width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-align: center;
}
.pricing-btn-outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.pricing-btn-outline:hover { background: var(--teal); color: white; }
.pricing-btn-solid {
  background: var(--teal);
  border: 1.5px solid var(--teal);
  color: white;
}
.pricing-btn-solid:hover { background: #07809c; }
.pricing-card.featured .pricing-btn-solid {
  background: white;
  border-color: white;
  color: var(--navy);
}
.pricing-card.featured .pricing-btn-solid:hover { background: var(--slate-100); }

/* ==================== CONTACT ==================== */
.contact { padding: 96px 0; background: var(--navy); color: white; }
.contact .section-title { color: white; }
.contact .section-subtitle { color: var(--slate-400); }
.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  margin-top: 48px;
}
.contact-form-area h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-area > p {
  font-size: 14px; color: var(--slate-400);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group textarea,
.form-group .wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-500); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit,
.contact .wpcf7-submit {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: white;
  border: none; border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  margin-top: 4px;
}
.form-submit:hover,
.contact .wpcf7-submit:hover { background: var(--teal-dark); }
.contact-info-side { padding-top: 8px; }
.contact-block {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 32px;
}
.contact-block-icon {
  width: 44px; height: 44px;
  background: rgba(8,145,178,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-block-icon svg { width: 20px; height: 20px; color: var(--teal); }
.contact-block-label {
  font-size: 14px; font-weight: 700;
  margin-bottom: 2px;
}
.contact-block-value {
  font-size: 14px; color: var(--slate-400);
}
.contact-block-value a { color: var(--slate-400); }
.contact-block-value a:hover { color: var(--teal); }

/* ── Fluent Forms override (dark contact section) ── */
.mykite-ff-wrap .fluentform,
.mykite-ff-wrap .ff-el-group { margin-bottom: 18px; }
.mykite-ff-wrap .ff-el-form-control { font-family: var(--font-sans) !important; }

/* Labels */
.mykite-ff-wrap .ff-el-input--label label {
  font-size: 13px !important; font-weight: 600 !important;
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 6px !important;
}

/* Inputs & textareas */
.mykite-ff-wrap .ff-el-form-control,
.mykite-ff-wrap input[type="text"],
.mykite-ff-wrap input[type="email"],
.mykite-ff-wrap input[type="tel"],
.mykite-ff-wrap input[type="url"],
.mykite-ff-wrap input[type="number"],
.mykite-ff-wrap textarea,
.mykite-ff-wrap select {
  width: 100% !important;
  padding: 12px 16px !important;
  background: var(--navy-light) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 8px !important;
  color: white !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
}
.mykite-ff-wrap .ff-el-form-control::placeholder,
.mykite-ff-wrap input::placeholder,
.mykite-ff-wrap textarea::placeholder { color: var(--slate-500) !important; }
.mykite-ff-wrap .ff-el-form-control:focus,
.mykite-ff-wrap input:focus,
.mykite-ff-wrap textarea:focus {
  border-color: var(--teal) !important;
  box-shadow: none !important;
  outline: none !important;
}
.mykite-ff-wrap textarea { resize: vertical; min-height: 110px !important; }

/* GDPR / checkbox fields */
.mykite-ff-wrap .ff-el-form-check label,
.mykite-ff-wrap .ff_gdpr_field label,
.mykite-ff-wrap .ff-t-container {
  color: rgba(255,255,255,0.7) !important;
  font-size: 13px !important;
}
.mykite-ff-wrap .ff-el-form-check label a,
.mykite-ff-wrap .ff_gdpr_field a { color: var(--teal) !important; }
.mykite-ff-wrap .ff-el-form-check-input {
  accent-color: var(--teal) !important;
}

/* Submit button */
.mykite-ff-wrap .ff-btn-submit,
.mykite-ff-wrap button[type="submit"] {
  width: 100% !important;
  padding: 14px !important;
  background: var(--teal) !important;
  color: white !important;
  border: none !important; border-radius: 10px !important;
  font-family: var(--font-sans) !important;
  font-size: 15px !important; font-weight: 600 !important;
  cursor: pointer !important; transition: all 0.2s !important;
  margin-top: 4px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.mykite-ff-wrap .ff-btn-submit:hover,
.mykite-ff-wrap button[type="submit"]:hover {
  background: var(--teal-dark) !important;
}

/* Success / error messages */
.mykite-ff-wrap .ff-message-success {
  background: rgba(16,185,129,0.15) !important;
  color: #10b981 !important;
  border: none !important; border-radius: 10px !important;
  padding: 16px 24px !important; font-weight: 600 !important;
}
.mykite-ff-wrap .ff-errors-in-stack .error,
.mykite-ff-wrap .ff-el-is-error .ff-el-form-control {
  border-color: #ef4444 !important;
}
.mykite-ff-wrap .ff-el-is-error .error {
  color: #fca5a5 !important; font-size: 12px !important;
}

/* Hide Fluent Forms branding if present */
.mykite-ff-wrap .ff-powered-by { display: none !important; }

/* Inline columns — Fluent Forms grid */
.mykite-ff-wrap .ff-t-cell { padding: 0 8px !important; }
.mykite-ff-wrap .ff-t-container { margin: 0 -8px !important; }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 28px;
  color: var(--slate-400);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 48px;
}
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: var(--slate-500); }
.footer-heading {
  font-size: 14px; font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--slate-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--teal); }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--slate-500);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--slate-500);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--teal); }
.footer-company-info {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.5;
  opacity: 0.8;
}
.footer-social-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; margin-bottom: 10px;
}
.footer-social-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.footer-social-item a { color: var(--slate-500); transition: color 0.2s; }
.footer-social-item a:hover { color: var(--teal); }

/* ==================== BOOKING PAGE ==================== */
.booking-page { padding: 120px 0 64px; }
.booking-header { text-align: center; margin-bottom: 44px; }
.booking-header .section-label {
  font-size: 13px; font-weight: 600;
  color: var(--teal); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 10px;
}
.booking-sessions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
.booking-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}
.booking-card--default {
  background: white;
  border: 1.5px solid var(--slate-200);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.booking-card--default:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(8,145,178,0.12);
  transform: translateY(-4px);
}
.booking-card--featured {
  background: var(--teal);
  padding-top: 36px;
  box-shadow: 0 8px 32px rgba(8,145,178,0.2);
}
.booking-card--featured:hover {
  box-shadow: 0 16px 48px rgba(8,145,178,0.3);
  transform: translateY(-4px);
}
.booking-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--emerald); color: white;
  padding: 5px 20px; border-radius: 100px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.booking-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.booking-card--default .booking-card__icon { background: var(--teal-light); }
.booking-card--featured .booking-card__icon { background: rgba(255,255,255,0.15); }
.booking-card__icon svg { width: 24px; height: 24px; }
.booking-card__title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600; margin-bottom: 4px;
}
.booking-card--default .booking-card__title { color: var(--navy); }
.booking-card--featured .booking-card__title { color: white; }
.booking-card__price-value {
  font-size: 32px; font-weight: 700;
  font-family: var(--font-serif);
}
.booking-card--default .booking-card__price-value { color: var(--navy); }
.booking-card--featured .booking-card__price-value { color: white; }
.booking-card__price-unit { font-size: 14px; margin-left: 4px; }
.booking-card--default .booking-card__price-unit { color: var(--slate-500); }
.booking-card--featured .booking-card__price-unit { color: rgba(255,255,255,0.7); }
.booking-card__price-note { font-size: 13px; margin-top: 2px; }
.booking-card--default .booking-card__price-note { color: var(--slate-500); }
.booking-card--featured .booking-card__price-note { color: rgba(255,255,255,0.6); }
.booking-card__desc { font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.booking-card--default .booking-card__desc { color: var(--slate-500); }
.booking-card--featured .booking-card__desc { color: rgba(255,255,255,0.85); }
.booking-card__divider { height: 1px; margin-bottom: 20px; }
.booking-card--default .booking-card__divider { background: var(--slate-200); }
.booking-card--featured .booking-card__divider { background: rgba(255,255,255,0.15); }
.booking-card__features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.booking-card__feature { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.booking-card--default .booking-card__feature { color: var(--slate-700); }
.booking-card--featured .booking-card__feature { color: rgba(255,255,255,0.9); }
.booking-card__feature svg { width: 16px; height: 16px; flex-shrink: 0; }
.booking-card__cta {
  display: block; padding: 14px 24px; border-radius: var(--radius);
  color: white; text-align: center; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; width: 100%;
  font-family: var(--font-sans); transition: background 0.2s, transform 0.15s;
}
.booking-card__cta:hover { transform: translateY(-1px); color: white; }
.booking-card--default .booking-card__cta { background: var(--teal); }
.booking-card--default .booking-card__cta:hover { background: var(--teal-dark); }
.booking-card--featured .booking-card__cta { background: var(--emerald); }
.booking-card--featured .booking-card__cta:hover { background: #0ea571; }

/* TidyCal embed area */
.booking-embed { display: none; max-width: 840px; margin: 0 auto; }
.booking-embed.active { display: block; animation: fadeUp 0.4s ease; }
.booking-embed__summary {
  display: flex; align-items: center; gap: 16px;
  background: var(--teal-light); border-radius: var(--radius);
  padding: 16px 24px; margin-bottom: 24px;
  border: 1px solid rgba(8,145,178,0.15);
}
.booking-embed__summary-info { flex: 1; }
.booking-embed__summary-title { font-size: 15px; font-weight: 600; color: var(--navy); }
.booking-embed__summary-meta { font-size: 13px; color: var(--slate-500); margin-top: 2px; }
.booking-embed__change {
  background: none; border: 1px solid rgba(8,145,178,0.2);
  border-radius: var(--radius); padding: 6px 14px;
  font-size: 13px; color: var(--teal); cursor: pointer;
  font-weight: 500; font-family: var(--font-sans); transition: all 0.2s;
}
.booking-embed__change:hover { background: rgba(8,145,178,0.05); border-color: var(--teal); }
.booking-embed__container {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200); overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  position: relative; min-height: 700px;
}
.booking-embed__loading {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: white; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
  transition: opacity 0.3s ease;
}
.booking-embed__loading.is-hidden { opacity: 0; pointer-events: none; }
.booking-embed__spinner {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--teal-light); border-top-color: var(--teal);
  animation: mk-spin 0.8s linear infinite;
}
.booking-embed__footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--slate-500); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mk-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 700px) {
  .booking-sessions { grid-template-columns: 1fr; }
  .booking-card--featured { order: -1; }
  .booking-embed__summary { flex-wrap: wrap; gap: 12px; }
  .booking-embed__change { width: 100%; text-align: center; }
  .booking-embed__container, .booking-embed__iframe { min-height: 600px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ==================== ABOUT PAGE ==================== */
.nav-active { color: var(--teal) !important; font-weight: 600; }

.about-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--slate-50), var(--teal-bg));
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}
.about-hero-label {
  display: inline-block;
  font-size: 13px; font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 6px 16px;
  background: rgba(8,145,178,0.08);
  border-radius: 100px;
}
.about-hero h1 {
  font-family: var(--font-serif);
  font-size: 44px; font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-hero-subtitle {
  font-size: 18px;
  color: var(--slate-500);
  line-height: 1.7;
  max-width: 520px;
}
.about-hero-photo img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  max-width: 380px;
}

.bio-content { max-width: 960px; margin: 0 auto; }
.bio-text h2 {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.bio-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate-500);
  margin-bottom: 16px;
}
.bio-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--slate-200);
}
.bio-stat {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--teal-bg);
}
.bio-stat-number {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 700;
  color: var(--teal);
  margin-bottom: 4px;
}
.bio-stat-label {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.4;
}

.background-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.background-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}
.background-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.background-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.background-card-icon svg { width: 22px; height: 22px; }
.background-card-icon.teal    { background: rgba(8,145,178,0.1);   color: var(--teal); }
.background-card-icon.blue    { background: rgba(59,130,246,0.1);  color: #3b82f6; }
.background-card-icon.purple  { background: rgba(139,92,246,0.1);  color: #8b5cf6; }
.background-card-icon.emerald { background: rgba(16,185,129,0.1);  color: var(--emerald); }
.background-card-icon.amber   { background: rgba(245,158,11,0.1);  color: #f59e0b; }
.background-card-icon.rose    { background: rgba(244,63,94,0.1);   color: #f43f5e; }
.background-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.background-card p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.6;
}

.connect-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}
.connect-content .about-label {
  font-size: 13px; font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.connect-content h2 {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.connect-items { margin-bottom: 32px; }
.connect-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.connect-item svg {
  width: 22px; height: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}
.connect-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}
.connect-item p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.5;
  margin: 0;
}
.connect-contact-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.connect-contact-card h3 {
  font-size: 20px; font-weight: 700;
  margin-bottom: 6px;
}
.connect-contact-card > p {
  font-size: 14px;
  color: var(--slate-400);
  margin-bottom: 28px;
}
.connect-contact-items { display: flex; flex-direction: column; gap: 20px; }
.connect-contact-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.connect-contact-icon {
  width: 40px; height: 40px;
  background: rgba(8,145,178,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.connect-contact-icon svg { width: 18px; height: 18px; color: var(--teal); }
.connect-contact-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.connect-contact-row a,
.connect-contact-row span {
  font-size: 14px;
  color: var(--slate-400);
}
.connect-contact-row a:hover { color: var(--teal); }

/* ==================== GENERIC PAGE CONTENT ==================== */
.page-content {
  padding: 140px 0 80px;
  min-height: 60vh;
}
.page-article__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.3;
}
.page-article__body {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate-700);
}
.page-article__body h2,
.page-article__body h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  margin: 32px 0 12px;
}
.page-article__body h2 { font-size: 24px; }
.page-article__body h3 { font-size: 20px; }
.page-article__body p { margin-bottom: 16px; }
.page-article__body ul,
.page-article__body ol {
  margin: 0 0 16px 24px;
}
.page-article__body li { margin-bottom: 8px; }
.page-article__body a {
  color: var(--teal);
  text-decoration: underline;
}
.page-article__body a:hover { color: var(--teal-dark); }
.page-article__body strong { color: var(--navy); }

/* ==================== SCROLL ANIMATION ==================== */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* Hide any leaked WP default menus/widgets */
#wp-toolbar,
.wp-meta-widget,
body > ul:first-child,
body > .widget_meta,
body > .widget_nav_menu,
body > .widget_pages,
#wpadminbar + ul,
.site-header ~ ul:not(.nav-links) {
  display: none !important;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .hero h1 { font-size: 42px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-photo { order: -1; text-align: center; }
  .about-hero-photo img { max-width: 300px; margin: 0 auto; }
  .about-hero h1 { font-size: 36px; }
  .background-grid { grid-template-columns: repeat(2, 1fr); }
  .connect-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-highlights { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: white; padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .hero { padding: 120px 0 72px; min-height: auto; }
  .hero h1 { font-size: 34px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 28px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 120px 0 56px; }
  .about-hero h1 { font-size: 30px; }
  .background-grid { grid-template-columns: 1fr; }
  .bio-highlights { grid-template-columns: 1fr; }
}
