:root {
  --ink: #191b35;
  --muted: #626a87;
  --line: #d9d7ec;
  --paper: #f8f8ff;
  --soft: #eef2ff;
  --sage: #5f78ad;
  --rose: #9278c7;
  --gold: #d4af37;
  --gold-deep: #9f7415;
  --charcoal: #121735;
  --white: #fffefe;
  --shadow: 0 22px 60px rgba(26, 31, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 23, 53, 0.8), rgba(18, 23, 53, 0));
}

.brand,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(146, 120, 199, 0.18);
}

.header-actions {
  gap: 16px;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-actions a {
  opacity: 0.92;
}

.header-actions a:hover {
  opacity: 1;
}

.nav-button {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(10px);
}

.hero {
  position: relative;
  min-height: min(860px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  filter: saturate(0.94) brightness(0.9);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 23, 53, 0.82), rgba(45, 44, 105, 0.58) 45%, rgba(95, 120, 173, 0.1)),
    linear-gradient(0deg, rgba(18, 23, 53, 0.78), rgba(146, 120, 199, 0.1) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 92px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: none;
  font-size: clamp(2.35rem, 6.65vw, 5.95rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

#reservation-title {
  display: inline-flex;
  align-items: flex-start;
  white-space: nowrap;
  gap: 0.04em;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
}

.title-asterisk {
  margin-top: 0.1em;
  font-size: 0.36em;
  line-height: 1;
  opacity: 0.38;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.no-break {
  white-space: nowrap;
}

.single-line-title {
  white-space: nowrap;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero-orientation {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.hero-orientation > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.94);
  font-weight: 900;
}

.hero-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1120px;
}

.hero-choice-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-height: 142px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(18, 23, 53, 0.18);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-choice-card:hover,
.hero-choice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 213, 107, 0.62);
  background: rgba(255, 253, 248, 0.18);
}

.hero-choice-card:focus-visible {
  outline: 3px solid rgba(244, 213, 107, 0.42);
  outline-offset: 4px;
}

.hero-choice-card-birth:hover,
.hero-choice-card-birth:focus-visible {
  border-color: rgba(244, 190, 217, 0.72);
}

.hero-choice-card i,
.hero-choice-card svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 253, 248, 0.14);
}

.hero-choice-card-birth i,
.hero-choice-card-birth svg {
  color: #f4bed9;
}

.hero-choice-card span {
  display: grid;
  gap: 8px;
}

.hero-choice-card strong {
  color: var(--white);
  font-size: clamp(1.02rem, 1.28vw, 1.16rem);
  line-height: 1.18;
}

@media (min-width: 920px) {
  .hero-choice-grid {
    grid-template-columns: repeat(2, minmax(520px, 1fr));
  }

  .hero-choice-card strong {
    white-space: nowrap;
  }
}

.hero-choice-card small {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-unsure {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: 16px;
}

.hero-unsure .button {
  min-height: 44px;
  padding: 11px 15px;
  background: rgba(255, 253, 248, 0.1);
  border-color: rgba(255, 253, 248, 0.28);
  color: rgba(255, 253, 248, 0.92);
}

.hero-unsure small {
  max-width: 520px;
  color: rgba(255, 253, 248, 0.74);
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  isolation: isolate;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.42);
  outline-offset: 4px;
}

.button svg,
.payment-row svg,
.icon-badge svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.primary {
  color: var(--charcoal);
  background: linear-gradient(135deg, #f4d56b, var(--gold) 42%, var(--gold-deep));
  box-shadow: 0 10px 22px rgba(159, 116, 21, 0.16);
}

.primary:hover,
.primary:focus-visible {
  filter: brightness(1.018);
  box-shadow: 0 12px 26px rgba(159, 116, 21, 0.18);
}

.light-portal-button {
  overflow: hidden;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.light-portal-button > i,
.light-portal-button > span:not(.button-sun-halo) {
  position: relative;
  z-index: 2;
}

.button-sun-halo {
  display: none;
}

.button-sun-halo::before,
.button-sun-halo::after {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button-sun-halo::before {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 246, 216, 0.18), transparent 48%),
    radial-gradient(ellipse at 16% 56%, rgba(236, 190, 86, 0.11), transparent 44%),
    radial-gradient(ellipse at 78% 62%, rgba(255, 229, 153, 0.1), transparent 50%),
    radial-gradient(ellipse at 48% 92%, rgba(206, 144, 42, 0.08), transparent 45%);
  filter: blur(24px);
}

.button-sun-halo::after {
  background:
    radial-gradient(circle at 22% 36%, rgba(255, 250, 226, 0.32) 0 0.8px, transparent 1.8px),
    radial-gradient(circle at 68% 28%, rgba(248, 223, 121, 0.22) 0 0.8px, transparent 1.9px),
    radial-gradient(circle at 52% 70%, rgba(255, 244, 205, 0.2) 0 0.8px, transparent 1.8px),
    radial-gradient(circle at 84% 58%, rgba(212, 175, 55, 0.18) 0 0.7px, transparent 1.7px);
  filter: blur(0.6px);
}

.light-portal-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 16%, rgba(255, 253, 244, 0.28) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-118%);
  transition:
    opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.light-portal-button:hover,
.light-portal-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.018);
  background: linear-gradient(135deg, #f7dc82, #d8b649 48%, #a67a18);
  box-shadow:
    0 12px 28px rgba(159, 116, 21, 0.2),
    0 0 0 1px rgba(255, 253, 244, 0.14) inset;
}

.light-portal-button:hover::after,
.light-portal-button:focus-visible::after {
  opacity: 1;
  transform: translateX(110%);
}

.light-portal-button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.44);
  outline-offset: 4px;
}

.light-transition-overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  border-radius: 47% 53% 51% 49% / 52% 46% 54% 48%;
  background:
    radial-gradient(circle, rgba(255, 246, 219, 0.96) 0%, rgba(250, 223, 151, 0.58) 24%, rgba(213, 160, 61, 0.22) 52%, rgba(161, 103, 31, 0.07) 76%, rgba(161, 103, 31, 0) 100%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  pointer-events: none;
  will-change: transform, opacity;
  filter: blur(12px) saturate(1.02);
  overflow: visible;
}

.light-transition-overlay::before,
.light-transition-overlay::after {
  content: "";
  position: absolute;
  inset: -34%;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.light-transition-overlay::before {
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 247, 222, 0.26), transparent 55%),
    radial-gradient(ellipse at 14% 64%, rgba(244, 206, 123, 0.13), transparent 54%),
    radial-gradient(ellipse at 86% 38%, rgba(227, 171, 75, 0.11), transparent 52%),
    radial-gradient(ellipse at 44% 94%, rgba(255, 238, 184, 0.14), transparent 48%),
    radial-gradient(ellipse at 72% 82%, rgba(176, 111, 31, 0.08), transparent 46%);
  filter: blur(44px);
  transform: rotate(-7deg) scale(0.92);
}

.light-transition-overlay::after {
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 250, 225, 0.3) 0 0.8px, transparent 1.8px),
    radial-gradient(circle at 26% 74%, rgba(245, 201, 106, 0.2) 0 0.9px, transparent 2px),
    radial-gradient(circle at 52% 18%, rgba(255, 238, 184, 0.24) 0 0.8px, transparent 2px),
    radial-gradient(circle at 77% 38%, rgba(255, 250, 225, 0.26) 0 0.8px, transparent 2px),
    radial-gradient(circle at 88% 78%, rgba(238, 194, 92, 0.16) 0 0.8px, transparent 2px),
    radial-gradient(circle at 42% 56%, rgba(255, 253, 244, 0.14) 0 0.7px, transparent 1.9px);
  filter: blur(0.9px);
  transform: translate3d(-1%, 2%, 0);
}

