* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1b1f;
  --muted: #5b5b66;
  --accent: #2c2a4a;
  --accent-soft: #c4a46f;
  --bg: #f7f5f2;
  --card: #ffffff;
  --border: #e3ded6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--accent);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  font-size: 16px;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.site-nav a {
  padding: 6px 4px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--accent);
}

.menu-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  top: 64px;
  right: 16px;
  left: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 10px 8px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--accent);
  font-weight: 600;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 27, 31, 0.35);
  z-index: 25;
}

.hero {
  padding: 56px 0 36px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--accent);
}

.hero p {
  color: var(--muted);
  max-width: 600px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:focus,
.button:hover {
  transform: translateY(-1px);
}

.section {
  padding: 36px 0;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.1rem;
  color: var(--accent);
}

.card p {
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-soft);
  border-radius: 12px;
  padding: 16px;
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.highlight {
  background: var(--accent);
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 26px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(28, 27, 31, 0.4);
  z-index: 45;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-panel {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.toggle-row button {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent);
}

.toggle-row button[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.wide-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  z-index: 50;
}

@media (min-width: 800px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1;
    padding-right: 20px;
  }

  .hero-panel {
    flex: 1;
  }

  .card-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 240px;
  }

  .cookie-actions,
  .wide-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
