:root {
  --lavender: #b89be9;
  --lavender-deep: #8e6ed8;
  --lavender-soft: #efe7fb;
  --cream: #ecd98c;
  --cream-soft: #f7efcf;
  --ink: #1f1442;
  --ink-soft: #2a1e57;
  --surface: #fbf8ff;
  --surface-2: #f3ecff;
  --line: rgba(25, 15, 61, 0.12);
  --text: #211441;
  --muted: rgba(33, 20, 65, 0.72);
  --shadow: 0 20px 50px rgba(80, 52, 145, 0.12);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(178,149,230,.22), transparent 32%),
    linear-gradient(180deg, #fcfbff 0%, #f6f0ff 60%, #f8f4ff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow-container { width: min(860px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 88px 0; }
.center { text-align: center; }
.mt-32 { margin-top: 32px; }

h1,h2,h3,h4 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: .96;
  color: var(--ink);
}
h1 { font-size: clamp(3.2rem, 7vw, 6.2rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h3 { font-size: clamp(1.55rem, 2.3vw, 2rem); }
p,li,summary { font-size: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,248,255,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lavender-deep), var(--lavender));
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 1.15rem; }
.brand small { display: block; font-size: .84rem; color: var(--muted); }
.menu,
.footer-menu,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}
.menu a,
.footer-menu a,
.footer-links a { color: var(--ink-soft); }
.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lavender-deep), #8d5cf6);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(141,92,246,.28);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--lavender-soft);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .94rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lead,
.section-heading p,
.booking-intro { color: var(--muted); }
.lead { max-width: 60ch; font-size: 1.1rem; }
.section-heading { margin-bottom: 28px; }
.section-heading.narrow { max-width: 800px; margin-left: auto; margin-right: auto; }

.hero-grid,
.split-grid,
.footer-grid,
.process-grid,
.reviews-grid,
.booking-steps,
.gallery-grid {
  display: grid;
  gap: 28px;
}
.hero-grid { grid-template-columns: 1fr 1fr; align-items: center; min-height: calc(100vh - 100px); }
.split-grid { grid-template-columns: .95fr 1.05fr; }
.split-grid.align-center { align-items: center; }
.footer-grid { grid-template-columns: 1.2fr .9fr .9fr; }
.process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.booking-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 36px; }
.gallery-grid {
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: 190px;
}
.gallery-card.tall { grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover,
.header-cta:hover { transform: translateY(-2px); }
.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(25,15,61,.2);
}
.button-light {
  background: rgba(255,255,255,.82);
  color: var(--ink);
  border: 1px solid rgba(159,132,220,.45);
}
.button-gradient {
  background: linear-gradient(135deg, #8d5cf6, var(--lavender));
  color: white;
  box-shadow: 0 16px 30px rgba(141,92,246,.28);
}
.button-outline {
  background: transparent;
  color: var(--lavender-deep);
  border: 1.5px solid rgba(159,132,220,.7);
}
.hero-actions,
.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.rating-pill {
  margin-top: 22px;
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}
.rating-pill a { color: var(--lavender-deep); font-weight: 700; }

.hero-visual,
.rounded-media,
.gallery-card,
.process-card,
.review-card,
.booking-shell,
.booking-step-card,
.legal-card,
.faq-item,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-visual,
.rounded-media,
.gallery-card,
.process-card,
.review-card,
.booking-step-card,
.legal-card,
.faq-item {
  background: rgba(255,255,255,.8);
  border-radius: var(--radius-lg);
}
.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}
.blob {
  position: absolute;
  filter: blur(.2px);
  opacity: .95;
}
.blob-cream {
  width: 220px; height: 220px; border-radius: 45% 55% 58% 42%;
  background: #f4bd5f; left: 18px; top: 42px;
}
.blob-lavender {
  width: 180px; height: 230px; border-radius: 42% 58% 60% 40%;
  background: #8d5cf6; left: 0; bottom: 110px;
}
.blob-soft {
  width: 250px; height: 220px; border-radius: 51% 49% 43% 57%;
  background: #c6d89d; right: 22px; bottom: 24px;
}
.hero-photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  background: white;
}
.hero-photo-large { inset: 60px 70px 70px 85px; }
.hero-photo-top { width: 170px; height: 170px; top: 36px; right: 36px; }
.hero-photo-bottom { width: 185px; height: 185px; bottom: 36px; left: 46px; }
.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 150px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f0e9ff);
  color: rgba(33,20,65,.46);
  font-weight: 700;
}
.brand-surface { background: linear-gradient(180deg, rgba(178,149,230,.22), rgba(255,255,255,.86)); }
.muted-surface { background: linear-gradient(180deg, rgba(243,236,255,.8), rgba(255,255,255,.9)); }
.rounded-media { min-height: 420px; overflow: hidden; }

