* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  color: #2b2b2b;
  background-color: #fff8f3;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  background-color: #f6dccb;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
  background: #fff2ea;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b3a2d;
  background: #fde9dd;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-toggle {
  border: 1px solid #d7b3a6;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #ffe6d6;
}

.nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-collapsed .nav-links {
  display: none;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #3c1f14;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(48, 22, 14, 0.75), rgba(48, 22, 14, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4b494;
  color: #3c1f14;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #f4b494;
  color: #fff;
}

.section {
  padding: 70px 0;
}

.section.dark {
  background: #3c1f14;
  color: #fff1e9;
}

.section.alt {
  background: #fff2ea;
}

.hero-cake {
  background-image: url("https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1400&q=80");
}

.bg-atelier {
  background-image: url("https://images.pexels.com/photos/34492391/pexels-photo-34492391.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-atelier .section-title,
.bg-atelier p {
  color: #fff8f3;
}

.inline-bake {
  background-color: #f6dccb;
}

.inline-bake img {
  background-color: #f6dccb;
}

.bg-crumbs {
  background-image: url("https://images.pexels.com/photos/33012128/pexels-photo-33012128.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-crumbs .section-title,
.bg-crumbs p {
  color: #fffaf6;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.story-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(60, 31, 20, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: #f6dccb;
  padding: 12px;
  border-radius: 20px;
}

.image-frame img {
  border-radius: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe3d2;
  color: #5a2f1f;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(60, 31, 20, 0.08);
}

.card img {
  border-radius: 14px;
}

.steps {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
  border-radius: 16px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #f4b494;
  padding-left: 16px;
}

.pricing {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing .card {
  border: 1px solid #f1c7af;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6b3a2d;
}

.selection-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.select-btn {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e2b09c;
  background: #fff;
}

.select-btn:hover,
.select-btn:focus {
  background: #ffe6d6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8b3a4;
  background: #fff;
  font: inherit;
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 24px 44px rgba(60, 31, 20, 0.12);
}

.footer {
  padding: 40px 0 80px;
  background: #2f160f;
  color: #f7e8df;
}

.footer a:hover,
.footer a:focus {
  color: #f4b494;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #e7c7b8;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f4b494;
  color: #3c1f14;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(60, 31, 20, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 30px rgba(60, 31, 20, 0.15);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d8b3a4;
  background: #fff8f3;
}

.cookie-actions button:hover,
.cookie-actions button:focus {
  background: #ffe6d6;
}

.legal-page {
  padding: 50px 0 80px;
}

.legal-page h1 {
  margin-bottom: 18px;
}

.legal-page p {
  margin-bottom: 12px;
}

@media (max-width: 820px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
