:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --surface: #ffffff;
  --text: #2b2420;
  --muted: #6d5f57;
  --brand: #c27855;
  --brand-dark: #9a5d43;
  --accent: #e8d8cc;
  --border: #e1d4c8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  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(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand img {
  width: 36px;
  height: 36px;
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--text);
}

.menu-toggle__icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.menu-toggle__icon::before {
  top: -6px;
}

.menu-toggle__icon::after {
  top: 6px;
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--brand-dark);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding-bottom: 1.2rem;
}

.mobile-nav a {
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
}

.mobile-nav.is-open {
  display: flex;
}

.hero {
  padding: 3.5rem 0;
}

.hero-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-mark {
  background: var(--accent);
  border-radius: 24px;
  padding: 1.5rem;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section {
  padding: 3rem 0;
}

.section-muted {
  background: var(--surface);
}

.page-hero {
  padding: 3rem 0 2rem;
  background: var(--surface);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 600;
  color: var(--brand-dark);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.step-number {
  font-weight: 700;
  color: var(--brand-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.testimonial {
  background: var(--surface);
  border-left: 4px solid var(--brand);
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta {
  background: var(--accent);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand-dark);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--brand-dark);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.list {
  padding-left: 1.1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.site-footer {
  background: #231b17;
  color: #f7efe9;
  padding: 2.5rem 0 1.5rem;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bottom {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #d9cfc6;
}

.footer-brand {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1b1411;
  color: #fff;
  padding: 1rem 0;
  transform: translateY(120%);
  transition: transform 0.3s ease;
  z-index: 20;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__content {
  width: min(1120px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cookie-modal__content {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  padding: 1.6rem;
  width: min(520px, 92%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.icon-button {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.toggle {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
}

.toggle[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--brand);
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.legal h2 {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .hero-row,
  .split,
  .cta-row,
  .footer-row {
    flex-direction: row;
    align-items: center;
  }

  .hero-row {
    justify-content: space-between;
  }

  .hero-text,
  .hero-mark,
  .split > div,
  .cta-row > div {
    flex: 1;
  }

  .cards,
  .steps,
  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards .card,
  .steps .step,
  .testimonials .testimonial {
    flex: 1 1 calc(33% - 1rem);
  }

  .footer-links {
    align-items: flex-start;
  }

  .cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-options {
    flex-direction: row;
  }
}
