* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1f1d;
  --muted: #4c5752;
  --accent: #1a7f5a;
  --accent-dark: #0f5b41;
  --sand: #f5f2eb;
  --mist: #eef2ef;
  --sun: #f2c057;
  --panel: #ffffff;
  --line: #d7e0da;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mist);
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--sun);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #fff7e6;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #f1e1bf;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 56px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero {
  background: var(--panel);
}

.hero h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #dde7e0;
  min-height: 320px;
  border: 1px solid var(--line);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.card .thumb {
  width: 110px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: #e0e7e2;
  flex-shrink: 0;
}

.card h3 {
  margin: 0 0 6px 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mist);
  width: fit-content;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #000000;
}

.btn.ghost:hover,
.btn.ghost:focus {
  background: var(--mist);
}

.callout {
  background: var(--mist);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-card {
  background: var(--panel);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--line);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.foot {
  border-top: 1px solid var(--line);
  padding: 32px 0 60px;
  background: var(--panel);
}

.foot .footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.foot ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot li {
  margin-bottom: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}

.sticky-cta button {
  background: var(--sun);
  color: #3a2a00;
}

.sticky-cta button:hover,
.sticky-cta button:focus {
  background: #f5d07b;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-block {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}

.legal-block h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    justify-content: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
