:root {
  --green-900: #123f37;
  --green-800: #0f6b5f;
  --green-700: #14786a;
  --mint-100: #e7f4ed;
  --mint-50: #f5fbf7;
  --warm-100: #fff4e8;
  --clay-500: #c96f4c;
  --ink: #182522;
  --muted: #5f706b;
  --line: #d8e7de;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 63, 55, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--clay-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--green-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 251, 247, 0.95);
  border-bottom: 1px solid rgba(216, 231, 222, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.brand-mark-bg {
  fill: var(--green-900);
}

.brand-mark-leaf-main {
  fill: #8fc99d;
}

.brand-mark-leaf-small {
  fill: #f2b38e;
}

.brand-mark-stem {
  fill: none;
  stroke: var(--white);
  stroke-width: 3;
  stroke-linecap: round;
}

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

.brand-name {
  color: var(--green-900);
  font-weight: 800;
  line-height: 1.1;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  color: var(--green-900);
  text-decoration: none;
  font-weight: 700;
  padding: 0.65rem 0.85rem;
  border-radius: 0.25rem;
}

.nav-links a:hover {
  background: var(--mint-100);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  background: var(--white);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-900);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(245, 251, 247, 0.98) 0%, rgba(245, 251, 247, 0.88) 36%, rgba(245, 251, 247, 0.26) 70%, rgba(245, 251, 247, 0.1) 100%),
    linear-gradient(0deg, rgba(18, 63, 55, 0.1), rgba(18, 63, 55, 0.1));
}

.hero-content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 6rem 0 7rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--clay-500);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.4rem 0 0;
  color: #263c37;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green-800);
}

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

.button.secondary {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--green-800);
}

.button.secondary:hover {
  background: var(--white);
}

.intro-band {
  background: var(--green-900);
  color: var(--white);
}

.intro-grid {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.intro-band h2,
.intro-band p {
  color: var(--white);
}

.intro-band .section-kicker {
  color: #f2b38e;
}

.intro-grid > p {
  margin: 0;
  color: #dbece5;
  font-size: 1.12rem;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

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

.support-focus {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
  padding: 1.35rem;
  background: var(--green-900);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.support-focus .section-kicker {
  color: #f2b38e;
}

.support-focus h3 {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.support-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.support-focus-item {
  min-height: 150px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
}

.support-focus-item h4 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.support-focus-item p {
  margin: 0.55rem 0 0;
  color: #dbece5;
  font-size: 0.95rem;
  line-height: 1.45;
}

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

.service-card {
  min-height: 230px;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 8px 24px rgba(18, 63, 55, 0.06);
}

.service-card p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--warm-100);
  font-weight: 800;
}

.feature-band {
  background: var(--warm-100);
  border-block: 1px solid #f3dfc8;
}

.feature-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.feature-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1.1rem 0 0;
}

.steps {
  display: grid;
  gap: 0.9rem;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid #efd7bb;
  border-radius: 0.5rem;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay-500);
  font-weight: 800;
}

.step p {
  margin: 0;
  color: #3e524d;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-list p {
  position: relative;
  margin: 0;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.3rem;
  width: 0.8rem;
  height: 0.45rem;
  border-left: 3px solid var(--green-800);
  border-bottom: 3px solid var(--green-800);
  transform: rotate(-45deg);
}

.contact-band {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 3rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 2.2rem;
  color: var(--white);
  background: var(--green-900);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band .section-kicker {
  color: #f2b38e;
}

.contact-copy p {
  color: #dbece5;
  font-size: 1.08rem;
}

address {
  margin-top: 1.5rem;
  color: #dbece5;
  font-style: normal;
}

address a {
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 0.5rem;
}

.honey-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--green-900);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: var(--mint-50);
  border: 1px solid var(--line);
  border-radius: 0.25rem;
  padding: 0.75rem;
}

textarea {
  resize: vertical;
}

.form-button {
  border: 0;
}

.form-note {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-band .form-status {
  margin: 0;
  padding: 0.75rem;
  color: #7a2317;
  background: #fff1ed;
  border: 1px solid #f2c4b8;
  border-radius: 0.25rem;
  font-weight: 700;
}

.faq {
  padding-top: 1rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 1rem 1.2rem;
}

summary {
  color: var(--green-900);
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer strong {
  color: var(--green-900);
}

.site-footer p {
  margin: 0.2rem 0 0;
}

.site-footer a {
  color: var(--green-900);
  font-weight: 800;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--mint-50);
}

.status-panel {
  width: min(100%, 680px);
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.status-brand {
  margin-bottom: 2.5rem;
}

.status-panel h1 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
}

.status-panel p:not(.section-kicker) {
  color: var(--muted);
  margin: 1rem 0 1.6rem;
}

@media (max-width: 860px) {
  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem;
  }

  .hero {
    min-height: 680px;
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(245, 251, 247, 0.98) 0%, rgba(245, 251, 247, 0.9) 42%, rgba(245, 251, 247, 0.38) 78%, rgba(245, 251, 247, 0.12) 100%),
      linear-gradient(0deg, rgba(18, 63, 55, 0.1), rgba(18, 63, 55, 0.1));
  }

  .hero-media img {
    height: 58%;
    object-position: 64% top;
  }

  .hero-content {
    padding: 22rem 0 3rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .intro-grid,
  .support-focus,
  .feature-inner,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

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

  .contact-band {
    padding: 2rem;
  }
}

@media (max-width: 580px) {
  .brand-tagline {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 19rem;
  }

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

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

  .section,
  .feature-inner {
    padding: 3.5rem 0;
  }

  .contact-band {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1.25rem;
    border-radius: 0;
  }

  .contact-form {
    padding: 1rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
