* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f2;
  --ink: #1c1d1f;
  --muted: #5a5f66;
  --accent: #2e6b5f;
  --accent-soft: #dbe7e3;
  --sand: #efe9dd;
  --stone: #e3e6ea;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

button,
.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

button:hover,
.button:hover,
button:focus,
.button:focus {
  opacity: 0.9;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.ad-label {
  background: var(--sand);
  color: var(--muted);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: 0.85rem;
}

.split {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 4rem 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1;
}

.media {
  background: var(--stone);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero {
  background: var(--sand);
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1.2;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
}

.card-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card img {
  border-radius: 14px;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.section-muted {
  background: var(--stone);
}

.section-accent {
  background: var(--accent-soft);
}

.sticky-cta {
  background: #fff;
  padding: 1.6rem;
  border-radius: 20px;
  position: sticky;
  top: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #ccd2d7;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.footer {
  background: #111;
  color: #fff;
  padding: 3rem 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 1.2rem;
  width: min(380px, 90vw);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-actions button {
  flex: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