.light-transition-overlay.is-opening {
  opacity: 1;
  transition:
    transform 1280ms cubic-bezier(0.76, 0, 0.24, 1),
    opacity 460ms ease;
  animation: light-warmth-bloom 1280ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.light-transition-overlay.is-opening::before {
  opacity: 1;
  animation: light-rays-bloom 1280ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.light-transition-overlay.is-opening::after {
  opacity: 0.5;
  animation: light-dust-drift 1280ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.light-transition-overlay.is-revealing {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: rgba(255, 248, 226, 0.92);
  opacity: 0;
  transform: none;
  transition: opacity 560ms ease;
  filter: none;
}

@keyframes button-halo-breathe {
  from {
    filter: blur(8px) saturate(1);
  }

  to {
    filter: blur(12px) saturate(1.06);
  }
}

@keyframes button-rays-breathe {
  from {
    filter: blur(24px);
  }

  to {
    filter: blur(30px);
  }
}

@keyframes button-dust-float {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 8px -10px;
  }
}

@keyframes light-warmth-bloom {
  from {
    border-radius: 47% 53% 51% 49% / 52% 46% 54% 48%;
    filter: blur(16px) saturate(1);
  }

  55% {
    border-radius: 54% 46% 48% 52% / 45% 56% 44% 55%;
    filter: blur(22px) saturate(1.04);
  }

  to {
    border-radius: 50%;
    filter: blur(28px) saturate(1.02);
  }
}

@keyframes light-rays-bloom {
  from {
    transform: rotate(-10deg) scale(0.62);
  }

  to {
    transform: rotate(3deg) scale(1.26);
  }
}

@keyframes light-dust-drift {
  from {
    transform: translate3d(-3%, 4%, 0) scale(0.82);
  }

  to {
    transform: translate3d(2%, -2%, 0) scale(1.12);
  }
}

.light-transitioning {
  overflow: hidden;
}

.secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.34);
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(12px);
}

.muted {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.full {
  width: 100%;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info div,
.quick-info-card {
  min-height: 138px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info-card {
  color: inherit;
  transition:
    background 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.quick-info-link:hover,
.quick-info-link:focus-visible {
  background: rgba(255, 254, 254, 0.72);
  box-shadow: inset 0 -2px 0 rgba(212, 175, 55, 0.46);
}

.quick-info-link:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.38);
  outline-offset: -3px;
}

.quick-label {
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.quick-info span:last-child {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-light {
  background: linear-gradient(180deg, #f1f4ff, var(--soft));
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.services-section-inner {
  width: min(1120px, 100%);
}

.section-heading {
  max-width: 700px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.booking-heading {
  display: grid;
  gap: 16px;
}

.booking-heading p {
  max-width: 620px;
  margin: 0;
}

.booking-details {
  margin-top: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 215, 236, 0.82);
  border-radius: 20px;
  background: rgba(255, 254, 254, 0.76);
  box-shadow: 0 22px 58px rgba(26, 31, 76, 0.075);
  color: var(--muted);
}

.booking-details h3 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
}

.booking-timeline {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.3vw, 24px);
}

.booking-timeline::before {
  content: none;
}

.booking-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.booking-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(255, 254, 254, 0.94);
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 900;
  transition:
    border-color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-step:hover .booking-step-number {
  border-color: rgba(212, 175, 55, 0.64);
  background: rgba(255, 250, 234, 0.95);
  color: var(--ink);
}

.booking-step-content {
  display: grid;
  gap: 5px;
  padding-top: 1px;
}

.booking-step h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.22;
}

.booking-step h4 svg {
  width: 17px;
  height: 17px;
  color: var(--sage);
  stroke-width: 1.85;
  flex: 0 0 auto;
}

.booking-step p {
  margin: 0;
  padding-left: 25px;
  max-width: 540px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.booking-priority-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  margin-top: clamp(28px, 4vw, 38px);
  padding: 18px 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  background: rgba(255, 248, 226, 0.58);
}

.booking-priority-note > svg,
.booking-priority-note > i {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--gold-deep);
}

.booking-priority-note strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.booking-priority-note p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.about-layout .section-heading {
  min-width: 0;
  max-width: 100%;
}

.about-layout .section-heading h2 {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: clamp(2.65rem, 4.2vw, 3.8rem);
  line-height: 1.02;
}

.about-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.about-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-copy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about-vignette {
  width: clamp(74px, 8vw, 96px);
  height: clamp(74px, 8vw, 96px);
  flex: 0 0 auto;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 14px 30px rgba(26, 31, 76, 0.12),
    0 0 0 7px rgba(248, 248, 255, 0.86);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
}

.about-text {
  position: relative;
  display: grid;
  gap: 18px;
  max-height: 16.5rem;
  overflow: hidden;
  transition: max-height 360ms ease;
}

.about-text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 82px;
  background: linear-gradient(180deg, rgba(255, 254, 254, 0), var(--white));
  pointer-events: none;
  transition: opacity 220ms ease;
}

.about-copy.is-expanded .about-text {
  max-height: 5000px;
}

.about-copy.is-expanded .about-text::after {
  opacity: 0;
}

.read-more-button {
  justify-self: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(248, 248, 255, 0.82);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.read-more-button:hover,
.read-more-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(146, 120, 199, 0.58);
  background: var(--white);
}

.read-more-button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.38);
  outline-offset: 3px;
}

.about-copy h3 {
  color: var(--gold-deep);
  font-size: 1.35rem;
}

.service-tabs {
  margin-top: 36px;
}

.service-tabs > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tab-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-bottom: 22px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.72);
  box-shadow: 0 12px 34px rgba(26, 31, 76, 0.07);
  scroll-margin-top: 94px;
}

.tab-controls label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px clamp(14px, 2vw, 22px);
  border: 1px solid rgba(217, 215, 236, 0.72);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 254, 254, 0.62);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition:
    color 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-panels {
  min-width: 0;
}

#tab-spirituel:checked ~ .tab-controls label[for="tab-spirituel"],
#tab-naissance:checked ~ .tab-controls label[for="tab-naissance"] {
  color: var(--charcoal);
  border-color: rgba(212, 175, 55, 0.44);
  background: linear-gradient(135deg, rgba(252, 236, 166, 0.92), rgba(232, 199, 91, 0.66));
}

#tab-naissance:checked ~ .tab-controls label[for="tab-naissance"] {
  border-color: rgba(218, 157, 188, 0.72);
  background: linear-gradient(135deg, rgba(255, 231, 243, 0.96), rgba(244, 190, 217, 0.7));
}

.service-tab-panel {
  display: none;
  min-width: 0;
}

#tab-spirituel:checked ~ .service-panels .spiritual-panel,
#tab-naissance:checked ~ .service-panels .birth-panel {
  display: block;
}

#tab-spirituel:checked ~ .service-panels .birth-panel,
#tab-naissance:checked ~ .service-panels .spiritual-panel {
  display: none !important;
}

.service-tabs .services-grid {
  margin-top: 0;
}

.services-carousel-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.34fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin: 0 0 42px;
  text-align: left;
}

.services-carousel-intro h3 {
  margin: 8px 0 0;
  max-width: 720px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.services-carousel-intro p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.service-guidance-note {
  position: relative;
  padding: 4px 0 4px 22px;
  border-left: 2px solid rgba(212, 175, 55, 0.52);
}

.service-guidance-note h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.service-guidance-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.service-guidance-note a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-deep);
  font-weight: 900;
}

.services-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.services-carousel.is-dragging {
  cursor: grabbing;
}

.services-carousel.is-manual {
  overflow-x: auto;
  cursor: auto;
  mask-image: none;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(146, 120, 199, 0.28) transparent;
}

.services-carousel.is-manual .services-grid {
  padding-bottom: 10px;
  transform: none !important;
}

.services-carousel.is-manual .service-card {
  scroll-snap-align: center;
}

.services-grid {
  display: flex;
  gap: 16px;
  width: max-content;
  margin-top: 36px;
  will-change: transform;
  transform: translate3d(var(--services-offset, 0px), 0, 0);
}

.service-card {
  --service-bg: var(--white);
  --service-accent: var(--line);
  --service-strong: var(--sage);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  flex: 0 0 clamp(292px, 22vw, 330px);
  min-height: 232px;
  padding: 20px;
  border: 1px solid var(--service-accent);
  border-radius: 14px;
  background: var(--service-bg);
  box-shadow: 0 1px 0 rgba(26, 31, 76, 0.04);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--service-accent), var(--gold) 20%);
  filter: brightness(1.015);
  box-shadow: 0 8px 18px rgba(26, 31, 76, 0.055);
}

.service-card:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.36);
  outline-offset: 4px;
}

.service-card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding-bottom: 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--service-accent), transparent 48%);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 0;
  color: var(--service-strong);
  background: transparent;
  border: 0;
}

.icon-badge svg {
  width: 21px;
  height: 21px;
}

