* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --accent: #7a2048;
  --accent-soft: #f3e8ed;
  --paper: #f7f5f2;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 12px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 12px;
}

.story {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 36px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story h1,
.story h2,
.story h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-media {
  background: var(--white);
  padding: 16px;
  box-shadow: var(--shadow);
}

.hero .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.note {
  background: var(--accent-soft);
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.split .split-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .meta {
  color: var(--muted);
  font-size: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: var(--white);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 3px solid var(--ink);
  padding-left: 18px;
  font-style: italic;
}

.image-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-panel {
  background: var(--ink);
  color: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-panel a {
  color: var(--white);
}

.form-wrap {
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c8c2bb;
  border-radius: 6px;
  font-size: 15px;
}

footer {
  margin-top: auto;
  padding: 30px 8vw 50px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: var(--white);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text,
  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split .split-row {
    flex: 1;
  }

  .image-row {
    flex-direction: row;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 45%;
  }
}
