* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #5b6a60;
  --accent: #0f6b4a;
  --accent-soft: #e6f2ed;
  --surface: #f7f6f2;
  --border: #d8ddd6;
  --shadow: rgba(23, 40, 31, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 24px 6vw 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 240px;
}

main {
  flex: 1;
}

.section {
  padding: 48px 6vw;
}

.section.soft {
  background: var(--surface);
}

.section.layered {
  position: relative;
  overflow: hidden;
}

.section.layered::before {
  content: "";
  position: absolute;
  inset: 12% 0 auto 0;
  height: 60%;
  background: var(--accent-soft);
  z-index: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .visual {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  padding-top: 56px;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 30px var(--shadow);
  display: flex;
  flex-direction: column;
}

.stacked-card {
  margin-top: 18px;
}

.card .card-body {
  padding: 16px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
}

.price {
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.inline-link {
  font-weight: 600;
}

.form-card {
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 16px 32px var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  box-shadow: 0 10px 25px var(--shadow);
}

.site-footer {
  padding: 32px 6vw 40px;
  border-top: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 24px var(--shadow);
  z-index: 30;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.image-wrap {
  background: #e8ece7;
  border-radius: 18px;
  overflow: hidden;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted);
}

.bg-kitchen {
  background-color: #0f2f24;
  background-image: url("https://images.unsplash.com/photo-1773579223066-4b54a17ec8cc?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-kitchen .tag,
.bg-kitchen .inline-link {
  color: #ffffff;
}

.bg-kitchen .tag {
  background: rgba(255, 255, 255, 0.2);
}

.bg-kitchen .note {
  color: #f0f4f0;
}

.bg-kitchen .btn.secondary {
  border-color: #ffffff;
  color: #ffffff;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .ad-label {
    max-width: none;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}
