:root {
  color-scheme: light;
  --page: #f7f8f5;
  --paper: #ffffff;
  --ink: #171a18;
  --muted: #626960;
  --quiet: #e8ece5;
  --quiet-strong: #d6ddd3;
  --green: #034f45;
  --green-deep: #023d36;
  --blue-field: #eaf3f8;
  --blue-line: #b7d4e4;
  --violet-soft: #f0eefb;
  --amber: #c46b32;
  --shadow: 0 24px 70px rgba(23, 26, 24, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family:
    Figtree, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

h1,
h2,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  font-size: 5.2rem;
}

h2 {
  max-width: 680px;
  font-size: 3.2rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 221, 211, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 760;
  padding: 8px 12px 8px 8px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(23, 26, 24, 0.06);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 820;
}

.home-link {
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
}

.home-link:hover {
  text-decoration: underline;
}

.hero-section {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 520px;
  padding: 132px 24px 90px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(234, 243, 248, 0.96), rgba(247, 248, 245, 0.78) 72%, var(--page)),
    var(--blue-field);
  text-align: center;
}

.hero-section::after {
  position: absolute;
  right: max(24px, calc((100vw - 1120px) / 2));
  bottom: 22px;
  width: min(38vw, 380px);
  height: 112px;
  border: 1px solid var(--blue-line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.4)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(183, 212, 228, 0.44) 24px 25px);
  box-shadow: 0 18px 48px rgba(23, 26, 24, 0.08);
  content: "";
  opacity: 0.48;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-section .eyebrow {
  margin-bottom: 18px;
}

.lede {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 24px;
  color: #30372f;
  font-size: 1.22rem;
  line-height: 1.62;
}

.faq-section {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 74px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-row {
  overflow: hidden;
  border: 1px solid var(--quiet-strong);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(23, 26, 24, 0.055);
}

.faq-row summary {
  position: relative;
  display: block;
  min-height: 72px;
  padding: 24px 64px 24px 24px;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 780;
  list-style: none;
}

.faq-row summary::-webkit-details-marker {
  display: none;
}

.faq-row summary::after {
  position: absolute;
  top: 28px;
  right: 26px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-row[open] summary::after {
  transform: translateY(4px) rotate(225deg);
}

.faq-row summary:focus-visible {
  outline: 3px solid rgba(3, 79, 69, 0.22);
  outline-offset: -3px;
}

.faq-answer {
  border-top: 1px solid var(--quiet);
  padding: 0 24px 24px;
}

.faq-answer p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.faq-answer a {
  color: var(--green);
  font-weight: 760;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--quiet);
  color: var(--muted);
  font-size: 0.92rem;
  padding: 24px 0 34px;
}

.footer-brand {
  color: var(--ink);
  font-weight: 820;
}

.site-footer a {
  color: var(--green);
  font-weight: 760;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.34rem;
  }

  .site-header {
    width: calc(100% - 32px);
    padding-top: 16px;
  }

  .home-link {
    display: none;
  }

  .hero-section {
    min-height: 440px;
    padding: 106px 16px 70px;
  }

  .hero-section::after {
    display: none;
  }

  .lede {
    font-size: 1.06rem;
  }

  .faq-section {
    width: calc(100% - 32px);
    padding-top: 58px;
  }

  .faq-row summary {
    padding: 20px 54px 20px 20px;
  }

  .faq-row summary::after {
    right: 22px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 32px);
    gap: 10px;
    text-align: center;
  }
}