.sun-eye-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.sun-eye-icon-pupil {
  fill: currentColor;
  stroke: none;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  text-align: center;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  font-size: 1.08rem;
  line-height: 1.16;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 9px;
  align-content: start;
  width: 100%;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
}

.service-list li {
  padding-left: 2px;
  overflow-wrap: normal;
  word-break: normal;
}

.service-guidance {
  --service-bg: #f5efff;
  --service-accent: #d8c2f7;
  --service-strong: #7c61b6;
}

.service-subconscient {
  --service-bg: #fff0f8;
  --service-accent: #f4bfdc;
  --service-strong: #b65a8f;
}

.service-creation {
  --service-bg: #fff5dc;
  --service-accent: #ecd08c;
  --service-strong: #aa7a14;
}

.service-eveil {
  --service-bg: #eef2ff;
  --service-accent: #bfcaf2;
  --service-strong: #5f78ad;
}

.service-textes {
  --service-bg: #f2f4fb;
  --service-accent: #cbd3e8;
  --service-strong: #65708f;
}

.service-amour {
  --service-bg: #fff0f3;
  --service-accent: #f2b7c5;
  --service-strong: #c65372;
}

.service-abondance {
  --service-bg: #fff8e8;
  --service-accent: #e7c875;
  --service-strong: #9f7415;
}

.service-sante {
  --service-bg: #effaf2;
  --service-accent: #b8dfc0;
  --service-strong: #4f8f5f;
}

.pricing-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: clamp(34px, 4vw, 50px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.82);
  box-shadow: 0 18px 44px rgba(26, 31, 76, 0.08);
}

.pricing-summary h3 {
  font-size: 1.34rem;
}

.pricing-summary p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-meta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-options {
  display: grid;
  gap: 8px;
}

.price-options span {
  display: grid;
  grid-template-columns: minmax(82px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 10px 12px;
  border: 1px solid rgba(217, 215, 236, 0.86);
  border-radius: 8px;
  background: rgba(248, 248, 255, 0.72);
}

.price-options small {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-options strong {
  color: var(--ink);
  font-size: 0.98rem;
  white-space: nowrap;
}

.price-options b {
  color: var(--gold-deep);
  font-size: 1.04rem;
  white-space: nowrap;
}

.audience-block {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(217, 215, 236, 0.9);
}

.audience-content {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.audience-block .section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.85rem);
}

.audience-visual {
  margin: 0;
  min-width: 0;
}

.schema-loop-visual {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: clamp(18px, 3vw, 34px) 0;
  opacity: 0.96;
}

.schema-loop-visual svg {
  width: min(460px, 100%);
  height: auto;
  overflow: visible;
}

.schema-infinity-track,
.schema-infinity-left,
.schema-infinity-possibility,
.schema-motion-path,
.schema-trail {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schema-infinity-track {
  stroke: rgba(159, 116, 21, 0.3);
  stroke-width: 10;
}

.schema-infinity-left {
  stroke: rgba(159, 116, 21, 0.22);
  stroke-width: 9;
}

.schema-infinity-possibility {
  stroke: rgba(241, 217, 128, 0.62);
  stroke-width: 9;
  filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.12));
  opacity: 0.82;
}

.schema-motion-path {
  stroke: transparent;
  stroke-width: 1;
}

.schema-trail {
  stroke: rgba(212, 175, 55, 0.72);
  stroke-width: 3.5;
  stroke-dasharray: 56 304;
  stroke-dashoffset: 360;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.2));
  opacity: 0.78;
}

.schema-label {
  fill: rgba(25, 27, 53, 0.52);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-anchor: middle;
}

.schema-label-right {
  fill: rgba(159, 116, 21, 0.68);
}

.schema-dot {
  fill: #e0bd4f;
  stroke: rgba(255, 249, 226, 0.82);
  stroke-width: 1.4;
}

.schema-loop-visual.is-visible .schema-trail {
  animation: schema-trace 8.6s linear infinite;
}

.schema-loop-visual.is-visible .schema-infinity-possibility {
  animation: schema-possibility-breathe 8.6s ease-in-out infinite;
}

@keyframes schema-trace {
  from {
    stroke-dashoffset: 360;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes schema-possibility-breathe {
  0%,
  16%,
  82%,
  100% {
    opacity: 0.72;
  }

  5%,
  92% {
    opacity: 1;
    filter: drop-shadow(0 0 9px rgba(212, 175, 55, 0.22));
  }
}

@media (prefers-reduced-motion: reduce) {
  .schema-loop-visual .schema-trail,
  .schema-loop-visual .schema-infinity-possibility {
    animation: none;
  }

  .schema-loop-visual .schema-trail {
    stroke-dasharray: 78 282;
    stroke-dashoffset: 250;
    opacity: 0.58;
  }

  .schema-loop-visual .schema-infinity-possibility {
    opacity: 0.94;
    filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.16));
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.audience-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.84);
}

.audience-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.perinatal-layout {
  display: grid;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.perinatal-hero,
.night-care {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  padding: 26px;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 254, 0.96), rgba(238, 242, 255, 0.78)),
    var(--white);
  box-shadow: 0 18px 44px rgba(26, 31, 76, 0.08);
}

.perinatal-hero h2,
.night-care h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.perinatal-hero .section-heading,
.perinatal-approach {
  grid-column: 1;
}

.perinatal-approach {
  margin-top: -28px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 215, 236, 0.82);
}

.perinatal-approach h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
}

.perinatal-approach p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.perinatal-approach a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold-deep);
  font-weight: 900;
}

.perinatal-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 22px;
  padding-top: 2px;
}

.perinatal-timeline span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.perinatal-timeline span:not(:last-child)::after {
  content: "\2192";
  margin-left: 10px;
  color: rgba(159, 116, 21, 0.68);
}

.perinatal-list {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 10px;
  align-content: center;
}

.perinatal-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 11px 13px;
  border: 1px solid rgba(217, 215, 236, 0.78);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 254, 254, 0.78);
  font-weight: 750;
}

.perinatal-list span:nth-child(1) {
  border-color: #d8c2f7;
  background: #f7f1ff;
}

.perinatal-list span:nth-child(2) {
  border-color: #efc1d4;
  background: #fff0f6;
}

.perinatal-list span:nth-child(3) {
  border-color: #efd88b;
  background: #fff8dc;
}

.perinatal-list span:nth-child(4) {
  border-color: #efc3a6;
  background: #fff1e8;
}

.perinatal-list span:nth-child(5) {
  border-color: #c6cef0;
  background: #f0f3ff;
}

.perinatal-list span:nth-child(6) {
  border-color: #cfc3d7;
  background: #f5f0f7;
}

.perinatal-list span:nth-child(7) {
  border-color: #c2ddc8;
  background: #effaf2;
}

.perinatal-list span:nth-child(8) {
  border-color: #ead3cf;
  background: #fff5f1;
}

.perinatal-list svg,
.solidarity-note svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--gold-deep);
}

.perinatal-support-card {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  width: 100%;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 26px);
  box-sizing: border-box;
  border: 1px solid rgba(217, 215, 236, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 254, 254, 0.96), rgba(255, 248, 252, 0.74)),
    var(--white);
  box-shadow: 0 18px 42px rgba(26, 31, 76, 0.07);
}

.perinatal-support-card .eyebrow {
  margin-bottom: -4px;
}

.perinatal-support-card h3,
.perinatal-start-card h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.16;
}

.perinatal-support-card h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.72rem);
}

.perinatal-support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.perinatal-support-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.perinatal-support-card li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.36;
}

.perinatal-support-card li svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--gold-deep);
  stroke-width: 1.8;
}

.perinatal-start-card {
  display: grid;
  gap: 12px;
  margin-top: 2px;
  padding: 18px;
  border: 0;
  border-radius: 8px;
  background: #fcfaf7;
  box-shadow: 0 10px 28px rgba(26, 31, 76, 0.04);
}

.perinatal-start-card h4 {
  font-size: 1rem;
}

.perinatal-start-actions {
  display: grid;
  gap: 10px;
}

.perinatal-start-actions .button {
  width: 100%;
}

.perinatal-start-actions a:not(.button) {
  justify-self: center;
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition: color 280ms ease;
}

.perinatal-start-actions a:not(.button):hover,
.perinatal-start-actions a:not(.button):focus-visible {
  color: var(--ink);
}

