* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f3ef;
  --surface: #ffffff;
  --text: #1f1a17;
  --muted: #5a4d45;
  --accent: #b28a4e;
  --accent-dark: #8d6a39;
  --border: #e1d7cd;
  --shadow: 0 12px 28px rgba(31, 26, 23, 0.12);
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
  padding: 24px 0;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav {
  display: none;
  gap: 20px;
  align-items: center;
}

.primary-nav a {
  font-weight: 500;
  color: var(--muted);
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--text);
}

.nav-toggle {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: var(--surface);
}

.mobile-menu {
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.mobile-menu a {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  padding: 48px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero p {
  color: var(--muted);
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: background 0.2s ease, border 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

.section {
  padding: 40px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
  max-width: 700px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 1.1rem;
}

.card p {
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial span {
  font-weight: 600;
}

.highlight {
  background: rgba(178, 138, 78, 0.12);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(178, 138, 78, 0.2);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(31, 26, 23, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 40;
}

.cookie-modal-content {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.cookie-toggle button {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.cookie-toggle button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 768px) {
  .primary-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .split {
    flex-direction: row;
  }

  .split > * {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
