:root {
  --cream: #F8FBFC;
  --cream-warm: #EEF4F7;
  --charcoal: #2D2A26;
  --charcoal-light: #4A4641;
  --sage: #66a2ba;
  --sage-light: #88bbd0;
  --sage-pale: #EBF3F7;
  --purple: #8b32ad;
  --purple-light: #a855c7;
  --purple-pale: #F3EAF8;
  --terracotta: #8b32ad;
  --terracotta-light: #a855c7;
  --dark: #1E1D1B;
  --dark-surface: #2A2825;
  --border: rgba(45, 42, 38, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);
  --card-bg: #fff;
  --input-bg: #fff;
  --input-border: rgba(45, 42, 38, 0.12);
  --nav-bg: rgba(248, 251, 252, 0.9);
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;
}

html.dark {
  --cream: #1A1917;
  --cream-warm: #222120;
  --charcoal: #E8E4DF;
  --charcoal-light: #B0AAA2;
  --sage-pale: #1A2830;
  --purple-pale: #2A1E30;
  --border: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);
  --dark: #111110;
  --dark-surface: #1A1917;
  --card-bg: #222120;
  --input-bg: #222120;
  --input-border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(26, 25, 23, 0.92);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

.bg-shapes {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
  opacity: 0.1;
  transition: opacity 0.6s;
}
html.dark .bg-shapes { opacity: 0.04; }

.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--sage); color: #fff;
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-size: 14px; font-weight: 600; z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

*:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}
html.dark *:focus-visible { outline-color: var(--sage-light); }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s, color 0.4s;
  position: relative;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 5% 10%, rgba(102, 162, 186, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 95% 20%, rgba(139, 50, 173, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 85%, rgba(102, 162, 186, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 15% 90%, rgba(139, 50, 173, 0.12) 0%, transparent 50%),
    radial-gradient(circle 400px at 50% 50%, rgba(102, 162, 186, 0.08) 0%, transparent 70%);
  background-color: var(--cream);
}

html.dark body::before {
  background:
    radial-gradient(ellipse 80% 60% at 5% 10%, rgba(102, 162, 186, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 95% 20%, rgba(139, 50, 173, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 85%, rgba(102, 162, 186, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 15% 90%, rgba(139, 50, 173, 0.07) 0%, transparent 50%);
  background-color: var(--cream);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; margin-bottom: var(--space-md); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; margin-bottom: var(--space-xs); }
p { max-width: 640px; }
em { font-family: var(--font-heading); font-style: italic; font-weight: 400; }

.body-lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--charcoal-light);
  margin-bottom: var(--space-lg);
  max-width: 580px;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.3s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
html.dark nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.25); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; gap: 24px;
  transition: padding 0.3s;
  flex-wrap: nowrap;
}
nav.scrolled .nav-inner { padding-top: 10px; padding-bottom: 10px; }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1.4rem;
  letter-spacing: -0.02em; transition: color 0.3s;
  line-height: 1.15;
}
.nav-logo img {
  height: 80px; width: auto; border-radius: 12px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; opacity: 0.7; transition: opacity 0.2s, color 0.3s; }
.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--purple); color: #fff !important; opacity: 1 !important;
  padding: 9px 22px; border-radius: 8px; font-weight: 600; font-size: 14px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--purple-light); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; background: var(--charcoal);
  position: absolute; left: 0; transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

.theme-toggle {
  background: none; border: 1.5px solid var(--border); border-radius: 50%;
  width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal); transition: all 0.3s;
  flex-shrink: 0; position: relative; overflow: hidden;
}
.theme-toggle:hover { border-color: var(--sage); background: rgba(102, 162, 186, 0.1); }
.theme-toggle svg {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.5); }
html.dark .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.5); }
html.dark .theme-toggle .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }

.hero-wrap {
  position: relative;
  overflow: hidden;
}
.hero-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url('images/hero-flowers.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFlowerIn 1.8s ease 0.2s forwards;
  pointer-events: none;
  z-index: 0;
}
.hero-wrap::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
  z-index: 1;
}
html.dark .hero-wrap::before { opacity: 0; animation: heroFlowerInDark 1.8s ease 0.2s forwards; }
html.dark .hero-wrap::after { background: linear-gradient(to bottom, transparent, var(--cream)); }

@keyframes heroFlowerIn {
  to { opacity: 0.5; }
}
@keyframes heroFlowerInDark {
  to { opacity: 0.2; }
}

.hero {
  position: relative; z-index: 3;
  min-height: 85vh;
  display: grid; grid-template-columns: 1fr 380px;
  align-items: center; gap: var(--space-xl);
  max-width: 1200px; margin: 0 auto;
  padding: calc(var(--space-2xl) + 60px) 32px var(--space-2xl);
}

