:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5f6b67;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #d9ded7;
  --forest: #174c3c;
  --teal: #0f766e;
  --copper: #b8643a;
  --gold: #e2b85b;
  --shadow: 0 26px 80px rgba(23, 33, 29, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #eee8df;
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration-color: rgba(15, 118, 110, 0.4);
  text-underline-offset: 0.2em;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--forest);
  color: #fffdf5;
  box-shadow: inset 0 -8px 0 rgba(226, 184, 91, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--forest);
}

.nav a[aria-current="page"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  content: "";
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 46px;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  padding: 38px 28px 70px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 3.9vw, 3.4rem);
}

h2 {
  font-size: clamp(2rem, 2.7rem, 2.7rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

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

.button.secondary {
  border-color: rgba(217, 222, 215, 0.92);
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest);
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.08);
}

.button:hover {
  transform: translateY(-1px);
}

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

.hero-media::before {
  position: absolute;
  inset: 11% -4% -8% 9%;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(83, 72, 58, 0.13), rgba(226, 184, 91, 0.14));
  filter: blur(28px);
  content: "";
  pointer-events: none;
  z-index: -1;
}

.hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 46%;
  height: 28%;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  content: "";
  pointer-events: none;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 28px;
}

.section-heading {
  max-width: 650px;
  margin-bottom: 28px;
}

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

.feature {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 20px 50px rgba(23, 33, 29, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.feature p,
.copy-block p,
.contact-band p,
.policy-header p,
.policy-content p {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 56px;
  border-top: 1px solid var(--line);
}

.copy-block p:first-child {
  margin-top: 0;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1180px;
  margin: 24px auto 96px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 22px 58px rgba(23, 33, 29, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.contact-band div {
  max-width: 650px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 28px 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.policy-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 28px 96px;
}

.policy-header {
  margin-bottom: 42px;
}

.policy-header h1 {
  font-size: clamp(2.8rem, 4rem, 4rem);
}

.policy-header p {
  max-width: 680px;
  font-size: 1.08rem;
}

.policy-content {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.not-found {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 100vh;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
}

.not-found h1 {
  margin-top: 44px;
  font-size: clamp(2.8rem, 4rem, 4rem);
}

.not-found p {
  color: var(--muted);
  font-size: 1.1rem;
}

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

  .nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }

  h1 {
    font-size: clamp(2.8rem, 4rem, 4rem);
  }

  .hero-media {
    order: -1;
  }

  .feature-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .contact-band,
  .site-footer,
  .policy-page,
  .not-found {
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-media::after {
    display: none;
  }
}
