* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1b1d1f;
  --muted: #5a636b;
  --bg: #f7f6f2;
  --card: #ffffff;
  --accent: #2f7a6f;
  --accent-dark: #1f5a52;
  --warm: #f2b24c;
  --line: #e4e1d8;
  --shadow: 0 10px 24px rgba(21, 30, 27, 0.08);
}

body {
  font-family: "Segoe UI", "Noto Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.brand-mark {
  width: 36px;
  height: 36px;
}

.brand-name {
  letter-spacing: 0.02em;
}

.menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--card);
  padding: 1rem 0;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  font-weight: 600;
  color: var(--accent-dark);
}

main {
  padding: 2.5rem 0 3rem;
}

section {
  padding: 2rem 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.hero p {
  max-width: 640px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3 {
  color: var(--accent-dark);
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(47, 122, 111, 0.12);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial span {
  font-weight: 600;
  color: var(--accent-dark);
}

.highlight {
  background: var(--accent-dark);
  color: #fff;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  background: var(--card);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.site-footer {
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 1rem;
  display: none;
  z-index: 40;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 22, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 50;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal__dialog {
  background: var(--card);
  border-radius: 18px;
  padding: 1.5rem;
  width: min(560px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-button {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--accent-dark);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.cookie-option:last-child {
  border-bottom: none;
}

.toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 760px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    padding: 0;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero p {
    max-width: 520px;
  }

  .card-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 260px;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 260px;
  }

  .highlight {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