.hero-stagger {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.7s ease forwards;
}
.hero-stagger:nth-child(1) { animation-delay: 0.1s; }
.hero-stagger:nth-child(2) { animation-delay: 0.25s; }
.hero-stagger:nth-child(3) { animation-delay: 0.4s; }
.hero-stagger:nth-child(4) { animation-delay: 0.55s; }
.hero-aside.hero-stagger { animation-delay: 0.5s; }

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--purple); margin-bottom: var(--space-md);
}

.hero h1 { margin-bottom: var(--space-md); max-width: 600px; }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--charcoal-light);
  max-width: 520px; margin-bottom: var(--space-lg);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-aside {
  display: flex; flex-direction: column; gap: 20px;
  align-items: stretch; justify-content: center;
}

.hero-portrait {
  width: 100%; max-width: 380px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  line-height: 0;
}
.hero-portrait img {
  width: 100%; height: auto; display: block;
  border-radius: 20px;
}

.hero-quote {
  background: var(--sage-pale); border-radius: 16px; padding: 36px 32px;
  max-width: 340px; border-left: 3px solid var(--purple);
  transition: background 0.4s;
}

.hero-quote blockquote {
  font-family: var(--font-heading); font-size: 1.3rem; font-style: italic;
  font-weight: 400; line-height: 1.4; color: var(--charcoal); margin-bottom: 12px;
}

.hero-quote cite {
  font-style: normal; font-size: 14px; font-weight: 600;
  color: var(--sage); letter-spacing: 0.02em;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 10px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
  background: var(--sage); color: #fff;
}
.btn:hover { background: var(--sage-light); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: var(--purple); border: 1.5px solid var(--purple);
  color: #fff;
}
.btn-outline:hover { background: var(--purple-light); border-color: var(--purple-light); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }
html.dark .btn-outline { background: var(--purple); border-color: var(--purple); }
html.dark .btn-outline:hover { background: var(--purple-light); border-color: var(--purple-light); }

.btn-light { background: var(--purple); color: #fff; border: 1px solid var(--purple); }
.btn-light:hover { background: var(--purple-light); border-color: var(--purple-light); }
.btn-lg { padding: 16px 36px; font-size: 17px; }

.trust-strip {
  background: var(--sage); color: #fff; padding: 28px 32px;
  transition: background 0.4s;
}
html.dark .trust-strip { background: #1E3A48; }

.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}

.trust-item { font-size: 15px; font-weight: 500; opacity: 0.9; }
.trust-item strong {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  display: block; margin-bottom: 2px; opacity: 1;
}

.badges-strip {
  padding: 72px 32px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, border-color 0.4s;
}

.badges-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 96px; flex-wrap: wrap;
}

.badge-item {
  display: flex; align-items: center; gap: 32px;
  font-size: 28px; color: var(--charcoal-light); font-weight: 500;
  opacity: 1;
}

.badge-item img {
  width: 225px; height: 225px; object-fit: contain;
  border-radius: 12px;
}

.badge-text {
  font-family: var(--font-heading); font-weight: 700; font-size: 3.2rem;
  color: var(--sage); letter-spacing: 0.02em;
  width: 225px; height: 225px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sage-pale); border-radius: 16px;
  transition: background 0.4s;
}

.section { padding: var(--space-2xl) 32px; transition: background 0.4s; }
.section-warm { background: var(--cream-warm); }
html.dark .section-warm { background: var(--cream-warm); }

.section-dark { background: var(--dark); color: #fff; transition: background 0.4s, color 0.4s; }
.section-dark .body-lead { color: rgba(255,255,255,0.6); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark h2, .section-dark h3 { color: #fff; }
html.dark .section-dark { background: #111110; }

.section-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: var(--space-xl);
}
.section-body { min-width: 0; }

.label-tag {
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--sage); display: inline-block;
  position: sticky; top: 100px;
}
.label-tag.light { color: var(--terracotta-light); }

.section-body p + p { margin-top: var(--space-sm); }

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: var(--space-lg);
}

.value-card {
  padding: 28px; border-radius: 14px;
  background: var(--sage-pale);
  border: 1px solid rgba(102, 162, 186, 0.15);
  transition: background 0.4s, border-color 0.4s, transform 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
html.dark .value-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.value-card h3 { color: var(--sage); font-size: 1.1rem; }
.value-card p { font-size: 15px; color: var(--charcoal-light); margin-top: 8px; }

.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: var(--space-md);
}

.service-card {
  padding: 32px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.4s, transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: rgba(102, 162, 186, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
html.dark .service-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.service-card.featured {
  border-color: var(--sage); background: var(--sage-pale);
}

.service-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 14px;
}

.service-price {
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  color: var(--sage); white-space: nowrap; padding-top: 4px;
}

.service-card p { font-size: 15px; color: var(--charcoal-light); margin-bottom: 16px; }
.service-outcomes { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.service-outcomes li {
  font-size: 14px; font-weight: 500; padding-left: 20px;
  position: relative; color: var(--charcoal-light);
}

.service-outcomes li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); opacity: 0.5;
}

.service-note {
  font-size: 13px; color: var(--charcoal-light); margin-top: 12px;
  font-style: italic; opacity: 0.8;
}
.service-note a { color: var(--sage); text-decoration: underline; }

.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: var(--space-md);
}

