@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── Design tokens ───────────────────────────────────────────────────────── */
:root {
  --sage:        #7a9e7e;
  --sage-light:  #b5ceb8;
  --sage-dark:   #4f7354;
  --blush:       #e8c4b8;
  --blush-light: #f5e0d8;
  --sand:        #ede5d8;
  --sand-dark:   #d4c9b5;
  --terra:       #c47f5e;
  --terra-dark:  #a05e3c;
  --lavender:    #bdb5cc;
  --cream:       #faf8f4;
  --ink:         #2b2e27;
  --ink-mid:     #4a4e43;
  --ink-soft:    #6b7063;
  --ink-muted:   #8f9487;
  --white:       #ffffff;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-card: 0 2px 16px rgba(43,46,39,.08), 0 1px 4px rgba(43,46,39,.04);
  --shadow-lift: 0 8px 32px rgba(43,46,39,.12), 0 2px 8px rgba(43,46,39,.06);
  --shadow-btn:  0 4px 14px rgba(79,115,84,.30);

  --ease-out: cubic-bezier(.22,.68,0,1.2);
  --ease-std: cubic-bezier(.4,0,.2,1);
}

/* ─── Base ────────────────────────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(15px, 1.05vw + 12px, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ─── Container ──────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5vw + .8rem, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw + .6rem, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.5vw + .5rem, 1.5rem); }
h4 { font-size: 1.05rem; }

p { max-width: 68ch; color: var(--ink-mid); }
p + p { margin-top: .9em; }

strong { font-weight: 600; color: var(--ink); }
em { font-style: italic; color: var(--ink-soft); }

/* ─── Links ──────────────────────────────────────────────────────────────── */
.link-inline {
  color: var(--sage-dark);
  border-bottom: 1px solid var(--sage-light);
  transition: color .2s, border-color .2s;
}
.link-inline:hover { color: var(--terra); border-color: var(--terra); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: .72em 1.6em;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease-std),
              color .22s var(--ease-std),
              border-color .22s var(--ease-std),
              box-shadow .22s var(--ease-std),
              transform .18s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--sage);
  box-shadow: 0 6px 20px rgba(79,115,84,.38);
}

