* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7f3ef;
  --sand: #efe7dd;
  --rose: #f1dfe4;
  --cocoa: #3f2f2c;
  --berry: #7d3f58;
  --sage: #cfd8cd;
  --ink: #1b1b1b;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  display: block;
}

a {
  color: var(--berry);
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  background: var(--sand);
  border-bottom: 1px solid rgba(63, 47, 44, 0.1);
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1 {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--cocoa);
  background: var(--rose);
  padding: 6px 10px;
  border-radius: 999px;
  max-width: 260px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 70px 7% 60px;
  background: #d9c9c2;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/7020316/pexels-photo-7020316.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 2.6rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  border: none;
  background: var(--berry);
  color: #fff;
  padding: 12px 22px;
  border-radius: 24px;
  font-size: 1rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--berry);
  border: 1px solid var(--berry);
}

.section {
  padding: 60px 7%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-media {
  flex: 1 1 320px;
  background: var(--sage);
  padding: 12px;
  border-radius: 18px;
}

.media-img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  object-fit: cover;
}

.story-band {
  background: var(--rose);
  position: relative;
}

.story-band::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -30px;
  height: 60px;
  background: #fff;
  border-radius: 32px;
  z-index: 1;
}

.story-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--sand);
}

.price {
  font-weight: 700;
  color: var(--berry);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.services-grid .card {
  flex: 1 1 250px;
}

.highlight {
  background: var(--sage);
  border-radius: 20px;
  padding: 30px;
}

.section-bg {
  background-image: url("https://images.pexels.com/photos/26348192/pexels-photo-26348192.jpeg");
  background-size: cover;
  background-position: center;
  background-color: #6d4a50;
  color: #fff;
}

.section-bg .panel {
  background: rgba(27, 27, 27, 0.7);
  border-radius: 18px;
  padding: 26px;
  max-width: 560px;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(63, 47, 44, 0.2);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
}

.footer {
  padding: 40px 7%;
  background: var(--sand);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 7% 30px;
  background: var(--rose);
}

.page-hero h2 {
  font-size: 2.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.contact-box {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.notice {
  font-size: 0.9rem;
  color: var(--cocoa);
}

@media (max-width: 800px) {
  .hero h2 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
