*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f7f4f0;
  --surface: #ffffff;
  --ink: #1f1d1a;
  --muted: #5a534c;
  --accent: #9b4a2f;
  --accent-dark: #6f3420;
  --sage: #c6d1c6;
  --sand: #efe3d3;
  --stone: #e1d7cc;
  --border: #d7ccc0;
  --shadow: 0 16px 40px rgba(31, 29, 26, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface);
}

.section.sand {
  background: var(--sand);
}

.section.sage {
  background: var(--sage);
}

.section .eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 12px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.menu-panel {
  position: absolute;
  top: 72px;
  right: 4%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  width: min(320px, 92vw);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.menu-panel a {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.menu-panel a:hover,
.menu-panel a:focus {
  background: var(--sand);
}

body.nav-open .menu-panel {
  display: flex;
}

.nav-desktop {
  display: none;
  gap: 20px;
  align-items: center;
  font-weight: 600;
}

.nav-desktop a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-desktop a:hover,
.nav-desktop a:focus {
  background: var(--sand);
}

.hero {
  padding: 80px 0 64px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.3rem);
  margin: 0 0 16px;
}

.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 0.85rem;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.stat-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.7rem;
}

.quote {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  border-left: 6px solid var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comparison .card {
  background: var(--sand);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  background: #1f1d1a;
  color: #f4efe9;
  padding: 48px 0;
}

.footer a {
  color: #f4efe9;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 92%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner.show {
  display: flex;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  width: min(640px, 94%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--sand);
}

.toggle-item button {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
}

.toggle-item button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.section .list {
  padding-left: 18px;
  color: var(--muted);
}

.info-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--border);
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice {
  padding: 16px;
  border-radius: 12px;
  background: var(--stone);
  color: var(--ink);
}

@media (min-width: 768px) {
  .hero-grid,
  .split,
  .comparison {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-grid > * {
    flex: 1;
  }

  .card-grid,
  .stat-grid {
    flex-direction: row;
  }

  .card-grid .card,
  .stat-grid .stat {
    flex: 1;
  }

  .feature-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-item {
    width: calc(50% - 12px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none;
  }

  .menu-panel {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }
}
