* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --soft: #f3f0ea;
  --warm: #f7e7d1;
  --accent: #8c4b2d;
  --accent-dark: #6b3922;
  --leaf: #2f5b3b;
  --sand: #efe3d4;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 26px 0 10px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero {
  min-height: 64vh;
  display: flex;
  align-items: center;
  position: relative;
  color: #fff;
  background-color: #2c2c2c;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-inner {
  position: relative;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(640px, 92vw);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 18px;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.offset {
  transform: translateY(20px);
}

.media {
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--soft);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.accent-block {
  background: var(--warm);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: var(--soft);
  border-radius: 24px;
  padding: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2c8bb;
  font-size: 0.95rem;
}

.footer {
  background: #141414;
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer {
  font-size: 0.88rem;
  color: #d4d4d4;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 20, 20, 0.92);
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 12px;
  z-index: 5;
}

.sticky-cta .btn {
  background: #fff;
  color: #141414;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 78px;
  background: #fff;
  border: 1px solid #e0d7cc;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions .btn {
  padding: 8px 12px;
  font-size: 0.85rem;
}

.cookie-actions .btn.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #e5dacd;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--soft);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-pad {
  padding-top: 30px;
}

.hero-img {
  background-color: #3a2e26;
}

.hero-home {
  background-image: url("https://images.pexels.com/photos/3785691/pexels-photo-3785691.jpeg");
}

.bg-ingredients {
  background-color: #31251e;
  background-image: url("https://images.pexels.com/photos/8053712/pexels-photo-8053712.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.light-block {
  background: #fffaf3;
  border-radius: 26px;
  padding: 30px;
}

@media (max-width: 860px) {
  .hero {
    min-height: 56vh;
  }

  .sticky-cta {
    padding: 8px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
