:root {
  --ink: #1d1717;
  --muted: #635c58;
  --paper: #fff7f7;
  --surface: #ffffff;
  --line: #e7ddd9;
  --sage: #cfd7b1;
  --apricot: #f8bd8d;
  --blue: #bec9ee;
  --moss: #59694b;
  --rust: #8d4f37;
  --charcoal: #252323;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #6f7fdb;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 32px;
  background: rgba(255, 247, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand,
.footer-brand {
  text-decoration: none;
  font-size: 20px;
}

nav {
  display: flex;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

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

nav a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  place-items: center;
  padding: 72px 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(183, 209, 151, 0.95), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(251, 181, 126, 0.78), transparent 34%),
    radial-gradient(circle at 74% 80%, rgba(174, 188, 237, 0.92), transparent 42%),
    linear-gradient(135deg, var(--sage), #f2edc2 38%, var(--apricot) 62%, var(--blue));
}

.hero-content {
  width: min(1040px, 100%);
  text-align: center;
}

.hero-kicker,
.hero-copy,
.signal-band,
.process-list,
.cta-section {
  font-family: Arial, sans-serif;
}

.hero-kicker {
  margin-bottom: 22px;
  color: var(--moss);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 26px;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.95;
  font-weight: 400;
}

.hero-copy {
  width: min(680px, 100%);
  margin: 0 auto 34px;
  color: #362f2f;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.45;
}

.page-title {
  margin-bottom: 28px;
  font-size: clamp(48px, 7vw, 84px);
}

.policy-copy {
  max-width: 760px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.policy-copy h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 54px;
  padding: 16px 28px;
  color: #fff;
  background: var(--charcoal);
  text-decoration: none;
  font-size: 17px;
}

.button:hover {
  background: #000;
}

.button-light {
  color: var(--charcoal);
  background: #fff;
}

.button-light:hover {
  color: #fff;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: #fff;
}

.signal-band span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--rust);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-band span:last-child {
  border-right: 0;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  font-weight: 400;
}

.split p:last-child,
.service p,
.site-footer {
  font-family: Arial, sans-serif;
  line-height: 1.65;
}

.split p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.service {
  min-height: 360px;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(42, 34, 31, 0.05);
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 48px;
  color: var(--charcoal);
  background: #eff2e1;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

h3 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 400;
}

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

.process {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list strong {
  font-size: 20px;
}

.process-list span {
  color: var(--muted);
  line-height: 1.6;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 70px 32px;
  color: #fff;
  background: var(--charcoal);
}

.cta-section h2 {
  margin-bottom: 0;
  max-width: 780px;
}

.cta-section .eyebrow {
  color: #d6d1cd;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 42px 32px;
  background: var(--charcoal);
  color: #fff;
}

.site-footer p {
  margin-bottom: 8px;
}

address {
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 20px;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 76svh;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  .signal-band,
  .split,
  .process,
  .service-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .signal-band span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-band span:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 64px 0;
  }

  .service {
    min-height: auto;
  }

  .cta-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 56px 20px;
  }
}
