:root {
  --bg:           #eef1f8;
  --white:        #ffffff;
  --dark:         #0b0b0d;
  --purple:       #7c3aed;
  --purple-soft:  #f4f0ff;
  --purple-dim:   rgba(124,58,237,0.14);
  --text:         #111827;
  --muted:        #6b7280;
  --border:       #e4e7ed;
  --radius:       14px;
  --radius-lg:    22px;
  --shadow:       0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background: var(--bg);
  color: var(--text);
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ──────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}


.site-nav {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--text); }

/* ── Buttons ─────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: inherit;
}

.button-primary {
  background: var(--dark);
  color: #fff;
}
.button-primary:hover { background: #222; transform: translateY(-1px); }

.button-purple {
  background: var(--purple);
  color: #fff;
}
.button-purple:hover { background: #6d28d9; transform: translateY(-1px); }

.button-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.button-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75); }

/* ── Hero ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(5,5,8,0.90) 0%, rgba(5,5,8,0.55) 55%, rgba(5,5,8,0.20) 100%);
}

.hero-body {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124,58,237,0.22);
  border: 1px solid rgba(167,139,250,0.45);
  color: #c4b5fd;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero h1 .accent { color: #a78bfa; }

.vision-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: #f5a623;
  text-transform: uppercase;
  margin: 0.9rem 0 1.25rem;
}

.hero .vision-statement {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
  white-space: nowrap;
  margin-bottom: 2rem;
}

.hero-body.hero-centered {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero-body.hero-centered .hero-actions {
  justify-content: center;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Sections ─────────────────────────────────── */
.section        { padding: 5.5rem 0; }
.section-bg     { background: var(--bg); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--dark); color: rgba(255,255,255,0.85); }

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--purple);
  margin-bottom: 0.85rem;
}

.section-dark .section-tag { color: #a78bfa; }

.section h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.section h2 .accent { color: var(--purple); }
.section-dark h2 .accent { color: #a78bfa; }

.section h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

/* ── Two-column layout ────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.col-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ── Generic card ─────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

/* ── Service cards row ────────────────────────── */
.service-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-card-body { padding: 1.25rem; }

.service-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 0.4rem;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.service-card-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Book highlight ───────────────────────────── */
.book-card {
  background: var(--purple-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid var(--purple);
  margin: 2rem 0;
}

.book-card h3 {
  color: var(--purple);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.book-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

/* ── Pill link ────────────────────────────────── */
.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  background: var(--purple-soft);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.2);
  transition: background 0.2s;
}

.pill-link:hover { background: #e8dcfd; }

/* ── Feature / clean list ─────────────────────── */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}

.feature-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  margin-top: 0.58rem;
  flex-shrink: 0;
}

.feature-list li:last-child { border-bottom: none; }

/* ── Workshop blocks ──────────────────────────── */
.workshop-block {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--purple);
  margin-bottom: 1rem;
}

.workshop-block-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.workshop-block p { font-size: 0.9rem; margin-bottom: 0.35rem; }
.workshop-block p:last-child { margin-bottom: 0; }

/* ── Tag pills ────────────────────────────────── */
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.tag-pills li {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  box-shadow: var(--shadow);
}

/* ── Resource grid ────────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.resource-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

/* ── Process steps ────────────────────────────── */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: default;
}

.process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .step-num {
  background: var(--purple);
  color: #fff;
}

.step-body h4 { font-size: 0.92rem; }
.step-body p  { font-size: 0.85rem; color: var(--muted); }

/* ── Bio blocks ───────────────────────────────── */
.bio-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.bio-block h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--purple);
  margin-bottom: 0.85rem;
}

/* ── Coach card ───────────────────────────────── */
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.coach-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.coach-card-body { padding: 1.75rem; }

.coach-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.coach-creds {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.coach-creds li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted);
  position: relative;
  line-height: 1.5;
}

.coach-creds li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 0.72rem;
  top: 0.5rem;
}

/* ── Contact section ──────────────────────────── */
.contact-info-block {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-block:last-child { border-bottom: none; }

.contact-info-block h4 {
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.2rem;
}

/* ── Form ─────────────────────────────────────── */
.enquiry-form { display: grid; gap: 1.25rem; }

.form-field { display: grid; gap: 0.4rem; }

.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}

.enquiry-form input,
.enquiry-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}

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

.enquiry-form input:focus,
.enquiry-form textarea:focus { border-color: var(--purple); }

.enquiry-form textarea { min-height: 100px; resize: vertical; }

/* ── Slideshow ────────────────────────────────── */
.slideshow {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  user-select: none;
}

.slideshow-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}

.slideshow-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--dark);
}

.slideshow-slide img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 85vh;
  object-fit: contain;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: background 0.2s;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.slide-btn:hover { background: #fff; }
.slide-btn.prev { left: 1.5rem; }
.slide-btn.next { right: 1.5rem; }

.slide-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slide-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slide-dot.active {
  background: var(--purple);
  transform: scale(1.35);
}

/* ── Footer ───────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-grid h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  font-size: 0.875rem;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  list-style: none;
}

.footer-grid ul { padding: 0; }

.footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 960px) {
  .two-col,
  .footer-grid,
  .resource-grid,
  .coaches-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .two-col.flip { direction: ltr; }

  .service-cards-row { grid-template-columns: repeat(2, 1fr); }

  .site-nav { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero    { min-height: 80vh; padding: 3rem 0; }
  .hero h1 { font-size: 2.5rem; }
  .service-cards-row { grid-template-columns: 1fr; }
  .book-links { flex-direction: column; }
}