.perinatal-pathway {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 254, 0.96), rgba(248, 248, 255, 0.88)),
    var(--white);
  box-shadow: 0 18px 44px rgba(26, 31, 76, 0.08);
}

.perinatal-pathway-intro {
  max-width: 760px;
}

.perinatal-pathway-intro h3 {
  margin: 4px 0 12px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.98;
}

.perinatal-pathway-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.perinatal-pathway-intro small {
  display: block;
  margin-top: 10px;
  color: rgba(98, 106, 135, 0.88);
  font-weight: 750;
}

.pathway-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pathway-choice,
.parent-subchoices button {
  appearance: none;
  border: 1px solid rgba(217, 215, 236, 0.92);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 254, 254, 0.84);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease;
}

.pathway-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 16px;
  text-align: left;
}

.pathway-choice span {
  display: grid;
  gap: 4px;
}

.pathway-choice strong {
  color: var(--ink);
  line-height: 1.18;
}

.pathway-choice small {
  color: rgba(98, 106, 135, 0.86);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.3;
}

.pathway-choice svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold-deep);
}

.pathway-choice:hover,
.parent-subchoices button:hover {
  transform: translateY(-1px);
  filter: brightness(1.01);
}

.pathway-choice:focus-visible,
.parent-subchoices button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.32);
  outline-offset: 3px;
}

.pathway-choice.is-selected,
.parent-subchoices button.is-selected {
  border-color: rgba(159, 116, 21, 0.42);
  box-shadow: 0 10px 24px rgba(26, 31, 76, 0.07);
}

.choice-concevoir {
  border-color: #d8c2f7;
  background: #f7f1ff;
}

.choice-pma {
  border-color: #efc1d4;
  background: #fff0f6;
}

.choice-grossesse {
  border-color: #efd88b;
  background: #fff8dc;
}

.choice-naissance {
  border-color: #efc3a6;
  background: #fff1e8;
}

.choice-postpartum {
  border-color: #c6cef0;
  background: #f0f3ff;
}

.choice-deuil {
  border-color: #cfc3d7;
  background: #f5f0f7;
}

.choice-parent {
  border-color: #c2ddc8;
  background: #effaf2;
}

.choice-soutien {
  border-color: #ead3cf;
  background: #fff5f1;
}

.pathway-panels {
  display: grid;
}

.journey-progress {
  justify-self: start;
  padding: 7px 11px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 254, 254, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-stage {
  display: grid;
  gap: 16px;
}

.journey-stage[hidden],
.journey-result[hidden] {
  display: none;
}

.journey-stage.is-active,
.journey-result.is-active {
  animation: pathwayReveal 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.journey-stage h4 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2.4vw, 1.55rem);
}

.journey-secondary-options {
  margin-top: 0;
}

.journey-back {
  justify-self: start;
}

.pathway-panel {
  display: none;
  padding: 24px;
  border: 1px solid rgba(217, 215, 236, 0.92);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.9);
  box-shadow: 0 14px 34px rgba(26, 31, 76, 0.06);
}

.pathway-panel.is-active {
  display: block;
  animation: pathwayReveal 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pathway-panel h4 {
  margin: 4px 0 10px;
  color: var(--ink);
  font-size: clamp(1.28rem, 2.4vw, 1.78rem);
  line-height: 1.08;
}

.pathway-panel p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.pathway-panel > a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-deep);
  font-weight: 900;
}

.parent-panel {
  padding: clamp(22px, 4vw, 32px);
}

.parent-subchoice-intro p {
  max-width: 760px;
}

.parent-subchoices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.parent-subchoices button {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--muted);
  background: #f8f8ff;
  font-size: 0.88rem;
}

.parent-subchoices button.is-selected {
  color: var(--ink);
  background: #effaf2;
}

.parent-support-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.35fr);
  gap: clamp(18px, 4vw, 32px);
  margin-top: 24px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(194, 221, 200, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 250, 242, 0.76), rgba(255, 254, 254, 0.92)),
    var(--white);
}

.parent-support-card[hidden] {
  display: none;
}

.parent-support-card.is-active {
  animation: pathwayReveal 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.journey-result {
  display: grid;
  grid-template-columns: minmax(0, 0.54fr) minmax(0, 0.46fr);
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(194, 221, 200, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(239, 250, 242, 0.72), rgba(255, 254, 254, 0.94)),
    var(--white);
  box-shadow: 0 14px 34px rgba(26, 31, 76, 0.06);
}

.parent-support-content h4 {
  margin-top: 4px;
}

.journey-result .parent-support-content {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.journey-result .parent-support-content > p,
.journey-result .parent-support-content > ul {
  max-width: 620px;
}

.journey-result .parent-support-content > p,
.journey-result .parent-support-content > h4 {
  margin-block: 0;
}

.parent-card-lead {
  color: var(--ink) !important;
  font-weight: 850;
}

.parent-support-content p + p {
  margin-top: 12px;
}

.parent-support-content h5 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 1rem;
}

.parent-support-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.journey-result .parent-support-content ul {
  grid-template-columns: 1fr;
  gap: 7px;
}

.journey-result .parent-support-content > p:not(.eyebrow),
.journey-next-card p,
.journey-next-card small {
  color: var(--muted);
}

.journey-next-card h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.12;
}

.journey-selection {
  display: grid;
  gap: 9px;
}

.journey-selection h5 {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.journey-selection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journey-selection-chip {
  display: inline-flex;
  flex: 1 1 180px;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--ink);
  background: #f2f5ff;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.journey-selection-chip svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--gold-deep);
}

.journey-selection-chip[data-journey-color="conception"] {
  background: #f7f1ff;
}

.journey-selection-chip[data-journey-color="grossesse"] {
  background: #fff8dc;
}

.journey-selection-chip[data-journey-color="naissance"] {
  background: #fff1e8;
}

.journey-selection-chip[data-journey-color="deuil"] {
  background: #f5f0f7;
}

.journey-selection-chip[data-journey-color="parent"] {
  background: #effaf2;
}

.journey-selection-chip[data-journey-color="autre"] {
  background: #fff5f1;
}

.journey-copy-box {
  display: grid;
  gap: 8px;
}

.journey-copy-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.journey-copy-box textarea {
  width: 100%;
  min-height: 104px;
  resize: vertical;
  padding: 12px 52px 12px 12px;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 254, 254, 0.86);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.45;
}

.journey-summary-field {
  position: relative;
}

.journey-copy-button {
  position: absolute;
  top: 9px;
  right: 9px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(217, 215, 236, 0.86);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 5px 14px rgba(26, 31, 76, 0.08);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.journey-copy-button:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 7px 18px rgba(26, 31, 76, 0.12);
}

.journey-copy-button:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.42);
  outline-offset: 3px;
}

.journey-copy-button svg {
  width: 16px;
  height: 16px;
}

.journey-copy-status {
  min-height: 1.1em;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 850;
}

.journey-note {
  margin-top: 16px !important;
}

.journey-rate-card {
  display: grid;
  gap: 7px;
  max-width: 620px;
  margin-top: 2px;
  padding: 16px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 250, 235, 0.82), rgba(248, 248, 255, 0.9));
  box-shadow: inset 3px 0 0 rgba(212, 175, 55, 0.72);
}

.journey-rate-card[hidden] {
  display: none;
}

.journey-rate-card > span {
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-rate-card strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.1;
}

.journey-rate-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.parent-price-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 254, 254, 0.96), rgba(255, 248, 226, 0.7)),
    var(--white);
}

.journey-next-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 28px);
  border: 0;
  background: #fcfaf7;
  box-shadow: 0 14px 34px rgba(26, 31, 76, 0.05);
}

.journey-next-card > p {
  margin: 0;
  line-height: 1.55;
}

.journey-next-card > .button {
  width: 100%;
  white-space: nowrap;
}

.whatsapp-icon {
  fill: none;
  stroke: var(--gold-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 560px) {
  .journey-selection-chips {
    display: grid;
    grid-template-columns: 1fr;
  }

  .journey-selection-chip {
    width: 100%;
  }

  .journey-next-card > .button {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-copy-button {
    transition: none;
  }

  .journey-copy-button:hover {
    transform: none;
  }
}

.parent-price-card strong {
  color: var(--gold-deep);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.06;
}

.parent-price-card small {
  color: rgba(98, 106, 135, 0.9);
  font-weight: 760;
}

.parent-info-note {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
  align-items: flex-start;
  margin-top: 0;
  padding: 14px;
  border: 1px solid rgba(198, 206, 240, 0.78);
  border-radius: 8px;
  background: #f2f5ff;
  font-size: 0.9rem;
}

.parent-info-note[hidden] {
  display: none;
}

.parent-info-note svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--sage);
}

