:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6965;
  --line: #d9e2de;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --accent: #1f6f5b;
  --accent-dark: #174f43;
  --soft: #eef5f2;
  --warning: #7b4e1f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 252, 251, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  color: #ffffff;
  background: var(--accent-dark);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(23, 33, 31, 0.9), rgba(23, 33, 31, 0.56)),
    linear-gradient(135deg, #2f6959, #6c7e72 56%, #c8d8d2);
  color: #ffffff;
}

.hero-inner {
  max-width: 820px;
}

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

.hero .eyebrow {
  color: #bde6d7;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: #eef7f4;
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  color: #ffffff;
}

.section {
  padding: clamp(52px, 7vw, 88px) clamp(20px, 5vw, 64px);
}

.section > p,
.section-header,
.split,
.tier-grid,
.intake-panel {
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
}

.muted {
  background: var(--soft);
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 28px;
}

.notice,
.tier,
.intake-panel,
.disclaimer {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
}

.notice {
  padding: 24px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

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

.tier {
  padding: 24px;
}

.tier.featured {
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(31, 111, 91, 0.12);
}

.tier-summary {
  color: var(--muted);
}

.intake-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
  padding: 24px;
}

.contact-box {
  padding: 20px;
  border-radius: 4px;
  background: var(--soft);
}

.placeholder {
  margin-bottom: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.disclaimer {
  max-width: 1160px;
  margin: clamp(52px, 7vw, 88px) auto;
  padding: 28px;
  border-color: #d7b98c;
  color: var(--warning);
}

.disclaimer h2 {
  font-size: 1.4rem;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 780px) {
  .site-header,
  .nav {
    align-items: flex-start;
  }

  .site-header {
    flex-direction: column;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .split,
  .tier-grid,
  .intake-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}
