:root {
  --ink: #17211f;
  --muted: #5f6b66;
  --paper: #f8faf9;
  --surface: #ffffff;
  --line: #dfe5df;
  --forest: #10231f;
  --teal: #1d7f78;
  --coral: #c85d43;
  --gold: #d7a84f;
  --shadow: 0 22px 60px rgba(20, 33, 31, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-140%);
  background: var(--forest);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  z-index: 10;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(223, 229, 223, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.nav-action {
  color: var(--forest);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.42rem 0.75rem;
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: min(76svh, 46rem);
  padding: clamp(2.3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 4rem) clamp(1.6rem, 4vw, 3rem);
}

.hero-copy {
  max-width: 45rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--coral);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(3.25rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.6rem;
  color: var(--forest);
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: #3e4b46;
  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: 2.9rem;
  border-radius: var(--radius);
  padding: 0.72rem 1rem;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  background: var(--forest);
  color: #fff;
}

.button-primary:hover {
  color: #fff;
  background: #1c3b36;
}

.button-secondary {
  background: #fff;
  color: var(--forest);
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -1.1rem;
  border: 1px solid rgba(16, 35, 31, 0.11);
  border-radius: var(--radius);
}

.hero-media img {
  position: relative;
  width: 100%;
  height: clamp(22rem, 43vw, 32rem);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.identity-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.identity-band div {
  min-width: 0;
  padding: 1.2rem clamp(1rem, 4vw, 4rem);
  background: #eef5f1;
}

.identity-band span,
.policy-date {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.identity-band strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--forest);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.3;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4rem);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.section-heading {
  max-width: 44rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

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

.service-grid article,
.checklist,
.policy-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.1rem;
}

.service-grid article {
  border-top: 4px solid var(--teal);
}

.service-grid article:nth-child(2) {
  border-top-color: var(--coral);
}

.service-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.service-grid article:nth-child(4) {
  border-top-color: #6c8f3f;
}

.service-grid p,
.developer p,
.policy-content p {
  margin: 0;
  color: var(--muted);
}

.developer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  background: #ecf4f1;
  border-block: 1px solid #d2e1da;
}

.developer p {
  max-width: 63rem;
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

.checklist {
  align-self: start;
}

.checklist ul {
  display: grid;
  gap: 0.75rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  color: #394540;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.47rem;
  width: 0.65rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0.22rem rgba(29, 127, 120, 0.14);
}

.privacy {
  background: var(--surface);
}

.policy-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 4vw, 4rem);
  color: #dfe8e3;
  background: var(--forest);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.site-footer span {
  margin: 0 0.5rem;
  color: #9fb2aa;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .developer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.25rem;
  }

  .hero-media {
    order: -1;
  }

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

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .identity-band {
    grid-template-columns: 1fr;
  }

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

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand {
    align-items: flex-start;
  }

  nav {
    width: 100%;
  }

  nav a {
    font-size: 0.9rem;
  }

  .nav-action {
    width: 100%;
    text-align: center;
  }
}
