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

:root {
  --green: #3d6b4f;
  --green-light: #7aaa8a;
  --green-pale: #e6f0ea;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --gold-pale: #faf5ec;
  --cream: #f9f6f0;
  --ink: #1e2318;
  --muted: #6b7162;
  --off: #f8f2e4;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

/* Keep all emphasis text upright — no italics anywhere */
em, i, address { font-style: normal; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5rem;
  background: rgba(249,246,240,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61,107,79,0.1);
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo {
  height: 48px; width: auto; display: block;
  /* logo art sits on white — multiply blends that white into the cream nav bar */
  mix-blend-mode: multiply;
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700;
  color: var(--green); letter-spacing: -0.03em; line-height: 1;
}
.nav-brand-text span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-book {
  background: var(--green); color: white !important;
  padding: 0.55rem 1.3rem; border-radius: 100px;
}
.nav-book:hover { background: var(--ink) !important; }

/* HERO */
.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
  gap: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 35% 50%, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-slideshow {
  height: 100%;
  min-height: 72vh;
  position: relative;
  overflow: hidden;
}
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  z-index: 0;
}
.hero-slideshow img.active { opacity: 1; z-index: 1; }
.hero-slideshow img.prev { opacity: 0; z-index: 0; }
.hero-slideshow-right { border-radius: 28px 0 0 28px; }

.hero-content {
  padding: 2rem 1rem 2rem 5rem;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
}
/* Services shown as a clean pill row beneath the hero intro */
.hero-services { margin-top: 1.9rem; }
.hero-services-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.hero-services-label::before { content: ''; width: 1.8rem; height: 1px; background: var(--gold-light); }
.hero-services-list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hero-chip {
  background: white; border: 1px solid var(--green-pale);
  border-radius: 100px; padding: 0.5rem 1.1rem;
  font-size: 0.82rem; color: var(--green); font-weight: 600;
  letter-spacing: 0.01em; line-height: 1;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 600; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--ink);
  margin-bottom: 0.5rem;
}
.hero h1 em { font-style: normal; color: var(--green); font-weight: 600; }
.hero-name {
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.hero-desc {
  font-size: 0.95rem; color: var(--ink); line-height: 1.8;
  max-width: 480px; margin-bottom: 1.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--green); color: white;
  text-decoration: none; padding: 0.85rem 2rem;
  border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.03em; transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--green-light); color: var(--green);
  text-decoration: none; padding: 0.82rem 1.8rem;
  border-radius: 100px; font-size: 0.88rem; font-weight: 500;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--green-pale); }

.hero-visual { display: flex; flex-direction: column; gap: 1.2rem; }
.hero-card-main {
  background: var(--green); border-radius: 28px;
  padding: 3rem 2.5rem; color: white;
  position: relative; overflow: hidden;
}
.hero-card-main::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
}
.hcm-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; margin-bottom: 0.5rem; }
.hcm-name { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 400; margin-bottom: 0.3rem; }
.hcm-title { font-size: 0.82rem; opacity: 0.75; margin-bottom: 1.8rem; line-height: 1.5; }
.hcm-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hcm-tag { background: rgba(255,255,255,0.12); color: white; font-size: 0.72rem; padding: 0.3rem 0.85rem; border-radius: 100px; }
.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.mini-card { background: white; border-radius: 18px; padding: 1.4rem; border: 1px solid rgba(61,107,79,0.08); }
.mini-card .mc-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.mini-card .mc-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.mini-card .mc-val { font-size: 0.82rem; color: var(--muted); font-weight: 500; margin-top: 0.2rem; }

/* SECTIONS */
section { padding: 4rem 5rem; }
/* leave room for the fixed nav when jumping to an anchor so headings aren't cropped */
section[id] { scroll-margin-top: 50px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
}
.sec-label::before { content: ''; width: 1.8rem; height: 1px; background: var(--gold-light); }
.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1.12;
  color: var(--ink); margin-bottom: 1.1rem; letter-spacing: -0.02em;
}
.sec-h2 em { font-style: normal; color: var(--green); }