@keyframes pathwayReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.perinatal-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 3vw, 34px);
  width: 100%;
  min-width: 0;
}

.offer-card,
.night-price-card,
.solidarity-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.9);
  box-shadow: 0 14px 34px rgba(26, 31, 76, 0.07);
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: clamp(16px, 1.8vw, 20px);
  min-width: 0;
}

.offer-card h3,
.night-price-card h3 {
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.18;
}

.offer-card .eyebrow,
.night-price-card .eyebrow {
  font-size: 0.72rem;
}

.offer-card p,
.offer-card li {
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.52;
}

.offer-card-featured {
  border-color: rgba(212, 175, 55, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 254, 254, 0.96), rgba(255, 250, 233, 0.7)),
    var(--white);
}

.offer-card p,
.offer-card li,
.night-care p,
.solidarity-note p,
.perinatal-disclaimer {
  color: var(--muted);
}

.offer-card p,
.night-care p,
.solidarity-note p {
  margin: 0;
}

.offer-price,
.night-price-card strong {
  color: var(--gold-deep);
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1;
}

.offer-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.offer-card .button {
  margin-top: auto;
}

.editable-details {
  display: grid;
  gap: 8px;
}

.editable-details span {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(217, 215, 236, 0.84);
  border-radius: 8px;
  background: rgba(248, 248, 255, 0.72);
}

.editable-details small {
  color: var(--rose);
  font-weight: 900;
  text-transform: uppercase;
}

.editable-details strong {
  color: var(--ink);
}

.night-care {
  position: relative;
  overflow: hidden;
  margin-top: clamp(28px, 3vw, 38px);
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  padding: clamp(20px, 2.6vw, 26px);
  border-color: rgba(156, 171, 218, 0.24);
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 215, 118, 0.15), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(184, 196, 240, 0.16), transparent 28%),
    linear-gradient(135deg, #151a3a 0%, #1b2350 58%, #24265f 100%);
  box-shadow: 0 24px 58px rgba(24, 29, 70, 0.18);
  color: rgba(255, 253, 248, 0.9);
  transition:
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 480ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.night-care:hover,
.night-care:focus-within {
  transform: translateY(-2px) scale(1.003);
  border-color: rgba(255, 253, 248, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 253, 248, 0.12),
    0 26px 58px rgba(18, 23, 53, 0.24),
    0 0 44px rgba(220, 225, 255, 0.18);
}

.night-care::after {
  content: "";
  position: absolute;
  right: clamp(22px, 5vw, 84px);
  top: clamp(18px, 4vw, 42px);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 246, 204, 0.26), rgba(255, 246, 204, 0) 68%);
  pointer-events: none;
}

.night-care .section-heading {
  position: relative;
  z-index: 1;
}

.night-title-row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 16px);
  margin-top: 2px;
  margin-bottom: 18px;
}

.night-symbol {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(42px, 4.6vw, 48px);
  height: clamp(42px, 4.6vw, 48px);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: #f6d876;
}

.night-symbol svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7;
}

.night-care .eyebrow {
  color: rgba(247, 215, 118, 0.9);
}

.night-care h2 {
  color: #fffdf8;
}

.night-care .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.62;
}

.night-price-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  padding: clamp(20px, 2.2vw, 26px);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 253, 248, 0.68);
  box-shadow: 0 18px 44px rgba(18, 23, 53, 0.13);
  backdrop-filter: blur(10px);
}

.night-price-card .eyebrow {
  position: absolute;
  top: clamp(20px, 2.2vw, 26px);
  left: clamp(20px, 2.2vw, 26px);
  color: #1b2350;
  font-weight: 800;
}

.night-price-card strong {
  color: #6676ad;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.night-price-card .button {
  box-sizing: border-box;
  justify-self: center;
  width: min(100%, 260px);
  margin-top: 4px;
  color: var(--charcoal);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 280ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.night-price-card .button:hover,
.night-price-card .button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.035);
  box-shadow: 0 14px 28px rgba(159, 116, 21, 0.18);
}

.night-care .area-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 650;
  justify-self: center;
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
  white-space: nowrap;
}

.night-care .area-note svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--charcoal);
}

.solidarity-note {
  position: relative;
  display: grid;
  justify-self: center;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  gap: 0;
  width: min(100%, 660px);
  min-height: clamp(456px, 41vw, 536px);
  margin: 22px auto 0;
  padding: clamp(102px, 7.8vw, 122px) clamp(88px, 7.2vw, 118px) clamp(138px, 9.2vw, 154px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.solidarity-note::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #e5b7c7;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 560'%3E%3Cpath fill='%23000' d='M320 58C330 58 341 49 350 41C382 13 420 1 474 1C570 9 640 76 640 168C640 253 598 324 528 404C467 474 375 543 334 558C325 562 315 562 306 558C265 543 173 474 112 404C42 324 0 253 0 168C0 76 70 9 166 1C220-5 258 13 290 41C299 49 310 58 320 58Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 560'%3E%3Cpath fill='%23000' d='M320 58C330 58 341 49 350 41C382 13 420 1 474 1C570 9 640 76 640 168C640 253 598 324 528 404C467 474 375 543 334 558C325 562 315 562 306 558C265 543 173 474 112 404C42 324 0 253 0 168C0 76 70 9 166 1C220-5 258 13 290 41C299 49 310 58 320 58Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transform-origin: center;
  filter: drop-shadow(0 18px 34px rgba(121, 74, 104, 0.12));
  transition:
    filter 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.solidarity-note::after {
  content: none;
}

.solidarity-note:hover::before,
.solidarity-note:focus-within::before {
  animation: solidarity-heartbeat 1.85s cubic-bezier(0.34, 0, 0.2, 1) infinite;
  filter: drop-shadow(0 20px 38px rgba(121, 74, 104, 0.16));
}

.solidarity-note:hover::after,
.solidarity-note:focus-within::after {
  animation: solidarity-heartbeat 1.85s cubic-bezier(0.34, 0, 0.2, 1) infinite;
}

@keyframes solidarity-heartbeat {
  0% {
    transform: scale(1);
  }

  18% {
    transform: scale(1.036);
  }

  32% {
    transform: scale(1.012);
  }

  52% {
    transform: scale(1.048);
  }

  72%,
  100% {
    transform: scale(1);
  }
}

.solidarity-note > * {
  position: relative;
  z-index: 1;
}

.solidarity-note h3 {
  margin: 0 0 11px;
  color: rgba(255, 254, 254, 0.96);
  font-size: clamp(1.08rem, 1.7vw, 1.24rem);
  font-weight: 600;
  line-height: 1.16;
  text-shadow: 0 1px 2px rgba(103, 59, 78, 0.24);
}

.solidarity-note p {
  max-width: 350px;
  margin-inline: auto;
  color: rgba(255, 254, 254, 0.88);
  font-size: clamp(0.78rem, 0.92vw, 0.88rem);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(103, 59, 78, 0.22);
}

.solidarity-button {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 132px;
  min-height: 112px;
  margin: 20px auto 0;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  color: #a8647f;
  background: #fffdfb;
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 190'%3E%3Cpath fill='%23000' d='M110 24C104 24 99 18 93 13C83 5 71 2 58 2C25 2 0 27 0 60C0 99 33 134 88 176C97 183 104 188 107 189C109 190 111 190 113 189C116 188 123 183 132 176C187 134 220 99 220 60C220 27 195 2 162 2C149 2 137 5 127 13C121 18 116 24 110 24Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 190'%3E%3Cpath fill='%23000' d='M110 24C104 24 99 18 93 13C83 5 71 2 58 2C25 2 0 27 0 60C0 99 33 134 88 176C97 183 104 188 107 189C109 190 111 190 113 189C116 188 123 183 132 176C187 134 220 99 220 60C220 27 195 2 162 2C149 2 137 5 127 13C121 18 116 24 110 24Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  filter: drop-shadow(0 8px 16px rgba(121, 74, 104, 0.11));
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.12;
  transition:
    filter 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 360ms ease;
}

.solidarity-button:hover,
.solidarity-button:focus-visible {
  transform: translateY(-1px) scale(1.025);
  filter:
    drop-shadow(0 0 12px rgba(255, 254, 254, 0.7))
    drop-shadow(0 0 20px rgba(255, 244, 250, 0.46))
    brightness(1.035);
  background: #ffffff;
}

.solidarity-button:focus-visible {
  outline: 3px solid rgba(255, 254, 254, 0.58);
  outline-offset: 3px;
}

.perinatal-disclaimer {
  display: inline-flex;
  grid-column: 1 / -1;
  justify-self: stretch;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(217, 215, 236, 0.58);
  color: var(--muted);
  font-weight: 750;
  text-align: left;
}

.perinatal-disclaimer svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--gold-deep);
}