.team-card {
  padding: 28px; border-radius: 14px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.4s, transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  border-color: rgba(102, 162, 186, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
html.dark .team-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.team-card-lead {
  grid-column: 1 / -1;
  padding: 36px;
  background: var(--sage-pale); border-color: rgba(102, 162, 186, 0.2);
}

.team-photo {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; object-position: center 20%;
  margin-bottom: 14px; border: 2px solid var(--border);
  filter: grayscale(30%);
  transition: filter 0.3s;
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-card-lead .team-photo { width: 100px; height: 100px; }

.team-card h3 { font-size: 1.2rem; margin-bottom: 2px; }
.team-role {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--sage); margin-bottom: 8px;
}
.team-quals {
  display: block; font-size: 13px; color: var(--charcoal-light);
  margin-bottom: 12px; opacity: 0.7;
}
.team-card p { font-size: 15px; color: var(--charcoal-light); max-width: none; }

.testimonials-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-md);
  align-items: stretch;
}
.testimonials-featured {
  margin-top: 24px;
}

.testimonials-slider {
  margin-top: 24px;
  min-width: 0;
  max-width: 100%;
}
.testimonials-slider-viewport {
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
.testimonials-slider-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  min-width: 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonials-slider .testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  box-sizing: border-box;
}
.testimonials-slider .testimonial-slide blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.testimonials-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.testimonials-slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--charcoal);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.testimonials-slider-btn:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: var(--sage);
}
.testimonials-slider-btn:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}
.testimonials-slider-dots {
  display: flex; justify-content: center; gap: 8px;
}
.testimonials-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: var(--border);
  transition: background 0.2s, transform 0.2s, width 0.2s;
}
.testimonials-slider-dot[aria-selected="true"] {
  background: var(--sage);
  width: 24px; border-radius: 4px;
}
.testimonials-slider-dot:hover { background: var(--sage); }
.testimonials-slider-dot:focus-visible {
  outline: 2px solid var(--sage); outline-offset: 2px;
}

.testimonial-card {
  padding: 28px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: background 0.4s, border-color 0.25s, box-shadow 0.25s;
}
.testimonials-wall .testimonial-card {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.testimonials-wall .testimonial-card blockquote {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.testimonials-wall .testimonial-card.is-expanded blockquote {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
}
.testimonials-wall .testimonial-author {
  margin-top: auto;
}
.testimonials-slider .testimonial-card:hover,
.testimonials-featured .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.testimonials-wall .testimonial-card:hover {
  border-color: var(--sage);
}
html.dark .testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.testimonial-toggle {
  display: inline-block;
  margin-top: 4px;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sage);
  cursor: pointer;
  letter-spacing: 0.02em;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.testimonial-toggle:hover { opacity: 0.7; }
.testimonial-toggle:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.testimonial-card-featured {
  background: var(--sage-pale);
  border-color: var(--sage);
  padding: 32px;
}
.testimonial-card-featured h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--sage); margin-bottom: 16px;
}
.testimonial-card-featured blockquote {
  white-space: pre-line;
}

.testimonial-card blockquote {
  font-family: var(--font-heading); font-size: 1rem; font-style: italic;
  font-weight: 400; line-height: 1.55; color: var(--charcoal);
  margin-bottom: 20px;
}

.testimonial-author {
  border-top: 1px solid var(--border); padding-top: 16px;
}
.testimonial-author strong {
  display: block; font-size: 14px; font-weight: 600; color: var(--charcoal);
}
.testimonial-author span {
  font-size: 13px; color: var(--charcoal-light);
}

.membership-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: var(--space-md);
}

