* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #2b2b2b;
  background-color: #fbf8f5;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #2b2b2b;
  text-decoration: none;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid #e8e1d7;
  background-color: #ffffff;
}

.nav-shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background-color: #f3e7d9;
  border-radius: 999px;
}

.section {
  padding: 70px 6%;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
  padding: 30px;
  background-color: #fff2ea;
  border-radius: 24px;
  position: relative;
}

.hero-text::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 20px;
  width: 40px;
  height: 40px;
  background-color: #f9d9cc;
  border-radius: 12px;
}

.hero-image {
  flex: 1 1 360px;
  background-color: #e9d4c4;
  border-radius: 28px;
  padding: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #2b2b2b;
  color: #ffffff;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-outline {
  background-color: transparent;
  color: #2b2b2b;
  border: 1px solid #2b2b2b;
}

.offset-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}

.offset-text {
  flex: 1 1 300px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(45, 30, 20, 0.08);
  position: relative;
  top: -20px;
}

.offset-image {
  flex: 1 1 340px;
  background-color: #ead3bf;
  border-radius: 26px;
  padding: 10px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.story-card {
  flex: 1 1 230px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  min-width: 220px;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background-color: #fff7f2;
  padding: 24px;
  border-radius: 20px;
}

.pricing-reveal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  min-width: 210px;
}

.service-card img {
  border-radius: 12px;
  background-color: #ecd5c3;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #f3e7d9;
  font-size: 0.85rem;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.form-box {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
}

.form-step {
  font-weight: 600;
  margin-bottom: 8px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9cfc4;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer {
  padding: 40px 6%;
  background-color: #2b2b2b;
  color: #f9f5f0;
}

.footer a {
  color: #f9f5f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #2b2b2b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background-color: #ffffff;
  color: #2b2b2b;
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e8e1d7;
  padding: 16px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-split .panel {
  flex: 1 1 280px;
}

.panel-image {
  background-color: #e7d3c1;
  border-radius: 22px;
  padding: 12px;
}

.legal-block {
  max-width: 720px;
}

.note {
  font-size: 0.9rem;
  color: #4b4b4b;
}

.contact-card {
  background-color: #fff4ec;
  padding: 24px;
  border-radius: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
}

.service-item img {
  border-radius: 12px;
  background-color: #ead3bf;
}

.hero-sub {
  font-size: 1.05rem;
}

.shadow-panel {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(35, 22, 14, 0.08);
}

.background-section {
  background-color: #f7ede4;
  position: relative;
}

.background-section::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 8%;
  width: 160px;
  height: 160px;
  background-color: #f0dccc;
  border-radius: 30px;
  z-index: 0;
}

.background-section .section-split,
.background-section .offset-block {
  position: relative;
  z-index: 1;
}

.bg-floral {
  background-color: #f3e7d9;
  background-image: url("https://images.pexels.com/photos/29075065/pexels-photo-29075065.jpeg");
  background-size: cover;
  background-position: center;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
