:root {
  --bg: #f7f4ef;
  --bg-alt: #fff7e6;
  --text: #2b2a27;
  --muted: #6b625a;
  --accent: #c8892b;
  --accent-dark: #9b671c;
  --panel: #ffffff;
  --border: #e6dccb;
  --shadow: 0 10px 25px rgba(43, 42, 39, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-alt);
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--panel);
  border-top: 1px solid var(--border);
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 12px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--bg-alt);
}

.nav-links.open {
  display: flex;
}

.hero {
  padding: 56px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.flex-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title {
  font-weight: 700;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  border-radius: 999px;
  padding: 12px 18px;
  border: 1px solid var(--border);
}

.stat strong {
  font-size: 20px;
}

.quote {
  font-size: 20px;
  font-style: italic;
  margin: 0;
}

.quote-box {
  background: var(--panel);
  border-left: 4px solid var(--accent);
  padding: 22px;
  border-radius: var(--radius);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: #fff;
}

.timeline-year {
  font-weight: 700;
  color: var(--accent-dark);
  min-width: 70px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 16px 16px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}

.highlight-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.footer {
  background: #1f1d1a;
  color: #f5f1e8;
  padding: 40px 0;
  margin-top: 40px;
}

.footer a {
  color: #f5f1e8;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-alt);
  font-size: 14px;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 120;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  color: var(--muted);
  font-size: 15px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 0;
    border-top: none;
    background: transparent;
  }

  .menu-toggle {
    display: none;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .flex-grid,
  .service-grid,
  .comparison,
  .footer-grid,
  .two-col {
    flex-direction: row;
  }

  .flex-grid > *,
  .service-grid > *,
  .comparison > *,
  .two-col > * {
    flex: 1;
  }

  .stats-bar {
    flex-direction: row;
  }

  .stats-bar .stat {
    flex: 1;
  }
}