.btn-ghost {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-ghost:hover {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-terra {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196,127,94,.32);
}
.btn-terra:hover {
  background: var(--terra-dark);
  box-shadow: 0 6px 20px rgba(196,127,94,.42);
}

.btn-sm { font-size: .82rem; padding: .55em 1.2em; }
.btn-lg { font-size: 1rem; padding: .9em 2em; }

/* ─── Header / Nav ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand-dark);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.site-header__logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.site-header__wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.02em;
}
.site-header__wordmark span {
  color: var(--sage-dark);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 2rem);
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 1.5vw, 1.6rem);
}
.site-nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: .3em .1em;
  position: relative;
  transition: color .2s;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width .25s var(--ease-std);
}
.site-nav__link:hover { color: var(--ink); }
.site-nav__link:hover::after { width: 100%; }
.site-nav__link.is-active { color: var(--sage-dark); }
.site-nav__link.is-active::after { width: 100%; background: var(--sage-dark); }

.site-nav__cta { margin-left: .4rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.nav-toggle:hover { background: var(--sand); }
.nav-toggle__bar {
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-std), opacity .3s;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero-section {
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
  background: linear-gradient(145deg, var(--cream) 0%, var(--blush-light) 55%, var(--sand) 100%);
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,206,184,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,181,204,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(122,158,126,.12);
  border: 1px solid rgba(122,158,126,.28);
  padding: .35em .9em;
  border-radius: var(--radius-xl);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.hero-title {
  margin-bottom: 1.1rem;
}
.hero-title em {
  font-style: italic;
  color: var(--terra);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.2vw + .5rem, 1.15rem);
  color: var(--ink-mid);
  margin-bottom: 2rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  align-items: center;
}
.hero-trust {
  margin-top: 1.6rem;
  font-size: .8rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: .5em;
}
.hero-trust::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

.hero-visual {
  position: relative;
}
.hero-image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--white);
  aspect-ratio: 4/3;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .8rem 1.1rem;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 180px;
}
.hero-badge__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: .9rem;
}
.hero-badge__label {
  font-size: .73rem;
  color: var(--ink-muted);
  font-weight: 500;
  display: block;
}
.hero-badge__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  font-family: 'DM Serif Display', serif;
  display: block;
}

/* ─── Generic section spacing ─────────────────────────────────────────────── */
.section-base {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.section-alt { background: var(--sand); }
.section-sage { background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%); }
.section-sage * { color: var(--white); }
.section-blush { background: var(--blush-light); }
.section-dark { background: var(--ink); }

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .7rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-lead {
  font-size: clamp(1rem, 1.1vw + .4rem, 1.15rem);
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 2.5rem;
}
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}
.card {
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  transition: box-shadow .25s var(--ease-std), transform .25s var(--ease-out);
}
.card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.card__icon--sage  { background: rgba(122,158,126,.15); color: var(--sage-dark); }
.card__icon--blush { background: rgba(232,196,184,.25); color: var(--terra); }
.card__icon--lav   { background: rgba(189,181,204,.2);  color: #6a5f80; }
.card__icon--sand  { background: rgba(212,201,181,.25); color: var(--ink-mid); }

.card__title { margin-bottom: .6rem; }
.card__body { font-size: .92rem; color: var(--ink-soft); max-width: none; }

/* ─── Stats ──────────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.stat-item { }
.stat-item__number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw + 1rem, 3.8rem);
  color: var(--sage-dark);
  line-height: 1;
  margin-bottom: .3rem;
  display: block;
}
.stat-item__label {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: none;
}

/* Dividers between stats */
.stats-row .stat-item + .stat-item {
  border-left: 1px solid var(--sand-dark);
}

/* ─── CTA band ───────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(130deg, var(--sage-dark) 0%, #3d6644 60%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.cta-band__text h2 { color: var(--white); }
.cta-band__text p  { color: rgba(255,255,255,.78); max-width: 50ch; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--white);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--blush-light);
  border-color: var(--blush-light);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--sand-dark);
}
.faq-item:first-child { border-top: 1px solid var(--sand-dark); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--sage-dark); }
.faq-question__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--sage-dark);
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.faq-question:hover .faq-question__icon {
  background: var(--sage-light);
  border-color: var(--sage);
}
.faq-answer {
  font-size: .93rem;
  color: var(--ink-soft);
  padding-bottom: 1.2rem;
  max-width: none;
}

/* ─── Content section (generic) ──────────────────────────────────────────── */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.content-two-col--flip > *:first-child { order: 2; }
.content-two-col--flip > *:last-child  { order: 1; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand__tagline {
  font-size: .88rem;
  line-height: 1.6;
  margin-top: .9rem;
  max-width: 30ch;
  color: rgba(255,255,255,.55);
}
.footer-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-wordmark span { color: var(--sage-light); }

.footer-col__heading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.1rem;
  max-width: none;
}
.footer-col__list { display: flex; flex-direction: column; gap: .55rem; }
.footer-col__link {
  font-size: .88rem;
  color: rgba(255,255,255,.62);
  transition: color .2s;
}
.footer-col__link:hover { color: var(--sage-light); }

.footer-bottom {
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom__copy {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  max-width: none;
}
.footer-bottom__links {
  display: flex;
  gap: 1.4rem;
}
.footer-bottom__link {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom__link:hover { color: rgba(255,255,255,.75); }

/* ─── Misc helpers ───────────────────────────────────────────────────────── */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .28em .75em;
  border-radius: var(--radius-xl);
  background: rgba(122,158,126,.12);
  color: var(--sage-dark);
  border: 1px solid rgba(122,158,126,.22);
}
.divider {
  height: 1px;
  background: var(--sand-dark);
  border: none;
  margin-block: clamp(2rem, 4vw, 3rem);
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Form elements ──────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-label { font-size: .83rem; font-weight: 600; color: var(--ink-mid); }
.form-input, .form-select, .form-textarea {
  padding: .7em 1em;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  font-size: .93rem;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,.18);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .content-two-col { grid-template-columns: 1fr; }
  .content-two-col--flip > * { order: unset !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row .stat-item + .stat-item { border-left: none; }
  .stats-row { gap: 1.5rem; }
}

@media (max-width: 640px) {
  .site-nav__list, .site-nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.is-open .site-nav__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand-dark);
    padding: 1.2rem clamp(20px,5vw,64px);
    gap: .2rem;
    z-index: 99;
  }
  .site-nav.is-open .site-nav__cta {
    display: block;
    padding: 1rem clamp(20px,5vw,64px);
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--cream);
    border-top: 1px solid var(--sand-dark);
    z-index: 99;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
} img,svg,video{max-width:100%;height:auto} *{box-sizing:border-box} body{margin:0} html{-webkit-text-size-adjust:100%} 