:root {
  --evergreen: #124734;
  --evergreen-dark: #0b2f22;
  --river: #227a8b;
  --amber: #f0b24a;
  --cream: #f6f1e6;
  --mist: #d9e8e7;
  --ink: #1b2421;
  --max-width: 72rem;
  --radius-lg: 1.75rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --shadow-soft: 0 20px 45px rgba(11, 47, 34, 0.12);
  --shadow-line: 0 0 0 1px rgba(18, 71, 52, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 178, 74, 0.15), transparent 28%),
    linear-gradient(180deg, #fcfaf4 0%, var(--cream) 48%, #fdfcf7 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--evergreen-dark);
  color: #fff;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 230, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 71, 52, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, var(--evergreen), var(--river));
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-tag {
  color: rgba(27, 36, 33, 0.76);
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--evergreen);
  color: #fff;
  font: inherit;
}

.site-nav ul,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a,
.footer-nav a {
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  color: rgba(27, 36, 33, 0.82);
}

.site-nav a[aria-current="page"] {
  background: rgba(34, 122, 139, 0.12);
  color: var(--evergreen-dark);
  font-weight: 700;
}

.hero,
.page-hero,
.section {
  padding: 4.5rem 0;
}

.hero {
  padding-top: 5rem;
}

.hero-grid,
.page-hero-inner,
.trust-panel,
.cta-band-inner,
.contact-grid,
.story-grid,
.cta-panel {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  align-items: center;
}

.eyebrow,
.approach-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--river);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 0.12rem;
  background: currentColor;
}

h1,
h2 {
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--evergreen-dark);
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  max-width: 10ch;
}

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

h3 {
  font-size: 1.3rem;
  color: var(--evergreen-dark);
}

.hero-lead,
.page-hero-copy,
.trust-copy p,
.cta-band p,
.cta-panel p,
.contact-card p,
.story-card p,
.service-detail p,
.service-teaser p,
.value-card p {
  font-size: 1.05rem;
  color: rgba(27, 36, 33, 0.84);
}

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

.button,
.text-link {
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

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

.button-primary {
  background: var(--evergreen);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

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

.button-secondary {
  border-color: rgba(18, 71, 52, 0.16);
  background: rgba(255, 255, 255, 0.48);
  color: var(--evergreen-dark);
}

.hero-art,
.trust-panel,
.value-card,
.service-teaser,
.service-detail,
.story-card,
.contact-card,
.form-card,
.cta-panel,
.cta-band,
.page-hero-inner {
  position: relative;
}

.hero-art::after,
.page-hero-inner::after {
  content: "";
  position: absolute;
  inset: auto auto -1rem -1rem;
  width: 8rem;
  height: 8rem;
  background: rgba(240, 178, 74, 0.18);
  filter: blur(20px);
  border-radius: 50%;
  z-index: -1;
}

.season-orbit {
  filter: drop-shadow(0 18px 35px rgba(11, 47, 34, 0.12));
}

.svg-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.svg-center-label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  fill: #fff;
}

.section-alt {
  background: linear-gradient(180deg, rgba(34, 122, 139, 0.08), rgba(34, 122, 139, 0.03));
}

.section-heading {
  margin-bottom: 2rem;
}

.value-grid,
.service-teaser-grid,
.service-detail-grid,
.approach-grid {
  display: grid;
  gap: 1.25rem;
}

.value-card,
.service-teaser,
.service-detail,
.story-card,
.contact-card,
.form-card,
.cta-panel,
.trust-panel {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-line);
}

.value-card,
.service-teaser,
.service-detail {
  overflow: hidden;
}

.value-card::before,
.service-teaser::before,
.service-detail::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--amber), var(--river));
}

.text-link {
  color: var(--evergreen);
  font-weight: 700;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.section-cta {
  margin-top: 1.5rem;
}

.trust-panel,
.cta-panel,
.cta-band {
  box-shadow: var(--shadow-soft);
}

.trust-panel,
.cta-panel {
  align-items: start;
}

.cta-band {
  background: linear-gradient(135deg, var(--evergreen-dark), var(--evergreen));
  color: #fff;
  border-radius: calc(var(--radius-lg) + 0.25rem);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band .eyebrow::before {
  background: rgba(255, 255, 255, 0.8);
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(18, 71, 52, 0.1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  font-weight: 800;
  color: var(--evergreen-dark);
}

.page-hero-inner {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(217, 232, 231, 0.72));
  border-radius: calc(var(--radius-lg) + 0.25rem);
  box-shadow: var(--shadow-soft);
}

.service-number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(34, 122, 139, 0.12);
  color: var(--evergreen-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-card-accent {
  background: linear-gradient(180deg, rgba(18, 71, 52, 0.94), rgba(34, 122, 139, 0.94));
}

.story-card-accent h2,
.story-card-accent p {
  color: #fff;
}

.contact-grid {
  align-items: start;
}

.contact-email a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--evergreen);
}

form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

label {
  font-weight: 700;
  color: var(--evergreen-dark);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 71, 52, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
}

input:focus,
textarea:focus,
.nav-toggle:focus-visible,
.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(34, 122, 139, 0.35);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

@media (max-width: 47.99rem) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .header-inner {
    flex-wrap: wrap;
  }

  .js .site-nav {
    display: none;
    width: 100%;
    padding-top: 0.5rem;
  }

  .js .site-nav.is-open {
    display: block;
  }

  .js .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .js .site-nav a {
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (min-width: 48rem) {
  .hero-grid,
  .page-hero-inner,
  .trust-panel,
  .cta-band-inner,
  .contact-grid,
  .story-grid,
  .cta-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .service-teaser-grid,
  .approach-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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