* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f1d1a;
  background: #f8f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 32px 0 96px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4b3b;
  background: #efe7dd;
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.hero {
  position: relative;
  padding: 32px 6vw 72px;
}

.hero-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-media {
  flex: 1 1 52%;
  min-height: 360px;
  border-radius: 28px;
  background-color: #d8cbbd;
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 1 1 38%;
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
  margin-top: -40px;
}

.hero-content h1 {
  margin-top: 0;
  font-size: 2.3rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1d1a;
  background: #1f1d1a;
  color: #f8f5f1;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f1d1a;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-header h2,
.section-header h3 {
  margin: 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split > * {
  flex: 1 1 280px;
}

.card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 16px;
  width: 100%;
  height: 180px;
  background-color: #e8dfd6;
}

.card .price {
  font-weight: 700;
  font-size: 1.05rem;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff7ee;
  padding: 22px;
  border-radius: 22px;
  margin-left: 6vw;
}

.offset-block.alt {
  margin-left: 0;
  margin-right: 6vw;
  background: #f1eee9;
}

.image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-row img {
  flex: 1 1 280px;
  border-radius: 18px;
  background-color: #e2d7c9;
  height: 240px;
}

.pricing-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pricing-item {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e8dfd6;
}

.pricing-item span {
  display: block;
  font-weight: 700;
  margin-top: 8px;
}

.note {
  font-size: 0.95rem;
  color: #5c4b3b;
}

.testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border-left: 4px solid #d6bfa8;
}

.service-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.service-option {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e6dacd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option button {
  margin-top: auto;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.07);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  flex: 1 1 220px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8cbbd;
  font-size: 1rem;
  font-family: inherit;
  background: #fffdfb;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f1d1a;
  color: #f8f5f1;
  font-weight: 600;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: #efe7dd;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
  max-width: 320px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hero-media--home {
  background-image: url("https://images.unsplash.com/photo-_JoIcqgRBE0?w=1400&q=80");
}

.hero-media--services {
  background-image: url("https://images.unsplash.com/photo-sz7NTRGFDHA?w=1400&q=80");
}

.hero-media--about {
  background-image: url("https://images.unsplash.com/photo-xeUvnFJI6zo?w=1400&q=80");
}

.section-bg {
  padding: 42px 6vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 28px;
  margin: 0 6vw;
  color: #1f1d1a;
}

.section-bg.gift {
  background-image: url("https://images.unsplash.com/photo-DvCs8zhR5nk?w=1400&q=80");
  background-color: #d5c7b7;
}

.section-bg.about {
  background-image: url("https://images.unsplash.com/photo-DPiWUyqyUNE?w=1400&q=80");
  background-color: #d5c7b7;
}

.plain-section {
  padding: 0 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 860px) {
  .hero-content {
    margin-top: 0;
  }

  .offset-block,
  .offset-block.alt {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
