* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4f0;
  --surface: #ffffff;
  --text: #1d1a17;
  --muted: #5a544c;
  --accent: #8b5d2b;
  --accent-dark: #6f471f;
  --border: #e5ddd4;
  --shadow: 0 10px 30px rgba(29, 26, 23, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand svg {
  width: 36px;
  height: 36px;
}

.nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.nav a {
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

.nav.is-open {
  display: flex;
}

.hero {
  padding: 48px 0 32px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero p {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
  color: #fff;
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 32px 0;
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--muted);
}

.testimonial {
  background: var(--surface);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial span {
  font-weight: 600;
  color: var(--accent);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: var(--surface);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.footer small {
  color: var(--muted);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.notice {
  background: #fff8ee;
  border: 1px solid #f0ddc3;
  padding: 16px;
  border-radius: 12px;
}

.cookie-banner,
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-banner {
  bottom: 0;
  padding: 16px;
}

.cookie-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  top: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle-row span {
  font-weight: 600;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .header-inner {
    gap: 24px;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .testimonial {
    flex: 1 1 calc(33.33% - 16px);
  }

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .contact-grid {
    flex-direction: row;
  }
}
