* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1a17;
  --muted: #5a4f49;
  --cream: #f9f4ef;
  --sand: #efe5db;
  --accent: #b06a3b;
  --accent-dark: #7e4a27;
  --leaf: #49664c;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 22px;
  background: #f1e7df;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  background: #f4dac8;
  padding: 6px 8px;
  border-radius: 8px;
}

.nav-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links a {
  padding: 6px 2px;
  font-weight: 600;
}

.sidebar .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--leaf);
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px 48px 80px;
}

.hero {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: #fff;
  border-radius: 24px;
  background-color: #8b5a3c;
  background-size: cover;
  background-position: center;
}

.hero-kitchen {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.hero h2 {
  font-size: 2.6rem;
  max-width: 520px;
}

.hero p {
  max-width: 520px;
  font-size: 1.05rem;
  margin-top: 10px;
}

.section {
  display: flex;
  gap: 26px;
  align-items: center;
}

.section.alt {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1;
}

.section .text h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.section .text p {
  color: var(--muted);
}

.image-frame {
  flex: 1;
  background: var(--sand);
  padding: 8px;
  border-radius: 18px;
  display: flex;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.feature-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.feature-card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card h4 {
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.story-block {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.background-section {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 32px;
  color: #fff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #7b4f31;
}

.bg-season {
  background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?w=1400&q=80");
}

.background-section .cta-row {
  margin-top: 12px;
}

.sticky-cta-wrap {
  position: sticky;
  top: 18px;
  align-self: flex-start;
}

.sticky-cta {
  display: inline-flex;
  background: var(--leaf);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  align-items: center;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-block {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-block label {
  font-weight: 600;
  margin-bottom: 6px;
  display: inline-block;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9c8ba;
  font-size: 1rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
}

.disclaimer {
  background: #f7efe8;
  border-radius: 16px;
  padding: 18px;
  color: var(--muted);
}

.footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.thanks-highlight {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    padding: 24px;
  }

  .section,
  .section.alt,
  .service-card {
    flex-direction: column;
  }

  .feature-grid {
    flex-direction: column;
  }
}

.nav-collapsed .nav-links {
  display: none;
}
