:root {
  --ink: #17212b;
  --muted: #52616f;
  --line: #d7e2e4;
  --paper: #ffffff;
  --wash: #f5f8f7;
  --teal: #0b4f54;
  --teal-dark: #08383c;
  --blue: #1f5f8b;
  --amber: #c98718;
  --clay: #8a4f33;
  --mint: #dff1ed;
  --shadow: 0 18px 50px rgba(18, 36, 45, 0.14);
  color-scheme: light;
  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: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 4vw;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 228, 0.72);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 40, 50, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 10rem;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  color: #263846;
  font-weight: 700;
  font-size: 0.9rem;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 0.95rem;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--teal-dark);
  color: white;
}

.hero {
  position: relative;
  min-height: 620px;
  height: 76vh;
  max-height: 760px;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 30, 0.86) 0%, rgba(6, 26, 30, 0.68) 42%, rgba(6, 26, 30, 0.12) 74%),
    linear-gradient(0deg, rgba(6, 26, 30, 0.32), rgba(6, 26, 30, 0.04));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100%;
  width: min(1160px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-copy {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #bee9e5;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
  color: inherit;
}

h1 {
  max-width: 12ch;
  font-size: 3.7rem;
  font-weight: 850;
}

h2 {
  font-size: 2rem;
  font-weight: 820;
}

h3 {
  font-size: 1.15rem;
  font-weight: 820;
}

.hero-copy p.lead {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.05rem;
  border-radius: 6px;
  font-weight: 850;
}

.button.primary {
  background: var(--amber);
  color: #17120a;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: white;
}

.button.outline {
  border: 1px solid var(--teal);
  color: var(--teal);
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 44rem;
  margin-top: 2rem;
}

.hero-proof span {
  border-left: 3px solid var(--amber);
  padding-left: 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  font-weight: 700;
}

.band {
  padding: 4.5rem 4vw;
}

.band.compact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.wash {
  background: var(--wash);
}

.teal-band {
  background: var(--teal-dark);
  color: white;
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(850px, 100%);
}

.section-head {
  width: min(780px, 100%);
  margin-bottom: 2rem;
}

.section-head p,
.content-block p,
.card p,
.split-copy p {
  color: var(--muted);
}

.teal-band .section-head p,
.teal-band .card p,
.teal-band .split-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.large-copy {
  color: var(--muted);
  font-size: 1.12rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 2rem;
  align-items: start;
}

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

.card,
.quote-panel,
.source-list,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 6px 22px rgba(23, 33, 43, 0.05);
}

.card {
  padding: 1.25rem;
}

.card .tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.card a {
  color: var(--teal-dark);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef7f5;
  color: var(--teal-dark);
}

tr:last-child td {
  border-bottom: 0;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.25rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 900;
}

.quote-panel {
  padding: 1.25rem;
}

.quote-panel h2 {
  font-size: 1.45rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.85rem;
  color: #243847;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d8dc;
  border-radius: 6px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  font: inherit;
  background: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 79, 84, 0.18);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 0.9rem;
  color: var(--muted);
}

.consent-row input {
  width: 1rem;
  margin-top: 0.28rem;
}

.submit-button {
  width: 100%;
  min-height: 3rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.submit-button:hover {
  background: var(--teal-dark);
}

.hp-field {
  position: absolute;
  left: -999rem;
}

.form-note,
.form-status {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 1rem;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.source-list {
  padding: 1rem 1.25rem;
}

.source-list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.source-list li + li {
  margin-top: 0.5rem;
}

.notice {
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--amber);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2rem 4vw;
  background: #15202b;
  color: white;
}

.site-footer p,
.site-footer small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav,
.site-footer address {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
  font-style: normal;
}

.legal main {
  background: var(--wash);
}

.legal .content-block {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.content-block h1 {
  max-width: 18ch;
  color: var(--ink);
  font-size: 2.5rem;
}

.content-block h2 {
  margin-top: 2rem;
}

.content-block a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

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

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

  .hero {
    min-height: 610px;
    height: auto;
  }

  .hero-inner {
    padding: 4.5rem 0 3.5rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .split,
  .card-grid,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }

  .nav a {
    padding: 0.5rem 0.45rem;
    font-size: 0.85rem;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(6, 26, 30, 0.9), rgba(6, 26, 30, 0.52));
  }

  .hero-copy p.lead {
    font-size: 1rem;
  }

  h1 {
    max-width: 13ch;
    font-size: 2.05rem;
  }

  .band {
    padding: 3rem 1rem;
  }

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