.birth-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 22px;
  align-items: center;
  margin-top: 0;
  padding: 26px;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 254, 0.94), rgba(238, 242, 255, 0.78)),
    var(--white);
  box-shadow: 0 18px 44px rgba(26, 31, 76, 0.08);
}

.birth-service h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.birth-service p {
  margin: 16px 0 0;
  color: var(--muted);
}

.birth-service small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 700;
}

.birth-price {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.9);
}

.birth-price span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.birth-price strong {
  color: var(--gold-deep);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
}

.birth-price p {
  margin: 0;
  font-size: 0.95rem;
}

.booking-layout,
.payment-layout,
.closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 42px);
  align-items: stretch;
}

.booking-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 1fr);
  gap: clamp(40px, 5vw, 56px);
  align-items: start;
}

.booking-panel,
.payment-list {
  display: grid;
  gap: 12px;
}

.booking-panel {
  gap: 16px;
  align-self: start;
  margin-top: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(217, 215, 236, 0.82);
  border-radius: 20px;
  background: rgba(255, 254, 254, 0.76);
  box-shadow: 0 22px 58px rgba(26, 31, 76, 0.075);
}

.booking-panel .eyebrow {
  margin: 0 0 -2px;
}

.booking-panel h3 {
  max-width: 360px;
  color: var(--ink);
  font-size: clamp(1.32rem, 2vw, 1.68rem);
  line-height: 1.08;
}

.booking-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.booking-panel .button.primary {
  min-height: 54px;
  margin-top: 8px;
  box-shadow: 0 12px 24px rgba(159, 116, 21, 0.14);
}

.booking-email-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-email-option > span {
  color: inherit;
}

.booking-email-option a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gold-deep);
  font-weight: 850;
  text-decoration: none;
}

.booking-email-option a:hover,
.booking-email-option a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-email-option svg {
  width: 15px;
  height: 15px;
}

.booking-confirmation-note {
  margin: 2px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(217, 215, 236, 0.84);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-row:hover,
.payment-row:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(146, 120, 199, 0.58);
  background: rgba(255, 254, 254, 0.94);
}

.payment-row:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.38);
  outline-offset: 3px;
}

.payment-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.payment-row strong {
  color: var(--sage);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.testimonials-heading h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.testimonials-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 254, 254, 0.74);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
}

.testimonials-controls {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.55fr) auto;
  gap: 18px;
  align-items: end;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.74);
  box-shadow: 0 12px 30px rgba(26, 31, 76, 0.05);
}

.testimonials-sort-control,
.testimonials-filters {
  display: grid;
  gap: 9px;
}

.testimonials-sort-control > span,
.testimonials-filters > span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.testimonials-sort-control select {
  width: 100%;
  min-height: 44px;
  padding: 10px 36px 10px 12px;
  border: 1px solid rgba(146, 120, 199, 0.26);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.testimonials-sort-control select:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.38);
  outline-offset: 3px;
}

.testimonials-filters > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonials-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  margin: 0;
  padding: 9px 12px;
  font-size: 0.84rem;
}

.testimonials-filter svg {
  width: 16px;
  height: 16px;
}

.testimonials-filter[aria-pressed="true"] {
  border-color: rgba(212, 175, 55, 0.58);
  color: var(--ink);
  background: rgba(255, 250, 230, 0.88);
  box-shadow: 0 8px 18px rgba(159, 116, 21, 0.1);
}

.testimonials-results-count {
  align-self: end;
  min-width: 124px;
  min-height: 44px;
  margin: 0;
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 254, 254, 0.9);
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.testimonial-card {
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.testimonial-card[hidden] {
  display: none;
}

.testimonial-card.is-hidden {
  display: none;
}

.testimonials-grid.is-preview-mode {
  gap: 18px;
}

.testimonial-card.is-preview-bubble {
  position: relative;
  gap: 10px;
  min-height: 0;
  padding: 20px 22px;
  border-color: rgba(217, 215, 236, 0.7);
  border-radius: 20px;
  background: rgba(255, 254, 254, 0.9);
  box-shadow: 0 16px 36px rgba(26, 31, 76, 0.06);
}

.testimonial-card.is-preview-bubble::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -14px;
  width: 28px;
  height: 28px;
  background: inherit;
  border-right: 1px solid rgba(217, 215, 236, 0.7);
  border-bottom: 1px solid rgba(217, 215, 236, 0.7);
  transform: rotate(45deg);
}

.testimonial-card.is-preview-bubble:nth-of-type(even)::after {
  right: auto;
  left: 24px;
  border-right: 0;
  border-bottom: 1px solid rgba(217, 215, 236, 0.7);
  border-left: 1px solid rgba(217, 215, 236, 0.7);
}

.testimonial-card.is-preview-bubble > svg:first-child {
  display: none;
}

.testimonial-card.is-preview-bubble strong {
  order: 1;
  margin: 0;
  font-size: 1.04rem;
}

.testimonial-card.is-preview-bubble p {
  display: none;
}

.testimonial-card.is-preview-bubble p:first-of-type {
  order: 2;
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial-card.is-preview-bubble p:first-of-type::after {
  content: " [...]";
  color: var(--gold-deep);
  font-weight: 900;
  white-space: nowrap;
}

.testimonial-card.is-preview-bubble time,
.testimonial-card.is-preview-bubble .proof-button {
  display: none;
}

.testimonials-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.testimonials-toggle {
  min-width: min(100%, 220px);
}

.testimonial-form-shell {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-top: 24px;
}

.testimonial-form-toggle {
  min-width: min(100%, 270px);
  justify-content: center;
  box-shadow: 0 16px 34px rgba(157, 120, 22, 0.2);
}

.testimonial-form-wrapper {
  width: 100%;
}

.testimonial-form-wrapper[hidden] {
  display: none;
}

.testimonial-form-shell.is-open .testimonial-form-toggle {
  background: linear-gradient(135deg, #f4d76f, #c69b1c);
}

.testimonial-card-featured {
  grid-column: auto;
}

.testimonial-card svg {
  width: 26px;
  height: 26px;
  color: var(--gold-deep);
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.testimonial-card strong {
  margin-top: auto;
  color: var(--ink);
}

.testimonial-card time {
  margin-top: -10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 940px) {
  .testimonials-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .testimonials-results-count {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .testimonials-controls {
    padding: 16px;
  }

  .testimonials-filters > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonials-filter {
    width: 100%;
  }
}

.archives-layout {
  display: grid;
  gap: 28px;
}

.archives-layout > .section-heading {
  max-width: 820px;
}

.archives-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.archive-panel {
  display: grid;
  grid-template-rows: 54px minmax(190px, auto) auto;
  align-content: start;
  gap: 18px;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.archive-panel-link {
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-panel-link .archive-icon {
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .archive-panel-link:hover {
    transform: translateY(-2px);
    border-color: rgba(146, 120, 199, 0.42);
    box-shadow: 0 24px 58px rgba(26, 31, 76, 0.14);
  }

  .archive-panel-link:hover .archive-icon {
    transform: translateY(-1px);
  }
}

.archive-panel-link:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.5);
  outline-offset: 5px;
  border-color: rgba(212, 175, 55, 0.55);
}

.archive-panel-personal {
  background:
    linear-gradient(135deg, rgba(146, 120, 199, 0.16), rgba(255, 254, 254, 0.92)),
    var(--white);
}

.archive-panel-guided {
  background:
    linear-gradient(135deg, rgba(95, 120, 173, 0.16), rgba(255, 254, 254, 0.92)),
    var(--white);
}

.archive-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 254, 254, 0.78);
  color: var(--sage);
  box-shadow: inset 0 0 0 1px rgba(217, 215, 236, 0.92);
}

.archive-icon svg {
  width: 24px;
  height: 24px;
}

.archive-panel-body {
  display: grid;
  align-content: start;
}

.archive-kicker {
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.archive-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  align-self: start;
}

.card-title {
  min-height: 82px;
}

.archive-panel p:not(.archive-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  align-self: start;
}

.card-description {
  min-height: 120px;
}

.archive-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  align-self: end;
}

.archive-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(146, 120, 199, 0.24);
  border-radius: 999px;
  background: rgba(255, 254, 254, 0.72);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.manifestation-section-heading {
  max-width: 760px;
  margin-top: 12px;
  padding-top: 8px;
  scroll-margin-top: 96px;
}

.manifestation-section-heading h3 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.manifestation-section-heading p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.manifestation-section-heading-guided {
  max-width: 1040px;
  margin-top: 22px;
}

.manifestation-section-heading-guided h3 {
  white-space: nowrap;
  font-size: clamp(1.7rem, 2.65vw, 2.28rem);
}

.archive-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.archive-types-guided {
  grid-template-columns: minmax(0, 1fr);
}

.archive-types article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 22px;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.72);
}

