/* ============================================================
   KALEIGH TYLER — THE NUTRITION METHOD
   Stylesheet · v1.0
   Colours: #6E5084 (deep purple) · #CDB2E2 (light lavender)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --purple-dark:   #6E5084;
  --purple-deep:   #4A3159;
  --purple-light:  #CDB2E2;
  --purple-pale:   #F4EDF9;
  --purple-faint:  #FAF6FD;
  --white:         #FFFFFF;
  --text-dark:     #2C1A3A;
  --text-mid:      #5C4870;
  --text-light:    #8A7099;
  --border:        #E3D0F0;
  --shadow-sm:     0 2px 12px rgba(110, 80, 132, 0.10);
  --shadow-md:     0 6px 28px rgba(110, 80, 132, 0.16);
  --shadow-lg:     0 16px 48px rgba(110, 80, 132, 0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --max-width:     1160px;
  --nav-height:    72px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', sans-serif; }

p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── Layout Helpers ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-dark);
  background: var(--purple-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 560px; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--purple-dark);
  color: var(--white);
  border-color: var(--purple-dark);
}
.btn--primary:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--purple-dark);
  border-color: var(--purple-dark);
}
.btn--outline:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--white);
  color: var(--purple-dark);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 17px 36px;
  font-size: 1rem;
}

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

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.nav__logo-img { height: 40px; width: 40px; object-fit: contain; flex-shrink: 0; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.18s ease;
}
.nav__link:hover, .nav__link.active {
  color: var(--purple-dark);
  background: var(--purple-pale);
}

.nav__cta { margin-left: 12px; }

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: all 0.22s ease;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--purple-faint) 0%, var(--purple-pale) 60%, var(--purple-light) 100%);
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(205,178,226,0.35) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-dark);
  margin-bottom: 1.2rem;
}

.hero__title { margin-bottom: 1.4rem; }
.hero__title em {
  font-style: italic;
  color: var(--purple-dark);
}

.hero__body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple-dark);
  flex-shrink: 0;
}

.hero__image {
  display: flex;
  justify-content: center;
}

.hero__photo {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Image placeholder used until real photo is inserted */
.hero__photo-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--purple-light), var(--purple-dark));
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 32px;
  font-size: 0.9rem;
  opacity: 0.85;
}
.hero__photo-placeholder svg { margin-bottom: 12px; opacity: 0.6; }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--purple-dark);
  padding: 18px 0;
}
.trust-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-strip__item svg { opacity: 0.7; flex-shrink: 0; }

/* ── Specialisms ── */
.specialisms {
  background: var(--white);
}
.specialisms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}
.specialism-card {
  background: var(--purple-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.22s ease;
}
.specialism-card:hover {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.specialism-card__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.specialism-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 6px;
}
.specialism-card__body {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ── About teaser ── */
.about-teaser {
  background: var(--purple-pale);
}
.about-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-teaser__photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-teaser__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #d4bde8, var(--purple-dark));
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  opacity: 0.85;
  text-align: center;
  padding: 24px;
}
.about-teaser__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
}
.credential-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-dark);
}