.benefit-list,
.dot-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; }
.benefit-list li,
.dot-list li {
  position: relative;
  padding-left: 32px;
}
.benefit-list li::before,
.dot-list li::before {
  content: "◦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--lavender-deep);
  font-size: 1.5rem;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--lavender-deep);
  font-weight: 700;
}
.process-card,
.review-card,
.booking-step-card,
.legal-card { padding: 28px; }
.step-icon,
.step-badge {
  width: 58px; height: 58px; border-radius: 20px;
  display: grid; place-items: center;
  background: var(--lavender-soft);
  color: var(--lavender-deep);
  font-weight: 700;
  margin-bottom: 18px;
}
.step-icon { font-size: 1.3rem; }
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.review-top span { color: #f5b400; }

.faq-list { display: grid; gap: 16px; }
.faq-item { padding: 0 24px; overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-weight: 700;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-content { padding: 0 0 22px; color: var(--muted); }

.booking-section { padding-top: 28px; }
.booking-shell {
  padding: 42px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,236,255,.95));
  border-radius: 42px;
}
.booking-shell h2 { max-width: 14ch; margin-left: auto; margin-right: auto; }
.booking-intro { max-width: 760px; margin: 0 auto; }
.booking-actions { justify-content: center; }

.site-footer {
  margin-top: 44px;
  padding: 54px 0 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(241,234,255,.98));
  border-radius: 42px 42px 0 0;
  border-bottom: 0;
}
.site-footer h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: .9;
  margin-bottom: 18px;
}
.footer-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 18px;
  color: var(--muted);
}

.legal-section .legal-card {
  padding: 34px;
  background: rgba(255,255,255,.86);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .process-grid,
  .reviews-grid,
  .booking-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { min-height: auto; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .site-header { position: static; }
  .hero-visual { min-height: 520px; }
  .hero-photo-large { inset: 56px 36px 56px 56px; }
}

@media (max-width: 640px) {
  .container, .narrow-container { width: min(1180px, calc(100% - 22px)); }
  .section { padding: 62px 0; }
  p,li,summary { font-size: 16px; }
  .hero-actions,
  .booking-actions { flex-direction: column; }
  .button,
  .header-cta { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-card.wide,
  .gallery-card.tall { grid-column: auto; grid-row: auto; }
  .hero-visual { min-height: 420px; }
  .hero-photo-top { width: 120px; height: 120px; }
  .hero-photo-bottom { width: 135px; height: 135px; }
  .booking-shell,
  .legal-card,
  .process-card,
  .review-card,
  .booking-step-card { padding: 22px; }
}


.logo-card {
  background: linear-gradient(180deg, #f8f5ff, #efe5ff);
  display: grid;
  place-items: center;
}
.hero-logo-image,
.section-logo-image {
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}
.section-logo-image {
  max-width: 340px;
  margin: auto;
  filter: drop-shadow(0 14px 30px rgba(31,20,66,.10));
}
.logo-surface {
  display: grid;
  place-items: center;
}
.reviews-badge-shell {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--line);
}
.reviews-link {
  color: var(--lavender-deep);
  font-weight: 700;
}
.reviews-widget-shell {
  display: grid;
  gap: 28px;
}
.reviews-widget-title-wrap {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.review-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.quote-card {
  position: relative;
  padding-top: 42px;
}
.quote-mark {
  position: absolute;
  top: 18px;
  left: 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(142,110,216,.30);
}
@media (max-width: 1080px) {
  .review-quotes-grid { grid-template-columns: 1fr; }
}
