:root {
  --bg: #f7f3f0;
  --ink: #2a2420;
  --muted: #6a5f58;
  --accent: #7d3b5a;
  --accent-2: #2f5f5a;
  --cream: #fff7f2;
  --sand: #efe6df;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 20px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--muted);
}

.hero {
  position: relative;
  padding: 70px 0 90px;
  background: var(--cream);
  overflow: hidden;
}

.hero .hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 720px;
}

.hero-media {
  margin-top: 28px;
  border-radius: 24px;
  overflow: hidden;
  background: #e8d8d0;
}

.hero-media img {
  width: 100%;
  height: 420px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.alt {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.section {
  padding: 70px 0;
}

.section.light {
  background: #fff;
}

.section.sand {
  background: var(--sand);
}

.section-title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 16px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #d8cdc6;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.story {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.story-block {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #efe1d8;
}

.story-block h3 {
  margin-top: 0;
}

.inline-quote {
  margin: 20px 0 0;
  font-style: italic;
  color: var(--muted);
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.space-top-md {
  margin-top: 22px;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #efe1d8;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
}

.card img {
  width: 100%;
  height: 200px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  background: #f1e6df;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

.pricing {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.price-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #e6d7ce;
}

.price-tag {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid #efe1d8;
}

.service-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.service-card {
  flex: 1 1 200px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #ead7cd;
  background: #fffaf7;
  cursor: pointer;
}

.service-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(125, 59, 90, 0.15);
}

.form-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e3d1c7;
  font-size: 14px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid #ecdcd1;
  padding: 12px 0;
  z-index: 2;
}

.footer {
  margin-top: auto;
  background: #1f1b18;
  color: #f5efea;
  padding: 40px 0;
}

.footer a {
  color: #f5efea;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid div {
  flex: 1 1 220px;
}

.legal-note {
  font-size: 12px;
  color: #d8ccc4;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #e6d7ce;
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 10;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-header {
  padding: 60px 0 40px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-media img {
    height: 280px;
  }
}
