* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --ink: #1c1c1c;
  --muted: #5c5c5c;
  --brand: #2f7b5a;
  --accent: #e85d3b;
  --light: #ffffff;
  --soft: #efe8df;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  background: var(--light);
  border-radius: 18px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #ddd3c7;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 420px;
}

.panel {
  background: var(--light);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.soft {
  background: var(--soft);
}

.panel.dark {
  background: #1c2220;
  color: #f3f0ea;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.headline {
  font-size: 36px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: var(--brand);
  color: var(--light);
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn.ghost {
  background: #fcebe6;
  color: var(--accent);
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: #25664b;
}

.btn.secondary:hover {
  background: var(--brand);
  color: var(--light);
}

.btn.ghost:hover {
  background: #f9d7cf;
  color: #b3432a;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
  background: var(--light);
  align-items: center;
}

.service-card .thumb {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  overflow: hidden;
  background: #e2ddd5;
  flex-shrink: 0;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-link {
  color: var(--brand);
  text-decoration: underline;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4cbbd;
  font-size: 15px;
  width: 100%;
  background: var(--light);
}

.form textarea {
  resize: vertical;
  min-height: 90px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff2cf;
  color: #7a531a;
  font-size: 13px;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background: #e2ddd5;
}

.image-frame.tall img {
  height: 100%;
}

.section {
  margin: 34px 0;
}

.bg-delivery {
  background-image: url("https://images.unsplash.com/photo-1659353740197-4e43ab409ce1?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwzOHx8TGllZmVybW9tZW50ZSUyQyUyMGRpZSUyMHAlQzMlQkNua3RsaWNoJTIwYW5rb21tZW4ufGRlfDB8MHx8fDE3ODIyNDQ5MDl8MA&ixlib=rb-4.1.0&q=80&w=1080");
  background-size: cover;
  background-position: center;
  background-color: #e0d6c8;
  border-radius: 24px;
  padding: 26px;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(28, 34, 32, 0.6);
  border-radius: 18px;
  padding: 20px;
}

.footer {
  background: var(--light);
  border-radius: 24px;
  padding: 24px;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--light);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta:hover {
  background: #c54c32;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.meta-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.meta-card {
  flex: 1 1 180px;
  background: var(--soft);
  padding: 14px;
  border-radius: 16px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: auto;
  }
}
