* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1f1d1a;
  --muted: #5b5146;
  --accent: #b65e1f;
  --accent-dark: #7a3e14;
  --cream: #fff6ec;
  --sand: #f2e3d3;
  --earth: #2d2520;
  --card: #ffffff;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 6vw;
  background: var(--sand);
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 14px;
  color: var(--accent-dark);
  background: #f9ede0;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  background: #fbe9d7;
  border-radius: 18px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 56px;
  background: #2f251f;
  color: #fff7ec;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1516483954662-1bee87353427?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border: none;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f5c89f;
  color: #3d2814;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #e6cdb7;
}

.image-frame {
  background: #f0d9c6;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  background-color: #e6cdb7;
}

.layered {
  background: var(--earth);
  color: #fff3e4;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1588324226938-d5a83e506134?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.layered-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 680px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.pricing {
  background: #fff2e5;
  padding: 32px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  background: #f3dcc6;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbb39f;
  font-size: 15px;
}

.inline-link {
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: #fff8f0;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
}

footer {
  background: #f1e0cf;
  padding: 30px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: var(--accent-dark);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  z-index: 4;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.notice {
  background: #fff9f3;
  border-radius: 16px;
  padding: 16px;
}

@media (min-width: 900px) {
  .split-row,
  .split-row.reverse {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .price-list {
    flex-direction: row;
  }

  .card,
  .price-item {
    flex: 1;
  }

  .hero {
    padding: 72px 8vw;
  }

  .section {
    padding: 0 8vw;
  }

  header {
    padding: 24px 8vw;
  }

  footer {
    padding: 30px 8vw 40px;
  }

  .cookie-banner {
    left: auto;
    right: 18px;
    width: 360px;
  }
}
