/* Base */
:root {
  --bg: #f7f4f1;
  --bg-alt: #ffffff;
  --text: #1f1d1a;
  --muted: #5e5952;
  --accent: #9c4a2f;
  --accent-2: #2d5c6a;
  --line: #e6dfd8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent-2);
  font-weight: 600;
}

.title {
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  margin: 12px 0;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 720px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.cta-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Header / Navigation */
header {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-alt);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: absolute;
  top: 64px;
  right: 4%;
  width: min(280px, 92vw);
}

.nav-links a {
  padding: 8px 6px;
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

body.nav-open .nav-links {
  display: flex;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    width: auto;
  }
}

/* Layout helpers */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.grid > * {
  flex: 1 1 260px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(156, 74, 47, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > * {
  flex: 1 1 300px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(45, 92, 106, 0.12);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Feature blocks */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

/* Statistics */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1 1 160px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
}

.stat strong {
  font-size: 1.6rem;
}

/* Testimonials */
.testimonial {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 20px;
  border-radius: var(--radius);
}

/* Comparison table */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.comparison-row span {
  flex: 1 1 180px;
  color: var(--muted);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq-question {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 700;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding-bottom: 8px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Footer */
footer {
  background: #1f1d1a;
  color: #f6f1eb;
  padding: 48px 0;
}

footer a {
  color: inherit;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > * {
  flex: 1 1 220px;
}

/* Cookie banner + modal */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  border: 1px solid var(--line);
  display: none;
  z-index: 80;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
}

.modal.visible {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  width: min(560px, 92%);
  box-shadow: var(--shadow);
}

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0;
}

.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.toggle button {
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 6px 12px;
  background: #fff;
  font-weight: 600;
}

.toggle button.active {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}

/* Utilities */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: rgba(156, 74, 47, 0.1);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.highlight {
  background: rgba(45, 92, 106, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent-2);
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.two-col > * {
  flex: 1 1 320px;
}
