:root {
  --bg: #f6f7f2;
  --surface: #ffffff;
  --surface-soft: #eef5f1;
  --ink: #18211f;
  --muted: #5b6763;
  --line: #dce4de;
  --green: #1f6f5b;
  --green-dark: #174d43;
  --blue: #4867c9;
  --clay: #b65b3b;
  --clay-soft: #f7d9c9;
  --shadow: 0 18px 60px rgba(24, 33, 31, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--green-dark);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--surface);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(31, 111, 91, 0.22);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--surface-soft);
  outline: none;
}

.nav-cta {
  color: var(--surface) !important;
  background: var(--green) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--green-dark) !important;
}

main {
  flex: 1;
}

.hero {
  padding: 70px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--clay);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 16ch;
  font-size: clamp(3rem, 6.4vw, 5.5rem);
  line-height: 1.12;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--green-dark);
  background: transparent;
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--green);
  background: var(--surface);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.service-note {
  margin-top: 26px;
  padding: 18px 20px;
  color: var(--green-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 6px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(24, 33, 31, 0.06);
}

.service-note strong {
  display: block;
  margin-bottom: 4px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.quick-facts div {
  min-height: 112px;
  padding: 18px;
  background: var(--surface);
}

.quick-facts strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.quick-facts span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  min-height: 236px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-alt .info-card {
  background: var(--bg);
}

.info-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: var(--surface-soft);
  border-radius: 50%;
}

.icon-badge svg {
  width: 23px;
  height: 23px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.text-stack > * + * {
  margin-top: 18px;
}

.text-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--surface);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
}

.callout {
  padding: 34px;
  color: var(--surface);
  background: var(--green-dark);
  border-radius: 12px;
}

.callout h2 {
  max-width: 820px;
}

.callout p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 70px 0 52px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.68fr);
  gap: 54px;
  align-items: start;
}

.page-summary {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 6px solid var(--clay);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-summary p {
  margin: 0;
  color: var(--muted);
}

.page-summary p + p {
  margin-top: 16px;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-item {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-alt .faq-item {
  background: var(--bg);
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.profile-panel {
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.profile-kicker {
  margin: 0 0 8px;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-panel p {
  color: var(--muted);
}

.credential-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  padding: 12px 14px;
  background: var(--surface-soft);
  border-radius: 8px;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-panel,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-panel {
  padding: 28px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-method {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 18px;
  background: var(--surface-soft);
  border-radius: 8px;
}

.contact-method span {
  color: var(--muted);
  font-weight: 800;
}

.contact-method a,
.contact-method p {
  color: var(--green-dark);
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0;
  overflow-wrap: anywhere;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 16px;
  height: 8px;
  border-bottom: 3px solid var(--green);
  border-left: 3px solid var(--green);
  transform: rotate(-45deg);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #cfd9d3;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(31, 111, 91, 0.16);
}

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

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  margin-top: auto;
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
}

.footer-inner strong {
  display: block;
  color: var(--surface);
}

.footer-inner p {
  max-width: 680px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--surface);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero-grid,
  .page-hero-grid,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  h1,
  .page-hero h1 {
    max-width: 13ch;
  }

  .card-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .nav-wrap,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero,
  .page-hero {
    padding-top: 46px;
  }

  .section {
    padding: 52px 0;
  }

  .section-header {
    display: grid;
    gap: 14px;
  }

  .card-grid,
  .faq-grid,
  .values-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .callout,
  .profile-panel,
  .contact-panel,
  .contact-form {
    padding: 22px;
  }
}

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