:root {
  --ink: #17201d;
  --muted: #58655f;
  --bg: #fbfaf6;
  --panel: #ffffff;
  --line: #d9ddd5;
  --sage: #7c9587;
  --sage-dark: #3f6151;
  --coral: #c65f4a;
  --blue: #536f9f;
  --gold: #c99a3b;
  --focus: #254f9f;
  --shadow: 0 18px 60px rgba(28, 38, 33, 0.11);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: var(--sage-dark);
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 32, 29, 0.08);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.9rem 1.2rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: 12rem;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: 0;
}

.brand span {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.94rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  font: inherit;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.75rem 1rem;
  background: var(--sage-dark);
  color: #fff;
  font: 700 0.96rem/1.1 inherit;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #2f4b3e;
  color: #fff;
}

.button.secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.button.urgent {
  background: var(--coral);
}

.button.urgent:hover {
  background: #a94736;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.92fr);
  gap: 3rem;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.2rem 3rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--sage-dark);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 12ch;
  margin: 0 0 1rem;
  font-size: clamp(3rem, 10vw, 5.8rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.1rem);
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.24rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
}

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

.hero-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef2ed;
}

.trust-strip .inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: var(--line);
}

.trust-strip div {
  min-height: 5.75rem;
  padding: 1rem;
  background: #eef2ed;
  font-weight: 750;
}

.trust-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 4.5rem 1.2rem;
}

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

.band {
  background: #f0f4f6;
}

.band.warm {
  background: #f8eee8;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--panel);
}

.card.accent {
  border-top: 5px solid var(--sage);
}

.card.warning {
  border-top: 5px solid var(--coral);
}

.model {
  counter-reset: model;
}

.model .card {
  position: relative;
  min-height: 11rem;
}

.model .card::before {
  counter-increment: model;
  content: counter(model);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--gold);
  color: #241c0e;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.2rem;
  align-items: start;
}

.checklist {
  padding-left: 1.1rem;
}

.checklist li {
  margin: 0.45rem 0;
}

.not-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.not-list li {
  border-left: 4px solid var(--coral);
  padding: 0.65rem 0.8rem;
  background: #fff8f5;
}

.page-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.2rem 2rem;
  text-align: left;
}

.page-hero h1 {
  max-width: 14ch;
}

.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.2rem 4rem;
}

.content h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.content h3 {
  margin-top: 1.5rem;
}

.form-shell {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 3vw, 2rem);
  background: var(--panel);
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

label span,
legend span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

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

textarea {
  min-height: 7rem;
  resize: vertical;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 1rem;
}

legend {
  padding: 0 0.35rem;
  font-weight: 800;
}

.checkbox {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  font-weight: 600;
}

.checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  display: none;
  border-radius: 8px;
  padding: 1rem;
}

.form-status.success {
  display: block;
  border: 1px solid #8faf98;
  background: #edf7ef;
}

.form-status.error {
  display: block;
  border: 1px solid #d28b7b;
  background: #fff0eb;
}

.footer {
  border-top: 1px solid var(--line);
  background: #eef2ed;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 2rem 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer a {
  margin-left: 1rem;
}

.callout {
  border-left: 5px solid var(--blue);
  padding: 1rem;
  background: #eef3fb;
}

.callout.warning {
  border-left-color: var(--coral);
  background: #fff0eb;
}

.mini-section {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 4.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.75rem;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero,
  .split,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-image {
    aspect-ratio: 16 / 11;
  }

  .trust-strip .inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer a {
    display: inline-block;
    margin: 0 1rem 0.3rem 0;
  }
}

@media (max-width: 520px) {
  .trust-strip .inner {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.6rem, 18vw, 4rem);
  }
}
