* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1b1a;
  --soft-ink: #4a3d3a;
  --cream: #f6f2ed;
  --petal: #f3d5dd;
  --leaf: #2f5d3a;
  --sand: #efe5d8;
  --shadow: rgba(31, 27, 26, 0.12);
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

header {
  padding: 24px 6vw 18px;
  background: #fff7f2;
  border-bottom: 1px solid #e4d8cf;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  background: var(--petal);
  padding: 6px 10px;
  border-radius: 14px;
  color: var(--soft-ink);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 36px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  background: #fdf7f3;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/4268554/pexels-photo-4268554.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 320px;
}

.hero-media {
  min-height: 320px;
  border-radius: 24px;
  background: #f1e0d7;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  background: var(--leaf);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--leaf);
  color: var(--leaf);
}

.inline-link {
  color: var(--leaf);
  text-decoration: underline;
  font-weight: 600;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-section.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-block {
  flex: 1 1 300px;
  min-height: 260px;
  background: #ead9ce;
  border-radius: 24px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
  border-radius: 16px;
  background: #f0e2d8;
  overflow: hidden;
}

.badge {
  align-self: flex-start;
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 36px var(--shadow);
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed #e4d7cd;
  padding-bottom: 12px;
}

.pricing-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fef8f4;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 36px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-size: 14px;
  color: var(--soft-ink);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e2d4cb;
  font-size: 14px;
  background: #fff;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: #fff;
  border-left: 4px solid var(--leaf);
  padding: 14px 18px;
  border-radius: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--leaf);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 28px var(--shadow);
  z-index: 8;
}

footer {
  background: #1f1b1a;
  color: #f8f2ec;
  padding: 32px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-card {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e4d7cd;
  padding: 14px 6vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 24px;
  background: #fff7f2;
  border-radius: 24px;
}

.page-hero .image-block {
  min-height: 200px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 14px 28px var(--shadow);
}

.note {
  font-size: 13px;
  color: var(--soft-ink);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 28px var(--shadow);
}

.service-card .card-image {
  height: 140px;
}

.thanks-panel {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 36px var(--shadow);
}

@media (max-width: 720px) {
  .hero {
    padding: 20px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }
}
