@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --bg: #fbf7f6;
  --ink: #1f1a1a;
  --muted: #6f5f5b;
  --accent: #b45b7a;
  --accent-dark: #8d3f5b;
  --soft: #f3e6ea;
  --sand: #efe6de;
  --card: #ffffff;
  --outline: #e5d6d1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid var(--outline);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 64px 6vw;
  gap: 40px;
  align-items: stretch;
  background: #fff;
}

.hero-text,
.hero-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  margin: 0;
}

.hero-lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 64px 6vw;
  align-items: center;
}

.split-section.alt {
  flex-direction: row-reverse;
  background: var(--sand);
}

.split-text,
.split-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 240px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border-radius: 18px;
}

.form-section {
  padding: 64px 6vw;
  background: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 15px;
  font-family: inherit;
}

.two-col {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0;
}

.footer {
  padding: 48px 6vw;
  background: #1e1a1a;
  color: #f9f5f4;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-note {
  font-size: 13px;
  color: #d8cfcf;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-dark);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--outline);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 10px 14px;
  font-size: 14px;
}

.page-hero {
  padding: 48px 6vw 24px;
}

.page-body {
  padding: 24px 6vw 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--outline);
  align-items: center;
  justify-content: space-between;
}

.service-row h3 {
  margin: 0;
}

.service-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.gallery img {
  border-radius: 18px;
  flex: 1 1 260px;
}

.note {
  background: var(--soft);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--outline);
}

.section-background {
  background-color: #efe2e1;
  background-image: url("https://images.unsplash.com/photo-1736434518489-0eb84070017f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-background .split-text {
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 18px;
}

.bg-hero {
  background-color: #e8d7d2;
}

.bg-soft-1 {
  background-color: #eadfe0;
}

.bg-soft-2 {
  background-color: #e6e0da;
}

.bg-soft-3 {
  background-color: #f1dde5;
}

.bg-soft-4 {
  background-color: #e3d4cf;
}

.bg-soft-5 {
  background-color: #f2e7e1;
}

.bg-soft-6 {
  background-color: #e2d3da;
}

.bg-soft-7 {
  background-color: #ded8d6;
}

.bg-soft-8 {
  background-color: #e7dad5;
}

.bg-soft-9 {
  background-color: #e4d8dc;
}

.bg-soft-10 {
  background-color: #e5d8d0;
}

.bg-soft-11 {
  background-color: #e4d6d1;
}

.bg-soft-12 {
  background-color: #e8dcd7;
}

.bg-soft-13 {
  background-color: #e9d8d8;
}

.bg-soft-14 {
  background-color: #eadfe5;
}

.bg-soft-15 {
  background-color: #e9e2d8;
}

.bg-soft-16 {
  background-color: #eee4df;
}
