* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1c1a;
  --muted: #5f5a55;
  --sand: #f5f0ea;
  --linen: #fff9f2;
  --rose: #c37b6c;
  --forest: #3f4b44;
  --gold: #b48a3c;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(31, 28, 26, 0.08);
  --radius: 18px;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section--alt {
  background: var(--sand);
}

.section--panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--ink);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--forest);
  color: var(--forest);
}

header {
  position: sticky;
  top: 0;
  background: var(--linen);
  border-bottom: 1px solid rgba(31, 28, 26, 0.08);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.brand svg {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: none;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--linen);
  padding: 24px;
  border-bottom: 1px solid rgba(31, 28, 26, 0.08);
}

.nav-links.open {
  display: flex;
}

.menu-toggle {
  border: 1px solid rgba(31, 28, 26, 0.2);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(195, 123, 108, 0.14);
  color: var(--ink);
  font-size: 0.9rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-item svg {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 12px;
  background: var(--sand);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  background: var(--white);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.stat strong {
  font-size: 1.4rem;
}

.testimonial {
  background: var(--forest);
  color: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.8);
}

.quote {
  font-size: 1.1rem;
}

.tag {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rose);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(31, 28, 26, 0.12);
  border-radius: 12px;
  background: var(--white);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item .answer {
  padding: 0 16px 16px;
  display: none;
  color: var(--muted);
}

.faq-item.open .answer {
  display: block;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  border: 1px solid rgba(31, 28, 26, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-item {
  background: var(--linen);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(31, 28, 26, 0.08);
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 48px 0;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(31, 28, 26, 0.1);
  padding: 18px;
  box-shadow: 0 -12px 30px rgba(31, 28, 26, 0.12);
  z-index: 20;
}

.cookie-banner {
  bottom: 0;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-modal {
  bottom: 0;
  transform: translateY(120%);
  transition: transform 0.2s ease;
}

.cookie-modal.active {
  transform: translateY(0);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wide-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    background: transparent;
    padding: 0;
    border: none;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .stats {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 220px;
  }

  .service-table {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 280px;
  }

  .comparison {
    flex-direction: row;
  }

  .comparison-item {
    flex: 1 1 240px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .wide-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
