* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", Arial, sans-serif;
  color: #1f1b16;
  background: #f9f6f2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 6vw 80px;
}

.nav-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f1b16;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff1e1;
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -80px;
  width: 220px;
  height: 220px;
  background: rgba(255, 182, 147, 0.35);
  border-radius: 50%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  font-family: "Playfair Display", Georgia, serif;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1f1b16;
  color: #fdfbf8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.alt {
  background: #f0c5a4;
  color: #1f1b16;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 1.7rem;
  font-family: "Playfair Display", Georgia, serif;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  font-weight: 600;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(36, 30, 22, 0.08);
}

.offset-block.shift-right {
  margin-left: 6vw;
}

.offset-block.shift-left {
  margin-right: 6vw;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(31, 27, 22, 0.08);
}

.card img {
  border-radius: 14px;
  height: 180px;
  object-fit: cover;
}

.quote {
  font-style: italic;
  background: #1f1b16;
  color: #fdfbf8;
  padding: 24px;
  border-radius: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #fff6ed;
}

.service-price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(36, 30, 22, 0.08);
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(31, 27, 22, 0.15);
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 27, 22, 0.12);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #e65c3d;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(36, 30, 22, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #1f1b16;
  color: #fdfbf8;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f0c5a4;
  color: #1f1b16;
}

.cookie-reject {
  background: #fff;
  color: #1f1b16;
}

.visual-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-stack img {
  border-radius: 20px;
}

.highlight {
  background: #fff1e1;
  padding: 16px;
  border-radius: 16px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-media {
    flex: 1;
    z-index: 1;
  }

  .section.split .split-row {
    flex-direction: row;
    align-items: center;
  }

  .card-row,
  .service-grid {
    flex-direction: row;
  }

  .card,
  .service-item {
    flex: 1;
  }

  .form-row {
    flex-direction: row;
  }

  .form-row > div {
    flex: 1;
  }
}
