:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-muted: #ece8df;
  --ink: #141414;
  --muted: #60605a;
  --line: #ded9ce;
  --accent: #315d50;
  --accent-strong: #1f4037;
  --accent-soft: #d7e4de;
  --shadow: 0 24px 80px rgba(32, 35, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(49, 93, 80, 0.18), transparent 34rem),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 45%, #efebe4 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
  padding: 5px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.site-nav a:hover,
.site-footer a:hover,
.legal-content a:hover {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 640px;
  padding: 84px 0 96px;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-copy,
.section-copy,
.contact-section p,
.legal-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--accent-strong);
  color: #ffffff;
}

.button.primary:hover {
  background: #17332c;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(31, 64, 55, 0.34);
  background: var(--accent-soft);
}

.hero-panel {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(31, 64, 55, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-panel div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.hero-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel strong,
.hero-panel a {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.panel-label {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

.section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 56px;
  border-top: 1px solid var(--line);
  padding: 72px 0;
}

.section-heading {
  max-width: 500px;
}

.section-copy {
  max-width: 760px;
}

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

.card {
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 24px;
}

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

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(31, 64, 55, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 64, 55, 0.08), rgba(255, 255, 255, 0.75)),
    var(--surface);
  margin: 64px 0 88px;
  padding: 36px;
}

.contact-section h2 {
  margin-bottom: 10px;
}

.contact-section p {
  max-width: 650px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.legal-page {
  padding: 70px 0 96px;
}

.legal-content {
  max-width: 820px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 60px rgba(32, 35, 31, 0.08);
  padding: clamp(28px, 6vw, 56px);
}

.legal-content h1 {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-content h2 {
  margin: 34px 0 8px;
  font-size: 1.24rem;
  line-height: 1.25;
}

.legal-content p {
  margin-bottom: 18px;
}

.legal-content a {
  color: var(--accent-strong);
  font-weight: 700;
}

.updated {
  margin-bottom: 32px;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 72px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1120px);
  }

  .site-nav {
    gap: 12px 16px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 26px;
  }

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