* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-ink: #1a1d21;
  --color-muted: #4a5560;
  --color-cream: #f7f4ef;
  --color-sand: #eadcc8;
  --color-forest: #1f5a4f;
  --color-forest-dark: #17443b;
  --color-accent: #d8733f;
  --color-white: #ffffff;
  --shadow-soft: 0 12px 30px rgba(26, 29, 33, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 20px 64px;
}

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(26, 29, 33, 0.08);
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: var(--color-forest);
}

.menu-toggle {
  background: var(--color-forest);
  color: var(--color-white);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.primary-nav {
  position: fixed;
  inset: 0;
  background: rgba(26, 29, 33, 0.45);
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 90px 20px 20px;
}

.primary-nav[data-open="true"] {
  display: flex;
}

.nav-list {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  min-width: 240px;
  box-shadow: var(--shadow-soft);
}

.nav-list a {
  font-weight: 600;
  color: var(--color-forest-dark);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--color-accent);
}

.nav-open {
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  background: var(--color-sand);
  border-radius: 24px;
}

.hero p {
  color: var(--color-muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--color-forest);
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}

.button:hover,
.button:focus {
  background: var(--color-forest-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--color-forest);
  color: var(--color-white);
}

.section-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: var(--color-white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  color: var(--color-forest-dark);
}

.price-tag {
  font-weight: 700;
  color: var(--color-accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--color-white);
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}

.testimonial span {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 36px 20px 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--color-white);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--color-white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 29, 33, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 30;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal__content {
  background: var(--color-white);
  border-radius: 20px;
  padding: 24px;
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--color-cream);
}

.toggle-button {
  background: var(--color-sand);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.toggle-button.is-active {
  background: var(--color-forest);
  color: var(--color-white);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight {
  color: var(--color-forest-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    background: transparent;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    gap: 20px;
  }

  .nav-list a {
    color: var(--color-ink);
  }

  .hero-actions {
    flex-direction: row;
  }

  .section-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section-grid .info-card {
    flex: 1 1 calc(50% - 18px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split > * {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-grid > * {
    flex: 1;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 16px;
  }
}
