:root {
  --forest-900: #324532;
  --forest-700: #415941;
  --forest-500: #5f765f;
  --sage-200: #ced6ce;
  --cream-100: #fff6eb;
  --sand-100: #f4ede3;
  --ink: #1d261d;
  --max-width: 1120px;
  --shadow-soft: 0 20px 50px rgba(50, 69, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 15% -10%, #f8f2ea 0%, #ffffff 45%, #f9fbf7 100%);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--forest-700);
  line-height: 1.1;
  margin-top: 0;
}

a {
  color: var(--forest-900);
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.45;
}

.ambient-shape-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(206, 214, 206, 0.5), rgba(206, 214, 206, 0));
  top: -180px;
  left: -100px;
}

.ambient-shape-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 246, 235, 0.8), rgba(255, 246, 235, 0));
  right: -120px;
  top: 260px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.83);
  border-bottom: 1px solid rgba(206, 214, 206, 0.8);
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest-700);
}

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

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-nav a.active,
.site-nav a[aria-current="page"] {
  background: var(--cream-100);
  border-color: var(--sage-200);
}

.nav-cta {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  color: var(--forest-900);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--sage-200);
  background: #fff;
  color: var(--forest-900);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
}

.hero {
  padding: 4rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.1rem;
}

.hero-content p {
  margin-bottom: 1rem;
  max-width: 62ch;
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 88%;
  height: 90%;
  background: linear-gradient(140deg, var(--forest-900), var(--forest-500));
  border-radius: 24px;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-500);
  margin-bottom: 0.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 0.72rem 1.2rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--forest-900), var(--forest-700));
  color: #fff;
  box-shadow: 0 10px 22px rgba(50, 69, 50, 0.25);
}

.btn-secondary {
  background: #fff;
  border-color: var(--sage-200);
}

.btn-full {
  width: 100%;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 246, 235, 0.8), rgba(255, 255, 255, 0.9));
}

.section-head h2,
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.question-list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.question-list li {
  background: #fff;
  border: 1px solid rgba(206, 214, 206, 0.8);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  box-shadow: 0 10px 28px rgba(65, 89, 65, 0.08);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.4rem;
}

.cards {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(206, 214, 206, 0.95);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 14px 30px rgba(50, 69, 50, 0.08);
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.therapy {
  margin-top: 1.8rem;
  border-left: 3px solid var(--forest-700);
  background: #f9fcf8;
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.2rem;
}

.therapy ul,
.contact-list {
  margin: 0.7rem 0 0;
  padding-left: 1.15rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--sage-200);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
}

.small-note {
  font-size: 0.88rem;
  color: #455145;
}

.trust-logos {
  margin-top: 2rem;
  padding: 0.9rem 1rem;
  background: #eef3ed;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  align-items: center;
}

.trust-logos img {
  width: auto;
  max-width: 240px;
  max-height: 88px;
  height: auto;
  display: block;
  background: #fff;
  padding: 0.35rem;
}

.site-footer {
  border-top: 1px solid rgba(206, 214, 206, 0.9);
  padding: 1rem 0 1.6rem;
  background: rgba(255, 255, 255, 0.7);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-copy {
  margin: 0.4rem 0 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(206, 214, 206, 0.8);
  text-align: center;
  font-size: 0.85rem;
  color: #455145;
}

.footer-copy-link {
  color: inherit;
  text-decoration: none;
}

.footer-copy-link:hover {
  text-decoration: underline;
}

/* Page load reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.32s;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media {
    max-width: 440px;
  }

  .trust-logos img {
    max-width: 210px;
    max-height: 76px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(206, 214, 206, 0.95);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1rem 1rem;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.65rem 0;
  }
}
