* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f4ee;
  --ink: #1d1b17;
  --muted: #5b5144;
  --accent: #c96b3c;
  --accent-dark: #9f4f2a;
  --surface: #ffffff;
  --soft: #f1e8dd;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.top-bar {
  padding: 18px 0 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--soft);
  padding: 6px 12px;
  border-radius: 999px;
  background-color: var(--surface);
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 10px;
  border-radius: 12px;
  background-color: var(--soft);
}

.hero {
  margin-top: 24px;
  display: flex;
  align-items: stretch;
  gap: 32px;
  position: relative;
}

.hero-copy {
  flex: 1.1;
  background-color: var(--surface);
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 0.9;
  margin-top: 40px;
  border-radius: 26px;
  overflow: hidden;
  background-color: #e8dacb;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background-color: var(--accent);
  color: #fff;
  font-weight: 600;
}

.button.secondary {
  background-color: transparent;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.section {
  margin-top: 80px;
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-tight {
  margin-top: 60px;
}

.section-block {
  flex: 1;
}

.section-block h2 {
  margin-top: 0;
  font-size: 2rem;
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
}

.image-frame {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background-color: #f0e2d5;
  min-height: 280px;
}

.offset-panel {
  background-color: var(--surface);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.story-band {
  margin-top: 70px;
  background-color: #efe3d6;
  padding: 34px;
  border-radius: 28px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.story-band .image-frame {
  min-height: 240px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background-color: var(--surface);
  border: 1px solid #e1d4c4;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background-color: var(--surface);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card .image-frame {
  min-height: 150px;
}

.price {
  font-size: 1.4rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.background-panel {
  margin-top: 80px;
  padding: 44px;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-kitchen {
  background-image: url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80");
}

.background-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.background-panel .panel-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  background-color: var(--surface);
  border-radius: 20px;
  padding: 18px;
  margin-top: 18px;
}

.testimonial .image-frame {
  width: 120px;
  min-height: 120px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.form-panel {
  margin-top: 70px;
  background-color: var(--surface);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d9c9b8;
  background-color: #fff;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background-color: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  margin-top: 90px;
  padding-top: 28px;
  border-top: 1px solid #e1d4c4;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-block {
  max-width: 680px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: var(--surface);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  margin-top: 40px;
  background-color: var(--surface);
  border-radius: 26px;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.07);
}

.page-hero .image-frame {
  min-height: 220px;
}

.content-block {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 18px;
  background-color: var(--surface);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.service-row span {
  font-weight: 700;
  color: var(--accent-dark);
}

@media (max-width: 960px) {
  .hero,
  .section,
  .story-band,
  .page-hero,
  .service-row {
    flex-direction: column;
  }

  .hero-visual {
    margin-top: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