.manifestation-card {
  box-shadow: 0 18px 42px rgba(26, 31, 76, 0.08);
}

.manifestation-card.is-collapsible {
  align-content: start;
  min-height: 470px;
}

.manifestation-card.is-expanded {
  grid-column: 1 / -1;
}

.manifestation-card-personal {
  border-color: rgba(146, 120, 199, 0.24);
  background:
    linear-gradient(180deg, rgba(146, 120, 199, 0.12), rgba(255, 254, 254, 0.9)),
    var(--white);
}

.manifestation-card-guided {
  border-color: rgba(212, 175, 55, 0.34);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(255, 254, 254, 0.92)),
    var(--white);
}

.manifestation-card-infinity {
  place-items: center;
  text-align: center;
  border-color: rgba(212, 175, 55, 0.34);
  background:
    radial-gradient(circle at center top, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(146, 120, 199, 0.1), rgba(255, 254, 254, 0.94)),
    var(--white);
}

.manifestation-card-infinity p {
  max-width: 680px;
}

.manifestation-card-guided-continuation {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-block: clamp(30px, 5vw, 46px);
}

.manifestation-card-guided-continuation strong {
  display: grid;
  gap: 12px;
  max-width: 680px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.5;
}

.manifestation-card-guided-continuation strong::before {
  content: "";
  justify-self: center;
  width: 64px;
  height: 1px;
  background: rgba(212, 175, 55, 0.58);
}

.infinity-symbol {
  display: block;
  width: clamp(140px, 28vw, 190px);
  height: auto;
  margin: -8px auto -4px;
  overflow: visible;
}

.infinity-track,
.infinity-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infinity-track {
  stroke: rgba(159, 116, 21, 0.38);
  stroke-width: 10;
}

.infinity-glow {
  stroke: #f1d980;
  stroke-width: 9;
  stroke-dasharray: 74 286;
  stroke-dashoffset: 360;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.36));
  animation: infinity-flow 4.4s linear infinite;
}

@keyframes infinity-flow {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .infinity-glow {
    animation: none;
    stroke-dashoffset: 0;
  }

  .story-content,
  .story-toggle,
  .service-card,
  .archive-panel-link,
  .archive-panel-link .archive-icon,
  .light-portal-button,
  .light-portal-button::after,
  .button-sun-halo,
  .button-sun-halo::before,
  .button-sun-halo::after,
  .light-transition-overlay {
    transition: none;
  }

  .button-sun-halo,
  .button-sun-halo::before,
  .button-sun-halo::after,
  .light-transition-overlay,
  .light-transition-overlay::before,
  .light-transition-overlay::after,
  .solidarity-note:hover::before,
  .solidarity-note:hover::after,
  .solidarity-note:focus-within::after,
  .solidarity-note:focus-within::before {
    animation: none;
  }

  .solidarity-button {
    transition: none;
  }

  .solidarity-button:hover,
  .solidarity-button:focus-visible {
    transform: none;
  }

  .story-toggle:hover,
  .story-toggle:focus-visible,
  .service-card:hover,
  .service-card:focus-visible,
  .archive-panel-link:hover,
  .night-care:hover,
  .night-care:focus-within,
  .light-portal-button:hover,
  .light-portal-button:focus-visible {
    transform: none;
  }

  .services-carousel {
    overflow-x: auto;
    mask-image: none;
    scroll-snap-type: x mandatory;
  }

  .services-carousel .services-grid {
    transform: none !important;
  }

  .services-carousel .service-card {
    scroll-snap-align: center;
  }
}

.manifestation-badge {
  justify-self: start;
  padding: 6px 10px;
  border: 1px solid rgba(146, 120, 199, 0.22);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 254, 254, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manifestation-badge-opportunity {
  border-color: rgba(212, 169, 40, 0.34);
  color: #8a6504;
  background: #fff2bd;
}

.manifestation-badge-exercise {
  border-color: rgba(146, 120, 199, 0.3);
  color: #6b5599;
  background: #eee7ff;
}

.manifestation-badge-affirmation {
  border-color: rgba(93, 151, 135, 0.3);
  color: #46786d;
  background: #e5f4ef;
}

.manifestation-badge-object {
  border-color: rgba(198, 137, 161, 0.3);
  color: #9b5d77;
  background: #fde9f1;
}

.manifestation-badge-timed {
  border-color: rgba(115, 149, 199, 0.3);
  color: #4d6f9f;
  background: #e8f0ff;
}

.manifestation-badge-contact {
  border-color: rgba(208, 151, 92, 0.3);
  color: #9a6a35;
  background: #fff0dc;
}

.manifestation-badge-gift {
  border-color: rgba(218, 157, 188, 0.34);
  color: #8f5872;
  background: #ffeaf3;
}

.manifestation-badge-material {
  border-color: rgba(132, 170, 146, 0.34);
  color: #527760;
  background: #eaf7ef;
}

.manifestation-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.manifestation-card-infinity .manifestation-badge {
  justify-self: center;
}

.manifestation-card h3 {
  color: var(--ink);
  font-size: clamp(1.26rem, 2vw, 1.7rem);
}

.manifestation-card time {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.manifestation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.manifestation-quote {
  margin: 4px 0 0;
  padding: 18px;
  border-left: 3px solid rgba(212, 175, 55, 0.68);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 254, 254, 0.72);
  font-size: 1rem;
  font-weight: 650;
}

.story-content {
  position: relative;
  display: grid;
  gap: 12px;
  max-height: 11.2rem;
  overflow: hidden;
  transition: max-height 380ms ease;
}

.story-content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(255, 254, 254, 0), rgba(255, 254, 254, 0.96));
  pointer-events: none;
  transition: opacity 220ms ease;
}

.manifestation-card.is-expanded .story-content {
  max-height: var(--story-expanded-height, 1400px);
}

.manifestation-card.is-expanded .story-content::after {
  opacity: 0;
}

.story-toggle {
  justify-self: start;
  min-height: 40px;
  margin-top: 2px;
  padding: 9px 12px;
  border: 1px solid rgba(146, 120, 199, 0.26);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 254, 254, 0.76);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms cubic-bezier(0.22, 1, 0.36, 1),
    background 300ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-toggle:hover,
.story-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(146, 120, 199, 0.58);
  background: var(--white);
}

.story-toggle:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.36);
  outline-offset: 3px;
}

.proof-button {
  justify-self: start;
  color: var(--ink);
  border-color: rgba(212, 175, 55, 0.46);
  background: rgba(255, 250, 230, 0.78);
}

.proof-preview-button,
.testimonial-proof-button {
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  margin-top: 0;
  padding: 9px 14px;
  color: var(--ink);
  border-color: rgba(212, 175, 55, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 238, 174, 0.92), rgba(212, 175, 55, 0.72));
  box-shadow: 0 8px 18px rgba(159, 116, 21, 0.12);
}