/* ── Programmes ── */
.programmes { background: var(--white); }
.programmes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 3rem;
}
.prog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.prog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--purple-light);
}
.prog-card--featured {
  border-color: var(--purple-dark);
  position: relative;
}
.prog-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--purple-dark);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.prog-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.prog-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.prog-card__image-placeholder--1 { background: linear-gradient(135deg, #e8d5f5, #c9a8e0); }
.prog-card__image-placeholder--2 { background: linear-gradient(135deg, #d4bde8, #b08acc); }
.prog-card__image-placeholder--3 { background: linear-gradient(135deg, #c0a0d8, #9670b8); }
.prog-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prog-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.prog-card__tagline {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.prog-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 4px;
  line-height: 1;
}
.prog-card__price-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.prog-card__includes {
  list-style: none;
  margin: 0 0 1.5rem;
  flex: 1;
}
.prog-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0;
  border-bottom: 1px solid var(--purple-faint);
}
.prog-card__includes li:last-child { border: none; }
.prog-card__includes li::before {
  content: '✓';
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.prog-card__cta { width: 100%; text-align: center; }

/* ── Testimonials carousel ── */
.testimonials { background: var(--purple-pale); }
.testimonials__carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}
.testimonials__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 100%;
  box-sizing: border-box;
}
.testimonial-card__source {
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-card__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  padding: 3px 10px 3px 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #5f6368;
  letter-spacing: 0.03em;
}
.testimonial-card__google-badge svg { flex-shrink: 0; }
.testimonial-card__stars { color: var(--purple-dark); letter-spacing: 3px; font-size: 1.15rem; }
.testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  flex: 1;
}
.testimonial-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple-dark);
}
.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--text-light);
}
.testimonial-card__condition {
  display: inline-block;
  background: var(--purple-faint);
  color: var(--purple-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 2px;
}
/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.testimonials__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-dark);
  background: transparent;
  color: var(--purple-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.testimonials__btn:hover { background: var(--purple-dark); color: var(--white); }
.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonials__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.testimonials__dot--active {
  background: var(--purple-dark);
  transform: scale(1.35);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.cta-banner__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1rem;
}
.cta-banner__title {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner__body {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 32px;
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 14px;
}
.footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1.2rem;
}
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
  color: rgba(255,255,255,0.7);
}
.footer__social-link:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}
.footer__col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s ease;
}
.footer__link:hover { color: var(--purple-light); }
.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer__contact-item a { color: rgba(255,255,255,0.65); transition: color 0.18s ease; }
.footer__contact-item a:hover { color: var(--purple-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: color 0.18s ease; }
.footer__bottom a:hover { color: var(--purple-light); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.22s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  background: #1fb855;
  color: white;
}
.whatsapp-float svg { flex-shrink: 0; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--purple-faint) 0%, var(--purple-pale) 100%);
  padding: 72px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__title { margin-bottom: 0.6rem; }
.page-hero__sub { font-size: 1.05rem; color: var(--text-mid); max-width: 520px; margin: 0 auto; }

/* ── FAQ Accordion ── */
.faq-section { background: var(--white); }
.faq-grid {
  max-width: 760px;
  margin: 3rem auto 0;
}
details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all 0.22s ease;
  overflow: hidden;
}
details[open] {
  border-color: var(--purple-light);
  box-shadow: var(--shadow-sm);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--purple-dark);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
details[open] summary::after {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq__answer p { margin-bottom: 0.7rem; }
.faq__answer p:last-child { margin-bottom: 0; }

/* ── Contact Page ── */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: var(--purple-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple-dark);
}
.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 3px;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-info__value a { color: var(--purple-dark); }
.contact-info__value a:hover { text-decoration: underline; }

.whatsapp-cta {
  background: linear-gradient(135deg, var(--purple-pale), #ffe9fa);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 28px;
  text-align: center;
}
.whatsapp-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.whatsapp-cta__body {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.btn--whatsapp {
  background: #25D366;
  color: white;
  border-color: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.22s ease;
  border: 2px solid #25D366;
}
.btn--whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  color: white;
}

/* Contact Form */
.contact-form {
  background: var(--purple-faint);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
}
.contact-form__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-form__sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple-dark);
  box-shadow: 0 0 0 3px rgba(110,80,132,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236E5084' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-submit { width: 100%; justify-content: center; }

/* ── About page ── */
.about-story { background: var(--white); }
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.about-story__photo {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}
.about-story__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-story__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--purple-light), var(--purple-dark));
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  text-align: center;
  padding: 24px;
  opacity: 0.85;
}
.about-story__qual-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0;
}
.qual-chip {
  background: var(--purple-pale);
  border: 1px solid var(--purple-light);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple-dark);
}
.about-story__highlight {
  background: var(--purple-pale);
  border-left: 4px solid var(--purple-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 1.5rem 0;
}
.about-story__highlight p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__photo { position: static; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav__links.open .nav__cta { display: flex; margin: 12px 0 0; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 24px;
    text-align: center;
  }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__image { order: 1; }
  .hero__photo, .hero__photo-placeholder { max-width: 340px; margin: 0 auto; }

  .about-teaser__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .whatsapp-float { bottom: 16px; right: 16px; padding: 12px 16px 12px 14px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .trust-strip__inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .programmes__grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px 24px; }
  .testimonial-card__quote { font-size: 1.15rem; }
}