.membership-card {
  padding: 36px; border-radius: 16px;
  background: var(--dark-surface); border: 1px solid var(--border-dark);
  transition: background 0.4s;
}
html.dark .membership-card { background: #1A1917; }

.membership-badge {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--terracotta-light); display: inline-block; margin-bottom: 14px;
}
.membership-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.membership-card p { font-size: 15px; margin-bottom: 20px; }

.membership-price {
  display: block; font-family: var(--font-heading); font-weight: 600;
  font-size: 1.15rem; color: var(--terracotta-light); margin-bottom: 20px;
}

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: var(--space-md);
}

.process-step { position: relative; }
.step-num {
  font-family: var(--font-heading); font-weight: 700; font-size: 2rem;
  color: var(--sage); opacity: 0.25; display: block; margin-bottom: 10px;
}
.process-step h3 { color: var(--sage); }
.process-step p { font-size: 15px; color: var(--charcoal-light); }

.contact-methods {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: var(--space-lg);
}

.contact-card {
  padding: 40px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: background 0.4s, border-color 0.2s;
  display: flex; flex-direction: column; justify-content: space-between;
}
.contact-card:hover { border-color: rgba(102, 162, 186, 0.4); }
.contact-card-primary {
  border-color: var(--sage);
  background: var(--sage-pale);
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
  align-self: start;
}
.contact-card-primary:hover { border-color: var(--sage-light); }
.contact-card-primary p { margin-bottom: 12px; }
.contact-card-primary .btn { width: auto; display: inline-block; background: var(--purple); }
.contact-card-primary .btn:hover { background: var(--purple-light); }
.contact-card-form { flex: 1 1 100%; }
.contact-card-form h3 { margin-bottom: 16px; }
.inquiry-form {
  min-height: 520px; border-radius: 12px; overflow: hidden;
}
.inquiry-form iframe { display: block; }
.contact-card h3 { color: var(--sage); margin-bottom: 10px; font-size: 1.3rem; }
.contact-card p { font-size: 16px; color: var(--charcoal-light); margin-bottom: 24px; max-width: none; line-height: 1.6; }
.contact-card .btn,
.contact-card .btn-outline { width: 100%; text-align: center; font-size: 15px; }

#contact .body-lead { margin-bottom: var(--space-lg); max-width: 520px; }

.section-cta {
  margin-top: var(--space-lg);
}

.timeline {
  position: relative;
  margin-top: var(--space-lg);
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--sage), var(--purple));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -40px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--sage);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--sage);
  z-index: 2;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.timeline-item:nth-child(even) .timeline-dot {
  background: var(--purple);
  box-shadow: 0 0 0 2px var(--purple);
}

.timeline-date {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--sage);
  margin-bottom: 6px;
}
.timeline-item:nth-child(even) .timeline-date { color: var(--purple); }

.timeline-item h3 {
  font-size: 1.2rem; margin-bottom: 8px;
  color: var(--charcoal);
}

.timeline-item p {
  font-size: 15px; color: var(--charcoal-light);
  max-width: 600px; line-height: 1.65;
}

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: var(--space-md);
}

.blog-card {
  display: flex; flex-direction: column;
  padding: 32px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.4s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit;
}
.blog-card:hover {
  border-color: rgba(102, 162, 186, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
html.dark .blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.blog-card-tag {
  display: inline-block; align-self: flex-start;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--purple);
  background: var(--purple-pale); padding: 4px 12px;
  border-radius: 20px; margin-bottom: 16px;
}

.blog-card h3 {
  font-size: 1.25rem; margin-bottom: 10px;
  color: var(--charcoal); line-height: 1.3;
}

.blog-card p {
  font-size: 15px; color: var(--charcoal-light);
  max-width: none; flex: 1; margin-bottom: 20px;
}

.blog-card-meta {
  display: flex; gap: 16px;
  font-size: 13px; color: var(--charcoal-light);
  opacity: 0.7; border-top: 1px solid var(--border);
  padding-top: 14px;
}
.blog-card-meta span:first-child { font-weight: 600; }

.brands-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: var(--space-md);
}