.proof-preview-button svg,
.testimonial-proof-button svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.proof-preview-button:hover,
.proof-preview-button:focus-visible,
.testimonial-proof-button:hover,
.testimonial-proof-button:focus-visible {
  border-color: rgba(159, 116, 21, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 244, 203, 0.98), rgba(212, 175, 55, 0.82));
  box-shadow: 0 10px 22px rgba(159, 116, 21, 0.14);
}

.proof-modal[hidden] {
  display: none;
}

.proof-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
}

.proof-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 23, 53, 0.66);
  backdrop-filter: blur(4px);
}

.proof-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
  max-height: min(86vh, 760px);
  padding: clamp(18px, 3vw, 30px);
  overflow: auto;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(18, 23, 53, 0.28);
}

.proof-dialog h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.proof-dialog img {
  width: 100%;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 8px;
}

.proof-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(217, 215, 236, 0.9);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 254, 254, 0.9);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  cursor: pointer;
}

.proof-close:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.5);
  outline-offset: 3px;
}

.modal-open {
  overflow: hidden;
}

.archive-types strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.archive-types span:not(.manifestation-badge) {
  color: var(--muted);
  font-size: 0.94rem;
}

.testimonial-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 254, 0.86);
  box-shadow: var(--shadow);
}

.testimonial-form-heading {
  max-width: 720px;
}

.testimonial-form-heading h3 {
  font-size: 1.34rem;
}

.testimonial-form-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.testimonial-form textarea {
  min-height: 150px;
  resize: vertical;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
  outline: 2px solid rgba(146, 120, 199, 0.32);
  border-color: rgba(146, 120, 199, 0.74);
}

.consent-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.consent-line input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.hidden-field {
  display: none;
}

.bank-transfer {
  align-items: flex-start;
  flex-direction: column;
  cursor: default;
}

.bank-transfer:hover {
  transform: none;
  border-color: var(--line);
}

.bank-lines {
  display: grid;
  gap: 8px;
  width: 100%;
  padding-top: 2px;
}

.bank-lines p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing {
  color: var(--white);
  background: var(--charcoal);
}

.closing .section-heading,
.closing-inner div {
  max-width: 780px;
}

.closing p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.76);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
  background:
    linear-gradient(135deg, rgba(238, 242, 255, 0.96), rgba(248, 248, 255, 0.92)),
    var(--paper);
}

.thanks-panel {
  width: min(680px, 100%);
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.thanks-panel p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-layout .section-heading {
    max-width: 820px;
  }

  .about-layout .section-heading h2 {
    max-width: 820px;
    font-size: clamp(2.35rem, 6.5vw, 3.8rem);
  }

  .about-content {
    max-width: 820px;
  }
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    padding-bottom: 60px;
  }

  .quick-info,
  .services-grid,
  .services-carousel-intro,
  .pricing-summary,
  .audience-content,
  .audience-grid,
  .perinatal-hero,
  .pathway-choice-grid,
  .parent-support-card,
  .journey-result,
  .parent-support-content ul,
  .perinatal-offers,
  .night-care,
  .birth-service,
  .form-grid,
  .about-layout,
  .about-content,
  .testimonials-grid,
  .archives-columns,
  .archive-types,
  .booking-cards,
  .booking-layout,
  .payment-layout,
  .closing-inner {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .tab-controls {
    display: grid;
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .services-carousel {
    overflow-x: auto;
    mask-image: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .services-carousel .services-grid {
    gap: 14px;
    padding-bottom: 10px;
    transform: none !important;
  }

  .services-carousel .service-card {
    flex-basis: min(86vw, 340px);
    min-height: 255px;
    scroll-snap-align: start;
  }

  .service-guidance-note {
    padding-top: 18px;
    padding-left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.38);
    border-left: 0;
  }

  .perinatal-hero .section-heading,
  .perinatal-approach,
  .perinatal-list,
  .perinatal-support-card {
    grid-column: auto;
    grid-row: auto;
  }

  .perinatal-approach {
    margin-top: 0;
  }

  .night-price-card .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

  .archive-panel,
  .archive-panel-body {
    grid-template-rows: none;
  }

  .manifestation-section-heading-guided h3 {
    white-space: normal;
  }

  .schema-loop-visual {
    min-height: 260px;
  }

  .booking-layout {
    gap: 32px;
  }

  .booking-cards {
    gap: 24px;
  }

  .booking-panel {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .services-carousel {
    display: none;
  }

  .archives-layout {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .archives-layout > *,
  .archives-columns,
  .archive-types,
  .archive-panel,
  .archive-panel-body,
  .manifestation-card {
    min-width: 0;
    max-width: 100%;
  }

  .archives-layout > .section-heading {
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .archives-layout .single-line-title {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .archive-panel {
    width: 100%;
    padding: clamp(20px, 6vw, 28px);
  }

  .archive-icon,
  .archive-kicker,
  .archive-panel h3 {
    justify-self: center;
    text-align: center;
  }

  .archive-panel h3,
  .archive-panel p,
  .manifestation-card h3,
  .manifestation-card p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .archive-badges {
    justify-content: center;
  }

  .manifestation-section-heading {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .manifestation-section-heading h3,
  .manifestation-section-heading p,
  .manifestation-card > h3,
  .manifestation-card > time {
    max-width: 100%;
    text-align: center;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .archive-types article {
    width: 100%;
    padding: clamp(18px, 5.5vw, 22px);
  }

  .manifestation-badges {
    justify-content: center;
  }

  .manifestation-card > .manifestation-badge,
  .manifestation-card > time,
  .manifestation-card > .story-toggle,
  .manifestation-card > .proof-button,
  .manifestation-card > .proof-preview-button {
    justify-self: center;
  }

  .manifestation-card-guided-continuation strong {
    max-width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 980px);
    padding-top: 118px;
    padding-bottom: 62px;
  }

  .hero-choice-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .hero-choice-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 23, 53, 0.84), rgba(45, 44, 105, 0.48)),
      linear-gradient(0deg, rgba(18, 23, 53, 0.8), rgba(146, 120, 199, 0.16) 46%);
  }

  .brand span:last-child {
    max-width: 210px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-content {
    width: min(100% - 28px, 980px);
    padding-top: 116px;
    padding-bottom: 54px;
  }

  .hero-choice-grid {
    grid-template-columns: 1fr;
  }

  .hero-choice-card {
    min-height: auto;
    padding: 17px;
  }

  .night-title-row {
    align-items: center;
    gap: 12px;
  }

  .night-symbol {
    width: 42px;
    height: 42px;
  }

  .hero-unsure {
    align-items: stretch;
  }

  h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .quick-info div,
  .quick-info-card {
    min-height: 118px;
  }

  .tab-controls {
    grid-template-columns: 1fr;
  }

  .single-line-title {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  #reservation-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .booking-details,
  .booking-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .booking-timeline {
    gap: 20px;
  }

  .booking-timeline::before {
    left: 19px;
  }

  .booking-step {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-step-number {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .booking-step h4 {
    font-size: 1rem;
  }

  .booking-step p {
    font-size: 0.88rem;
  }

  .about-copy {
    padding: 20px;
  }

  .about-copy-header {
    align-items: flex-start;
    gap: 14px;
  }

  .about-vignette {
    width: 72px;
    height: 72px;
  }

  .payment-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-options {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .audience-block {
    margin-top: 48px;
    padding-top: 40px;
  }

  .schema-loop-visual {
    min-height: 220px;
    margin-top: 8px;
  }

  .birth-service {
    padding: 20px;
  }

  .perinatal-hero,
  .night-care {
    padding: 20px;
  }

  .perinatal-pathway {
    padding: 20px;
  }

  .pathway-choice {
    min-height: 58px;
  }

  .parent-subchoices {
    display: grid;
    grid-template-columns: 1fr;
  }

  .parent-price-card .button {
    width: 100%;
  }

  .offer-card,
  .night-price-card,
  .solidarity-note {
    padding: 18px;
  }

  .solidarity-note {
    width: 100%;
    min-height: 350px;
    padding: 62px 42px 58px;
  }

  .solidarity-note::before {
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .solidarity-note p {
    max-width: 292px;
    font-size: 0.76rem;
    line-height: 1.46;
  }

  .solidarity-button {
    width: 132px;
    min-height: 112px;
    margin-top: 12px;
    font-size: 0.78rem;
  }

  .perinatal-disclaimer {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .editable-details span {
    grid-template-columns: 1fr;
  }
}
