:root {
  --green-900: #213d33;
  --green-800: #2d5547;
  --green-700: #3f735f;
  --green-100: #e3efe7;
  --cream: #fbf7ee;
  --cream-strong: #f2eadc;
  --warm: #c89168;
  --warm-soft: #f0d7bf;
  --text: #24312c;
  --muted: #62706a;
  --white: #ffffff;
  --line: #ded7cb;
  --shadow: 0 18px 40px rgba(33, 61, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at top left, rgba(227, 239, 231, 0.9), transparent 34rem),
    linear-gradient(180deg, #fffaf1 0%, var(--cream) 42%, #f7f2e8 100%);
}

a {
  color: var(--green-800);
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.65rem 0.85rem;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 1.25rem, 1120px);
  margin-inline: auto;
}

.narrow {
  width: min(100% - 1.25rem, 760px);
}

.section {
  padding: 3rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(222, 215, 203, 0.85);
  background: rgba(251, 247, 238, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  min-height: 4.75rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--green-900);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border: 1px solid rgba(63, 115, 95, 0.28);
  border-radius: 50%;
  color: var(--cream);
  background: var(--green-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-name,
.brand-line {
  display: block;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
}

.brand-line {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.25rem 0.7rem;
  font-size: 0.9rem;
}

.site-nav a {
  padding: 0.2rem 0;
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green-700);
}

.hero {
  padding-top: 2.4rem;
  padding-bottom: 3rem;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-900);
  line-height: 1.15;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.45rem, 13vw, 3.4rem);
}

h2 {
  font-size: clamp(1.85rem, 5vw, 3.1rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-text {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--green-800);
  border-radius: 6px;
  color: var(--white);
  background: var(--green-800);
  box-shadow: 0 12px 24px rgba(33, 61, 51, 0.16);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.hero-actions,
.button {
  width: 100%;
}

.button:hover {
  background: var(--green-900);
}

.text-link {
  width: 100%;
  font-weight: 800;
  text-align: center;
}

.hero-panel {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(222, 215, 203, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(242, 234, 220, 0.92)),
    repeating-linear-gradient(135deg, rgba(63, 115, 95, 0.1) 0 1px, transparent 1px 16px);
  box-shadow: var(--shadow);
}

.support-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 8px;
  background: var(--white);
}

.support-icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--green-100);
}

.support-card p,
.service-card p,
.feature-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.quick-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.quick-list li {
  padding: 0.75rem 0.85rem;
  border-left: 4px solid var(--warm);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.intro-section {
  padding-top: 2rem;
}

.intro-section h2,
.intro-section p {
  text-align: center;
}

.intro-section p {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-section,
.why-section,
.privacy-content {
  background: rgba(255, 255, 255, 0.46);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 1.6rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  min-height: auto;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.service-card h3 {
  margin-top: 1rem;
}

.split-grid,
.contact-grid,
.areas-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.prose p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.prose h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-item {
  padding: 1.15rem;
  border-top: 4px solid var(--warm);
  border-radius: 8px;
  background: var(--cream);
}

.areas-box {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--green-100);
}

.areas-box p {
  margin: 0;
  color: var(--green-900);
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-grid p {
  max-width: 42rem;
  color: var(--muted);
}

.contact-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.email-link {
  display: inline-block;
  margin: 0.3rem 0 1rem;
  font-size: clamp(1.05rem, 5vw, 1.45rem);
  font-weight: 800;
}

.full-width {
  width: 100%;
}

.emergency-note {
  margin: 1rem 0 0;
  padding: 0.8rem;
  border-radius: 6px;
  background: var(--cream-strong);
  color: var(--green-900);
  font-weight: 700;
}

.privacy-hero {
  padding-bottom: 2.5rem;
}

.privacy-hero h1 {
  max-width: 11ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--green-900);
  color: var(--cream);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 5rem;
  padding: 1rem 0;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--cream);
  font-weight: 800;
}

@media (min-width: 621px) {
  .container,
  .narrow {
    width: min(100% - 2rem, 1120px);
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .brand-mark {
    width: 2.75rem;
    height: 2.75rem;
  }

  .site-nav {
    gap: 0.35rem 0.85rem;
    font-size: 0.94rem;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 8vw, 5.2rem);
  }

  .hero-text {
    font-size: 1.16rem;
  }

  .hero-actions,
  .button {
    width: auto;
  }

  .text-link {
    width: auto;
    text-align: left;
  }

  .support-card {
    grid-template-columns: auto 1fr;
  }

  .card-grid,
  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 14.25rem;
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 861px) {
  .header-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .card-grid,
  .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-grid,
  .contact-grid,
  .areas-box {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }
}