/* ABOUT */
.about { background: var(--off); }
.about-section-heading { margin-bottom: 1.8rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.about-visual {
  background: var(--green-pale); border-radius: 24px 24px 80px 24px; padding: 2.5rem 2rem;
}
.coach-photo-wrap {
  width: 160px; height: 160px; border-radius: 50%;
  overflow: hidden; margin: 0 auto 1.4rem;
  border: 4px solid white;
  box-shadow: 0 8px 28px rgba(61,107,79,0.2);
}
.coach-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-visual h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green); margin-bottom: 0.3rem; text-align: center; letter-spacing: -0.02em; }
.av-title { font-size: 0.82rem; font-weight: 500; color: var(--green); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.2rem; text-align: center; }
.av-desc { font-size: 0.9rem; color: #2a3226; font-weight: 500; line-height: 1.75; text-align: center; margin-bottom: 1.6rem; }
.cert-list { display: flex; flex-direction: column; gap: 0.5rem; }
.cert-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; font-weight: 400; color: var(--ink); line-height: 1.6; }
.cert-item::before { content: '✦'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; margin-top: 0.35rem; }
.about-text p { color: #444840; margin-bottom: 1.3rem; font-size: 1.05rem; line-height: 1.9; font-weight: 400; }
.about-right { display: flex; flex-direction: column; }
.about-right-title { font-size: clamp(1.7rem, 2.6vw, 2.4rem); margin-bottom: 1rem; }
.about-stat { margin-bottom: 1.8rem; }
.about-stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.about-stat-label { display: block; margin-top: 0.4rem; font-size: 0.9rem; color: var(--muted); }

/* Testimonials stacked inside the About right column */
.about-testimonials { display: flex; flex-direction: column; gap: 1rem; }
.mini-testimonial {
  display: grid; grid-template-columns: 112px 1fr; gap: 1.1rem; align-items: center;
  background: white; border: 1px solid rgba(61,107,79,0.08); border-radius: 16px;
  padding: 1.3rem 1.4rem; box-shadow: 0 6px 20px rgba(30,35,24,0.04);
}
.mini-profile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  align-self: stretch; background: var(--green-pale); border-radius: 12px; padding: 1rem 0.5rem;
}
.mini-avatar {
  width: 62px; height: 62px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid var(--green-pale);
}
.mini-avatar img { width: 100%; height: 100%; object-fit: cover; }
.mini-name { font-weight: 700; color: var(--ink); font-size: 0.82rem; margin-top: 0.5rem; line-height: 1.2; }
.mini-role { font-size: 0.7rem; color: var(--muted); margin-top: 0.15rem; line-height: 1.3; }
.about-testimonials .mini-quote { font-size: 0.9rem; color: #3a4237; line-height: 1.6; font-weight: 500; margin: 0; }
.competency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1.8rem; }
.comp-pill {
  background: white; border: 1px solid var(--green-pale);
  border-radius: 100px; padding: 0.45rem 0.8rem;
  font-size: 0.82rem; color: var(--green); font-weight: 600; text-align: center;
}

/* SERVICES EXPANDED */
.services-section { background: var(--cream); }
.services-intro { margin-bottom: 2rem; }

/* Services tabs */
.svc-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.svc-tab {
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--muted); background: white;
  border: 1px solid rgba(61,107,79,0.15); border-radius: 100px;
  padding: 0.6rem 1.3rem; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem; line-height: 1;
}
.svc-tab span { font-size: 1.05rem; }
.svc-tab:hover { border-color: var(--green-light); color: var(--green); }
.svc-tab.active { background: var(--green); color: white; border-color: var(--green); }
.svc-panel { display: none; }
.svc-panel.active { display: block; animation: fadeUp 0.4s ease both; }
.service-cards-row.single { grid-template-columns: minmax(280px, 460px); }

