:root {
  --bg: #eef1ed;
  --surface: #ffffff;
  --surface-soft: #f2ece4;
  --ink: #1f2427;
  --muted: #5e666d;
  --line: #d7dcd8;
  --accent: #8a5437;
  --accent-dark: #5f3728;
  --accent-soft: #efe0d5;
  --signal: #2d6b5f;
  --radius: 8px;
  --max: 1120px;
  --font: 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(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

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

:focus-visible {
  outline: 3px solid rgba(40, 121, 128, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 241, 237, 0.94);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.nav-links {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 66px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.nav-links.is-open {
  display: grid;
  gap: 4px;
}

.nav-links a {
  padding: 10px 8px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--surface-soft);
  color: var(--ink);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
}

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

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

.section {
  padding: 56px 18px;
}

.section.tight {
  padding-top: 34px;
  padding-bottom: 34px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  padding: 56px 18px 34px;
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: 42px;
}

h2 {
  max-width: 760px;
  font-size: 32px;
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.caption-strip {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.caption-strip strong {
  font-size: 14px;
}

.caption-strip span {
  color: var(--muted);
  font-size: 13px;
}

.split {
  display: grid;
  gap: 26px;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.section-head p {
  max-width: 690px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 14px;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
}

.card h3 {
  line-height: 1.18;
}

.card .tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

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

th {
  background: var(--surface-soft);
  font-size: 13px;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

.quote {
  border-left: 4px solid var(--signal);
  padding-left: 18px;
  color: var(--muted);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  color: var(--accent);
  font-size: 24px;
}

.faq-button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: none;
  max-width: 760px;
  padding: 0 0 18px;
  color: var(--muted);
}

.faq-panel.is-open {
  display: block;
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 14px;
}

.contact-box {
  display: grid;
  gap: 14px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-line span {
  color: var(--muted);
  font-size: 14px;
}

.map-box {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(138, 84, 55, 0.08), rgba(45, 107, 95, 0.10)),
    var(--surface);
  color: var(--muted);
  text-align: center;
  padding: 22px;
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-row {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.article-row p {
  color: var(--muted);
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 30px;
  font-size: 28px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal .list {
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #f4f6f1;
}

.footer-grid {
  display: grid;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 18px;
}

.site-footer p,
.site-footer a {
  color: #c9d0c8;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.site-footer .small {
  color: #d8dfda;
}

.site-footer .brand-mark {
  border-color: #d8dfda;
  background: rgba(239, 224, 213, 0.16);
  color: #f6eee8;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero {
    padding-top: 78px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1.08fr .92fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr .8fr .8fr;
  }
}

@media (min-width: 1040px) {
  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 48px;
  }
}
