* {
  box-sizing: border-box;
}

:root {
  --cream: #f6f2ed;
  --sand: #efe4d8;
  --rose: #f6dce1;
  --olive: #6b7a5b;
  --ink: #1f1f1f;
  --accent: #c76a7a;
  --muted: #6a5f58;
  --soft: #faf8f6;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 22px 6%;
  background: #fff;
  border-bottom: 1px solid #eee1d8;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: var(--rose);
  color: #6a2e3a;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 6% 70px;
  color: #fff;
  background-color: #c89fa5;
  background-image: url("https://images.unsplash.com/photo-1653784097013-786a8965ea3b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 14px;
}

.hero p {
  margin: 0 0 24px;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--cream);
}

.section.rose {
  background: var(--rose);
}

.section.sand {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
}

.image-frame {
  background: #e8d8d2;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.inline-image {
  max-width: 520px;
  height: 360px;
}

.quote-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit {
  flex: 1 1 220px;
  padding: 18px;
  background: #fff;
  border-radius: 16px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 230px;
}

.service-card .card-media {
  background: #ead9d1;
  height: 170px;
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.service-card .card-body {
  padding: 16px 18px 20px;
}

.service-card strong {
  display: block;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--olive);
}

.background-strip {
  background-color: #a76a6f;
  background-image: url("https://images.unsplash.com/photo-1678981987723-ed2fd63710b3?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.background-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.background-strip .section-content {
  position: relative;
  z-index: 1;
}

.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-option {
  flex: 1 1 200px;
  border: 1px solid #e8d6cf;
  border-radius: 16px;
  padding: 12px 14px;
  cursor: pointer;
  background: #fff;
}

.service-option.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(199, 106, 122, 0.15);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8c8c0;
  font-size: 1rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: var(--olive);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.footer {
  padding: 40px 6% 60px;
  background: #1f1b1a;
  color: #f5ede9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7c0cb;
}

.footer .columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer small {
  color: #d9c8c1;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
}

.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
}

.cookie-actions .reject {
  background: #eee2dd;
  color: var(--muted);
}

.page-hero {
  padding: 60px 6%;
  background: var(--sand);
}

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3d7cf;
  flex-wrap: wrap;
}

.table-row span {
  max-width: 70%;
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
