* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --subtle: #5b5f66;
  --accent: #3b6f6a;
  --accent-dark: #2b524e;
  --warm: #f6efe7;
  --mist: #eef2f1;
  --sun: #f3d6a4;
  --night: #101417;
  --border: rgba(27, 27, 27, 0.12);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body {
  background: #ffffff;
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--subtle);
}

.brand h1,
.brand h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  padding: 28px clamp(20px, 5vw, 72px) 10px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-content h2,
.split-content h3 {
  font-size: clamp(26px, 3.5vw, 38px);
}

.split-content p {
  color: var(--subtle);
  font-size: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.spaced {
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(59, 111, 106, 0.25);
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--accent-dark);
  border-color: var(--border);
}

.section {
  padding: 60px clamp(20px, 5vw, 72px);
}

.section.accent {
  background: var(--warm);
}

.section.mist {
  background: var(--mist);
}

.section.dark {
  background: var(--night);
  color: #ffffff;
}

.section.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.section-head span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--subtle);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.card strong {
  font-size: 20px;
}

.price {
  font-size: 22px;
  color: var(--accent-dark);
  font-weight: 600;
}

.inline-link {
  color: var(--accent-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
  width: fit-content;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.facts li {
  list-style: none;
  font-size: 15px;
  color: var(--subtle);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.service-choices {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.choice input {
  accent-color: var(--accent);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--subtle);
}

.form-field input,
.form-field textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 50;
}

.sticky-cta .btn {
  background: var(--sun);
  color: #2a1f12;
}

.footer {
  margin-top: auto;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #ffffff;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--subtle);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 20, 23, 0.2), transparent);
}

.image-caption {
  font-size: 13px;
  color: var(--subtle);
}

.split-photo {
  border-radius: 22px;
  overflow: hidden;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.photo-hero {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?auto=format&fit=crop&w=1200&q=80");
}

.photo-quiet {
  background-image: url("https://images.unsplash.com/photo-1507146426996-ef05306b995a?auto=format&fit=crop&w=1200&q=80");
}

.photo-play {
  background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?auto=format&fit=crop&w=1200&q=80");
}

.photo-groom {
  background-image: url("https://images.unsplash.com/photo-1525253086316-d0c936c814f8?auto=format&fit=crop&w=1200&q=80");
}

.photo-home {
  background-image: url("https://images.unsplash.com/photo-1505628346881-b72b27e84530?auto=format&fit=crop&w=1200&q=80");
}

.photo-clinic {
  background-image: url("https://images.unsplash.com/photo-1450778869180-41d0601e046e?auto=format&fit=crop&w=1200&q=80");
}

.highlight {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(243, 214, 164, 0.4);
  color: #2a1f12;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(59, 111, 106, 0.12);
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #ffffff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.simple-list li {
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #ffffff;
}

@media (min-width: 900px) {
  .top-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: stretch;
  }

  .split-content,
  .split-photo {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .two-col {
    flex-direction: row;
    align-items: stretch;
  }

  .two-col > * {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