.brand-card {
  padding: 32px; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, background 0.4s, transform 0.25s, box-shadow 0.25s;
}
.brand-card:hover {
  border-color: rgba(102, 162, 186, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
html.dark .brand-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.brand-card img {
  height: 48px; width: auto; object-fit: contain;
  align-self: flex-start; border-radius: 6px;
}
.brand-card h3 { color: var(--sage); }
.brand-card p { font-size: 15px; color: var(--charcoal-light); flex: 1; max-width: none; }
.brand-card .btn { align-self: flex-start; font-size: 14px; padding: 10px 22px; }

.footer {
  background: var(--dark); color: rgba(255,255,255,0.6);
  padding: var(--space-xl) 32px;
  transition: background 0.4s;
}
html.dark .footer { background: #111110; }

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto auto; gap: var(--space-xl);
  align-items: start;
}

.footer-logo {
  font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem;
  color: #fff; display: block; margin-bottom: 10px;
}

.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.footer-contact p { font-size: 14px; margin-bottom: 0; max-width: none; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-socials {
  display: flex; gap: 14px; margin-top: 12px;
}
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-socials a:hover {
  color: #fff; border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  max-width: 1200px; margin: var(--space-lg) auto 0;
  padding: var(--space-md) 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 13px; opacity: 0.4; max-width: none; }
.footer-bottom p + p { margin-top: 4px; }

.back-to-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: #fff; border: none;
  cursor: pointer; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.back-to-top:hover { background: var(--sage-light); }
.back-to-top.visible {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Section images */
.section-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin: var(--space-md) 0;
}
.section-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.4s;
}
.section-image:hover img {
  filter: saturate(1);
}
.section-image-wide {
  margin: var(--space-lg) calc(-1 * var(--space-md));
  border-radius: 0;
}
.section-image-wide img {
  height: 280px;
  border-radius: 0;
  object-position: center 25%;
}

/* Newsletter */
.newsletter-section {
  background: var(--sage-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: var(--space-xl);
}
.newsletter-text {
  flex: 1; min-width: 280px;
}
.newsletter-text h2 {
  font-family: var(--font-heading); font-size: 2rem; margin: 8px 0 12px;
  color: var(--charcoal);
}
.newsletter-text p {
  color: var(--charcoal-light); font-size: 1.05rem; line-height: 1.6;
}
.newsletter-form {
  flex: 1; min-width: 320px; min-height: 420px;
  border-radius: 16px; overflow: hidden;
  background: var(--cream);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.newsletter-form iframe {
  display: block;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; }
  .hero-aside.hero-stagger { animation-delay: 0.55s; }
  .hero-aside { justify-content: flex-start; align-items: center; }
  .hero-portrait { max-width: 320px; }
  .section-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .label-tag { position: static; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .membership-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-wall { grid-template-columns: repeat(2, 1fr); }
  .contact-methods { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .badges-inner { gap: 24px; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .section { padding: var(--space-xl) 20px; }
  .trust-strip { padding: 24px 20px; }
  .badges-strip { padding: 20px; }
  .footer { padding: var(--space-lg) 20px; }

  .nav-inner { padding: 14px 20px; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream); flex-direction: column;
    align-items: center; justify-content: center; gap: 24px; z-index: 99;
  }
  html.dark .nav-links { background: var(--cream); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; opacity: 1; color: var(--charcoal); }
  .nav-links .theme-toggle { position: fixed; top: 14px; right: 72px; z-index: 102; }
  .nav-toggle { display: block; z-index: 101; }
  .nav-toggle.open span:first-child { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:last-child { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { padding: 100px 20px var(--space-xl); gap: var(--space-lg); }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-quote { max-width: 100%; padding: 28px 24px; }
  .hero-quote blockquote { font-size: 1.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .trust-inner { flex-direction: column; gap: 16px; }

  .badges-inner { gap: 40px; justify-content: center; }
  .badge-item { font-size: 20px; gap: 20px; }
  .badge-item img, .badge-text { width: 160px; height: 160px; }
  .badge-text { font-size: 2.2rem; }

  .values-grid { gap: 16px; }
  .value-card { padding: 22px; }

  .services-grid { gap: 16px; }
  .service-card { padding: 24px; }
  .service-header { flex-direction: column; gap: 4px; }
  .section-image img { height: 200px; }
  .section-image-wide { margin-left: -20px; margin-right: -20px; }
  .section-image-wide img { height: 180px; }

  .team-card { padding: 22px; }
  .team-card-lead { padding: 28px; }

  .testimonials-wall { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 24px; }
  .testimonials-slider-btn { width: 36px; height: 36px; }
  .testimonials-slider-controls { gap: 10px; }

  .membership-card { padding: 28px; }

  .process-steps { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: 1fr; }

  .contact-methods { gap: 16px; }
  .contact-card { padding: 28px; }

  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { min-height: 500px; }

  .footer-bottom { margin-top: var(--space-md); padding-top: var(--space-sm); }
  .back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-banner p {
  flex: 1;
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner a {
  color: var(--sage);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn-accept {
  background: var(--sage);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: var(--sage-light);
}
.cookie-btn-essential {
  background: transparent;
  color: var(--charcoal-light);
  border: 1px solid var(--border);
}
.cookie-btn-essential:hover {
  border-color: var(--sage);
  color: var(--sage);
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