/* Single card with a single-column list of points + image on the right */
.svc-card.list-card { max-width: none; position: relative; min-height: 480px; padding-right: 50%; box-shadow: 0 8px 30px rgba(30,35,24,0.06); }
.list-media { position: absolute; top: 1.8rem; right: 1.8rem; bottom: 1.8rem; left: 52%; }
.list-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
.svc-card-name { margin-bottom: 0.4rem; }
.svc-card-name .svc-ico { margin-right: 0.55rem; font-size: 1.15em; vertical-align: -0.05em; }
.svc-card-sub { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.3rem; }
.service-category { margin-bottom: 2.5rem; }
.service-cat-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61,107,79,0.1);
}
.service-cat-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.cat-green { background: var(--green-pale); }
.cat-gold { background: var(--gold-pale); }
.cat-dark { background: #e8ebe4; }
.service-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.service-cat-title.clr-green { color: var(--green); }
.service-cat-title.clr-gold { color: #b07d2e; }
.service-cat-title.clr-teal { color: #3a7a6a; }
.service-cat-title.clr-rose { color: #9b4f5a; }
.service-cat-title.clr-ink { color: var(--ink); }
.svc-card-name.clr-green { color: var(--green); }
.svc-card-name.clr-gold { color: #b07d2e; }
.svc-card-name.clr-teal { color: #3a7a6a; }
.svc-card-name.clr-rose { color: #9b4f5a; }
.svc-card-name.clr-ink { color: var(--ink); }
.service-cards-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.svc-card {
  background: #ede5d4; border-radius: 20px; padding: 1.8rem;
  border: 1px solid #e0d6bf;
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,35,24,0.08); }
.svc-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700; color: var(--ink);
  margin-bottom: 1rem; letter-spacing: -0.01em;
}
.svc-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.svc-bullets li { font-size: 1.08rem; color: #2e3a2e; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.75; font-weight: 500; }
.svc-bullets li::before { content: '●'; color: var(--green); font-size: 0.55rem; line-height: 2.2; flex-shrink: 0; }
.svc-bullets li strong { color: var(--green); font-weight: 700; font-size: 1.1rem; }

/* PROGRAMS (kept for 3 program cards) */
.programs { background: var(--off); }
.programs .sec-h2 { color: var(--ink); }
.programs-intro { margin-bottom: 3.5rem; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prog-card { border-radius: 24px; padding: 2.4rem; position: relative; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; }
.prog-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(30,35,24,0.1); }
.prog-card.card-a, .prog-card.card-b { background: #d9ecdd; border: 1.5px solid #bcd8c5; }
.prog-card.card-c { background: var(--green); border: 1.5px solid var(--green); box-shadow: 0 22px 50px rgba(61,107,79,0.28); }
.prog-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.card-a .prog-tag { background: var(--green-pale); color: var(--green); }
.card-b .prog-tag { background: var(--green-pale); color: var(--green); }
.card-c .prog-tag { background: rgba(255,255,255,0.22); color: white; }
.prog-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.prog-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.prog-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
.prog-subtitle { font-size: 0.9rem; line-height: 1.55; font-weight: 600; margin-bottom: 1.5rem; }
.card-a .prog-subtitle, .card-b .prog-subtitle { color: #34513f; }
.card-c .prog-subtitle { color: rgba(255,255,255,0.9); }
.card-a .prog-name { color: #1e3528; }
.card-b .prog-name { color: #1e3528; }
.card-c .prog-name { color: white; }
.prog-items { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; flex: 1; }
.prog-items li { font-size: 0.95rem; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.6; font-weight: 500; }
.card-a .prog-items li { color: #22402f; }
.card-b .prog-items li { color: #22402f; }
.card-c .prog-items li { color: rgba(255,255,255,0.95); }
.prog-items li::before { content: '→'; font-size: 0.7rem; margin-top: 0.3rem; flex-shrink: 0; }
.card-a .prog-items li::before { color: var(--green); }
.card-b .prog-items li::before { color: var(--green); }
.card-c .prog-items li::before { color: var(--gold-light); }
.prog-cta {
  display: block; text-align: center; padding: 0.75rem;
  border-radius: 100px; font-size: 0.84rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.card-a .prog-cta { background: #3d6b4f; color: white; }
.card-a .prog-cta:hover { background: var(--ink); }
.card-b .prog-cta { background: var(--green); color: white; }
.card-b .prog-cta:hover { background: var(--ink); }
.card-c .prog-cta { background: white; color: var(--green); }
.card-c .prog-cta:hover { background: var(--gold-pale); color: var(--ink); }

/* WHAT'S INCLUDED */
.included { background: var(--green-pale); }
.included-head { margin-bottom: 2.5rem; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.included-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: white; border: 1px solid rgba(61,107,79,0.08);
  border-radius: 14px; padding: 1rem 1.2rem;
  font-size: 1rem; color: var(--ink); font-weight: 600; line-height: 1.5;
}
.inc-check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; margin-top: 0.05rem;
}

/* WHY */
.why { background: var(--off); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.why-item { display: flex; gap: 1.2rem; }
.why-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.why-item h4 { font-weight: 700; font-size: 1.05rem; color: var(--green); margin-bottom: 0.35rem; letter-spacing: -0.01em; }
.why-item p { font-size: 0.95rem; color: #4a5046; line-height: 1.8; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-box { background: white; border-radius: 20px; padding: 1.8rem 1.5rem; border: 1px solid rgba(61,107,79,0.08); text-align: center; }
.stat-box.accent-green { background: var(--green); }
.stat-box.accent-gold { background: var(--gold); }
.stat-num-big { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 600; color: var(--green); line-height: 1; }
.stat-box.accent-green .stat-num-big { color: white; }
.stat-box.accent-gold .stat-num-big { color: var(--ink); }
.stat-box-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.4rem; }
.stat-box.accent-green .stat-box-label { color: rgba(255,255,255,0.75); }
.stat-box.accent-gold .stat-box-label { color: rgba(30,35,24,0.65); }

/* BLOG */
.blog { background: var(--cream); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid rgba(61,107,79,0.07); transition: transform 0.22s, box-shadow 0.22s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(30,35,24,0.08); }
.blog-thumb { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
.bt-green { background: var(--green-pale); }
.bt-gold { background: var(--gold-pale); }
.bt-dark { background: #e8ebe4; }
.blog-body { padding: 1.5rem; }
.blog-cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--ink); line-height: 1.3; margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.blog-excerpt { font-size: 0.95rem; color: #4a5046; line-height: 1.8; }
.blog-link { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 600; color: var(--green); text-decoration: none; }
.blog-link:hover { text-decoration: underline; }

/* FAQ */
.faq { background: var(--off); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.faq-item { background: white; border-radius: 14px; border: 1px solid rgba(61,107,79,0.08); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.2rem 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.faq-q .faq-arrow { color: var(--green); font-size: 1.2rem; transition: transform 0.25s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.5rem 1.2rem; font-size: 0.97rem; color: #4a5046; line-height: 1.85; }
.faq-item.open .faq-a { display: block; }
.faq-contact { background: var(--green); border-radius: 20px; padding: 2.5rem; color: white; }
.faq-contact h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 300; margin-bottom: 0.7rem; }
.faq-contact p { font-size: 0.85rem; opacity: 0.8; line-height: 1.7; margin-bottom: 1.4rem; }
.contact-links { display: flex; flex-direction: column; gap: 0.7rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.7rem;
  color: white; text-decoration: none; font-size: 0.85rem;
  background: rgba(255,255,255,0.1); padding: 0.7rem 1rem; border-radius: 10px;
  transition: background 0.2s;
}
.contact-link:hover { background: rgba(255,255,255,0.18); }

/* CTA */
.cta-section {
  background: var(--green); color: white;
  text-align: center; padding: 6rem 5rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
}
.cta-section .sec-label { color: var(--gold-light); }
.cta-section .sec-label::before { background: var(--gold); }
.cta-section .sec-h2 { color: white; }
.cta-section .sec-h2 em { color: var(--gold-light); }
.cta-section > p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: white; color: var(--green); text-decoration: none; padding: 0.85rem 2rem; border-radius: 100px; font-size: 0.88rem; font-weight: 600; transition: all 0.2s; }
.btn-white:hover { background: var(--gold-pale); color: var(--ink); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.4); color: white; text-decoration: none; padding: 0.82rem 1.8rem; border-radius: 100px; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 4rem 5rem 2rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
/* Footer sits on dark ink — present the logo as a clean white tile */
.footer-logo-img { display: block; width: 210px; max-width: 100%; height: auto; background: #fff; padding: 0.9rem 1.1rem; border-radius: 14px; margin-bottom: 1rem; }
.footer-desc { font-size: 0.82rem; line-height: 1.75; max-width: 260px; margin-bottom: 1rem; }
.footer-contact-item { font-size: 0.8rem; margin-bottom: 0.4rem; }
.footer-contact-item a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-col h5 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: white; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.82rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }

/* WHATSAPP */
.wa-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none; font-size: 1.7rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.72); }
}
.wa-tooltip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--ink); color: white;
  font-size: 0.76rem; font-family: 'Inter', sans-serif;
  padding: 0.4rem 0.9rem; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-btn:hover .wa-tooltip { opacity: 1; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1){animation-delay:0.1s}
.hero-content > *:nth-child(2){animation-delay:0.2s}
.hero-content > *:nth-child(3){animation-delay:0.28s}
.hero-content > *:nth-child(4){animation-delay:0.36s}
.hero-content > *:nth-child(5){animation-delay:0.44s}
.hero-content > *:nth-child(6){animation-delay:0.52s}

/* RESPONSIVE */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; min-height: auto; }
  .hero-content { padding: 0; }
  .hero-desc { white-space: normal; }
  .hero-slideshow { height: 280px; min-height: 0; margin-top: 1.5rem; border-radius: 20px; }
  .hero-slideshow-right { border-radius: 20px; }
  section { padding: 3.5rem 1.5rem; }
  .about-grid, .why-grid, .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .programs-grid, .blog-grid, .service-cards-row, .testimonials-grid { grid-template-columns: 1fr !important; }
  .svc-card.list-card { padding-right: 1.8rem; min-height: 0; }
  .list-media { position: static; width: 100%; height: 220px; margin-top: 1.2rem; }

  /* Service tabs open as a popup on mobile instead of inline content */
  .svc-modal-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(20,20,15,0.6);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .svc-modal-backdrop.show { display: block; opacity: 1; }
  .svc-modal-close {
    display: none;
    position: fixed;
    top: calc(6vh + 12px);
    right: calc(4vw + 12px);
    z-index: 1001;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    background: var(--ink, #1e2318);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }
  .svc-modal-close.show { display: flex; }
  .svc-panel.active {
    position: fixed;
    top: 6vh; left: 4vw; right: 4vw; bottom: 6vh;
    margin: 0;
    background: #fff;
    z-index: 1000;
    border-radius: 20px;
    padding: 1.8rem 1.3rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  body.svc-modal-open { overflow: hidden; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .competency-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 4rem 1.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
}

@media (max-width: 560px) {
  nav { padding: 0.8rem 1.1rem; }
  .nav-logo { height: 40px; }
  .nav-brand-text { font-size: 1.7rem; }
  .hero { padding: 6.5rem 1.1rem 2.5rem; }
  .hero-slideshow { height: 220px; }
  .list-media { height: 200px; }
  section { padding: 3rem 1.1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { flex: 1; text-align: center; }
  .why-visual, .competency-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
