:root {
  --ink: #120817;
  --ink-2: #1d0b24;
  --plum: #35113f;
  --peach: #fff0e6;
  --cream: #fff8f2;
  --pink: #ee3f91;
  --rose: #cf2e70;
  --coral: #ff775d;
  --orange: #f7a338;
  --gold: #f4bf49;
  --white: #ffffff;
  --muted: #7e6475;
  --line: rgba(238, 63, 145, .42);
  --glass: rgba(24, 10, 31, .62);
  --shadow: 0 24px 80px rgba(48, 11, 44, .24);
  --shadow-hover: 0 18px 32px rgba(48, 11, 44, .18), 0 8px 0 rgba(238, 63, 145, .08);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
.page-sparkles {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  overflow: hidden;
}
.page-sparkles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, #fff 0 16%, var(--gold) 22% 44%, rgba(238, 63, 145, .18) 70%);
  box-shadow: 0 0 12px rgba(244,191,73,.8), 0 0 22px rgba(238,63,145,.45);
  animation: pageTwinkle 4.8s ease-in-out infinite;
}
.page-sparkles span:nth-child(2n) {
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #fff 0 20%, var(--pink) 28% 52%, transparent 75%);
  box-shadow: 0 0 13px rgba(238,63,145,.8);
}
.page-sparkles span:nth-child(3n) {
  width: 7px;
  height: 7px;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  border-radius: 0;
}
@keyframes pageTwinkle {
  0%, 100% { opacity: 0; transform: scale(.35) rotate(0deg); }
  42% { opacity: .9; transform: scale(1) rotate(22deg); }
  68% { opacity: .28; transform: scale(.72) rotate(42deg); }
}
img { max-width: 100%; display: block; }
img {
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; position: relative; z-index: 2; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 99;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--pink);
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, #08030f 0%, #170821 48%, #09050f 100%);
  position: relative;
  overflow: hidden;
}
.dark-section::before,
.peach-section::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 360px;
  height: 260px;
  border-radius: 48% 52% 44% 56%;
  background:
    radial-gradient(ellipse at 18% 16%, rgba(255, 163, 56, .82), transparent 34%),
    radial-gradient(ellipse at 46% 34%, rgba(255, 119, 93, .78), transparent 43%),
    radial-gradient(ellipse at 70% 64%, rgba(238, 63, 145, .72), transparent 55%),
    radial-gradient(ellipse at 18% 84%, rgba(117, 48, 204, .54), transparent 55%);
  opacity: .85;
}
.dark-section::after,
.peach-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 390px;
  height: 250px;
  border-radius: 46% 54% 42% 58%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='220' viewBox='0 0 320 220'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-18 48 C42 20 88 20 142 48 S244 76 338 36' stroke='rgba(255,255,255,.46)' stroke-width='1.15'/%3E%3Cpath d='M-18 76 C42 48 88 48 142 76 S244 104 338 64' stroke='rgba(255,255,255,.34)' stroke-width='1'/%3E%3Cpath d='M-18 104 C42 76 88 76 142 104 S244 132 338 92' stroke='rgba(238,63,145,.34)' stroke-width='1'/%3E%3Cpath d='M-18 132 C42 104 88 104 142 132 S244 160 338 120' stroke='rgba(255,255,255,.3)' stroke-width='.95'/%3E%3Cpath d='M-18 160 C42 132 88 132 142 160 S244 188 338 148' stroke='rgba(238,63,145,.28)' stroke-width='.95'/%3E%3Cpath d='M-18 188 C42 160 88 160 142 188 S244 216 338 176' stroke='rgba(255,255,255,.22)' stroke-width='.85'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 36% 42%, rgba(255,255,255,.1), transparent 62%);
  background-size: 210px 145px, 100% 100%;
  background-position: center;
  opacity: .36;
  mix-blend-mode: screen;
}
.dark-section::before { right: -70px; bottom: -90px; }
.dark-section::after { right: -82px; bottom: -116px; transform: rotate(-28deg); }
.peach-section::before { left: -100px; top: -108px; transform: rotate(18deg); }
.peach-section::after { left: -122px; top: -104px; transform: rotate(28deg); opacity: .34; }
.dark-section::before,
.dark-section::after,
.peach-section::before,
.peach-section::after {
  display: none;
}
.peach-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--peach), var(--cream));
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px;
}
h1, h2, h3 { margin: 0; line-height: 1.02; }
h1, h2, h3,
.image-card h3,
.service-card h3,
.review-head h3,
.story-copy h2,
.footer-brand h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
}
h1 { font-size: clamp(54px, 7vw, 104px); letter-spacing: 0; }
h2 { font-size: clamp(34px, 4.3vw, 58px); }
h3 { font-size: 20px; }
h1 span, h2 span, .footer-brand h2 span {
  background: linear-gradient(105deg, var(--orange), var(--coral) 42%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--coral) 55%, var(--orange));
  box-shadow: 0 14px 34px rgba(238, 63, 145, .28);
}
.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .03);
  border-color: rgba(238, 63, 145, .55);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}
.btn--small { min-height: 42px; padding: 0 20px; }
.btn-icon {
  flex: 0 0 auto;
  display: inline-block;
  margin-right: 8px;
}
.btn-icon--calendar {
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 3px;
  position: relative;
  transform: translateY(-1px);
}
.btn-icon--calendar::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 3px;
  border-top: 2px solid currentColor;
}
.btn-icon--calendar::after {
  content: "";
  position: absolute;
  left: 3px;
  top: -4px;
  width: 5px;
  height: 3px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.button-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.floating-whatsapp {
  position: fixed;
  z-index: 1000;
  right: 20px;
  top: auto;
  bottom: 20px;
  width: 78px;
  height: 78px;
  display: block;
  transform: none;
  border-radius: 50%;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .3));
  transition: transform .22s ease, filter .22s ease;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.08);
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .4));
}

.floating-whatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(238, 63, 145, .28);
  background: rgba(10, 3, 15, .28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 8px 24px rgba(5, 1, 8, .14);
  backdrop-filter: blur(12px) saturate(1.32);
  -webkit-backdrop-filter: blur(12px) saturate(1.32);
  transition:
    background-color .32s ease,
    border-color .32s ease,
    box-shadow .32s ease;
}

.site-header {
  padding-top: 46px;
}

.topbar__inner {
  width: min(1440px, calc(100% - 42px));
  margin: 0 auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  transition: color .32s ease;
}

.topbar a,
.topbar span {
  color: inherit;
}

.topbar--dark {
  border-bottom-color: rgba(238, 63, 145, .34);
  background: linear-gradient(90deg, rgba(8, 2, 13, .36), rgba(55, 15, 67, .22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .12),
    0 8px 24px rgba(5, 1, 8, .18);
}

.topbar--dark .topbar__inner {
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .34);
}

.topbar--peach {
  border-bottom-color: rgba(159, 50, 116, .22);
  background: linear-gradient(90deg, rgba(255, 247, 241, .5), rgba(255, 234, 225, .38));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .68),
    0 8px 24px rgba(67, 25, 53, .12);
}

.topbar--peach .topbar__inner {
  color: #2d172c;
}

.topbar--peach .icon {
  color: #c62d7b;
}

.topbar .icon { color: var(--gold); margin-right: 8px; }
.topbar--peach .icon { color: #c62d7b; }
.topbar__hours { margin-left: auto; }
.navbar {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: min(1440px, calc(100% - 42px));
  min-height: 108px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  align-items: center;
}
.brand img { width: 220px; filter: drop-shadow(0 10px 24px rgba(0,0,0,.46)); }
.site-menu { display: flex; justify-content: center; gap: 36px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.site-menu a,
.nav-dropdown > a { position: relative; padding: 10px 0; }
.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transition: width .25s ease;
}
.site-menu a:hover::after { width: 100%; }
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  min-width: 170px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(238, 63, 145, .42);
  border-radius: 8px;
  background: rgba(14, 4, 20, .92);
  box-shadow: 0 18px 48px rgba(0,0,0,.34);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown__menu a {
  padding: 9px 10px;
  white-space: nowrap;
  border-radius: 6px;
}
.nav-dropdown__menu a:hover {
  background: rgba(238, 63, 145, .12);
}
.menu-toggle { display: none; }

.hero {
  min-height: 790px;
  padding: 118px 0 28px;
  z-index: 2;
  overflow: hidden;
}
.hero::before {
  display: none;
}
.hero::after {
  display: none;
}
.hero__grid {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(430px, 610px) minmax(420px, 1fr);
  gap: 26px;
  align-items: center;
}
.hero__content { padding-top: 52px; }
.hero__lead { max-width: 610px; margin: 20px 0 0; color: rgba(255,255,255,.92); font-size: clamp(18px, 1.7vw, 25px); }
.hero__accent { margin: 2px 0 22px; color: var(--orange); font-size: clamp(18px, 1.5vw, 22px); }
.location-line { display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,.84); font-size: 17px; }
.location-line span { color: var(--orange); }
.location-line i { width: 1px; height: 18px; background: var(--pink); }
.hero__visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.hero__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 0 30px -80px;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(18,8,23,.72) 20%, rgba(18,8,23,.08) 54%, transparent);
  z-index: 1;
  pointer-events: none;
}
.hero__visual img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: 58% center;
  border-bottom-left-radius: 80px;
  filter: saturate(1.06) contrast(1.04);
}
.glass-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .045) 42%, rgba(255, 255, 255, .02)),
    radial-gradient(circle at 0 0, rgba(238, 63, 145, .28), transparent 38%),
    radial-gradient(circle at 100% 100%, rgba(255, 163, 56, .18), transparent 36%),
    linear-gradient(135deg, rgba(23, 8, 31, .72), rgba(38, 15, 43, .58));
  border: 1px solid rgba(255, 128, 177, .68);
  box-shadow:
    0 24px 80px rgba(0,0,0,.42),
    0 0 38px rgba(238,63,145,.2),
    0 0 0 1px rgba(255,255,255,.05) inset,
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -24px 58px rgba(18,8,23,.34);
  backdrop-filter: blur(26px) saturate(1.32);
}
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,.24), transparent 22% 72%, rgba(255,163,56,.12)),
    radial-gradient(circle at 18% 0, rgba(255,255,255,.24), transparent 28%);
  opacity: .58;
  mix-blend-mode: screen;
}
.award-card {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 72px;
  width: min(360px, 80%);
  padding: 28px;
  border-radius: 18px;
  display: grid;
  gap: 24px;
}

@media (min-width: 1121px) {
  .hero {
    min-height: 830px;
    padding-bottom: 34px;
  }
  .hero__grid {
    position: static;
    width: min(1440px, calc(100% - 80px));
    min-height: 594px;
    grid-template-columns: minmax(520px, 610px) 1fr;
    z-index: auto;
  }
  .hero__content {
    position: relative;
    z-index: 5;
    padding-top: 54px;
  }
  .hero__visual {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70vw;
    min-width: 980px;
    overflow: hidden;
  }
  .hero__visual picture {
    position: absolute;
    inset: 0;
  }
  .hero__visual::before {
    inset: 0;
    background:
      radial-gradient(ellipse at 78% 28%, rgba(18,8,23,.02), rgba(18,8,23,.12) 44%, rgba(18,8,23,.32) 100%),
      linear-gradient(90deg, var(--ink) 0%, rgba(18,8,23,.98) 15%, rgba(18,8,23,.72) 34%, rgba(18,8,23,.15) 62%, rgba(18,8,23,.05) 100%),
      linear-gradient(180deg, rgba(8,3,15,.22), rgba(8,3,15,.08) 46%, rgba(8,3,15,.24) 100%);
  }
  .hero__visual img {
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 0;
    object-position: 60% center;
    filter: saturate(1.02) contrast(1.02) brightness(.94);
  }
  .award-card {
    right: 46px;
    bottom: 218px;
  }
  .trust-strip {
    position: relative;
    z-index: 6;
    width: min(1180px, calc(100% - 180px));
    margin-top: 18px;
  }
  .lifestyle {
    z-index: 1;
    margin-top: -42px;
    padding-top: 126px;
  }
}
.award-card div:first-child { padding-bottom: 24px; border-bottom: 1px solid rgba(238,63,145,.35); }
.award-card strong { display: block; color: #ff719e; text-transform: uppercase; letter-spacing: .08em; }
.award-card span, .award-card small { display: block; margin-top: 6px; color: rgba(255,255,255,.9); }
.trust-strip {
  position: relative;
  margin-top: 34px;
  min-height: 126px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 128, 177, .7);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035) 34%, rgba(255,255,255,.015)),
    radial-gradient(circle at 8% 0, rgba(238,63,145,.24), transparent 30%),
    radial-gradient(circle at 96% 90%, rgba(255,119,93,.22), transparent 28%),
    linear-gradient(135deg, rgba(18,8,23,.86), rgba(39,13,42,.76));
  box-shadow:
    0 22px 72px rgba(0,0,0,.28),
    0 0 36px rgba(238, 63, 145, .22),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -22px 50px rgba(18,8,23,.34);
  backdrop-filter: blur(24px) saturate(1.28);
  transition: transform .28s ease, box-shadow .28s ease;
}
.trust-strip::before,
.dark-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255,255,255,.18), transparent 24% 72%, rgba(255,163,56,.12)),
    radial-gradient(circle at 18% 0, rgba(255,255,255,.18), transparent 30%);
  opacity: .62;
  mix-blend-mode: screen;
}
.trust-strip div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-right: 1px solid rgba(255,128,177,.36);
}
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { color: var(--pink); font-size: 38px; }
.trust-strip small { color: rgba(255,255,255,.72); font-size: 16px; }

.lifestyle, .services { padding: 74px 0 70px; }
.booking-reviews { padding: 70px 0 54px; }
.booking-reviews .container { width: min(1420px, calc(100% - 52px)); }
.booking-reviews .section-heading { margin-bottom: 28px; }
.booking-reviews .section-heading h2 {
  font-size: clamp(38px, 4.4vw, 68px);
}
.booking-reviews .shape--review-left {
  width: 300px;
  height: 300px;
  opacity: .86;
}
.booking-reviews .shape--review-right {
  width: 250px;
  height: 250px;
  opacity: .8;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.image-card, .service-card, .step-card, .review-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.image-card:hover, .service-card:hover, .step-card:hover, .review-card:hover, .footer-logos article:hover, .trust-strip:hover, .bottom-proof:hover, .story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.image-card { position: relative; min-height: 345px; }
.image-card > img:not(.card-icon),
.image-card picture > img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.image-card picture,
.service-card > picture {
  display: block;
  width: 100%;
}
.image-card h3 { padding: 34px 22px 0; }
.image-card p { margin: 6px 22px 22px; color: var(--muted); }
.image-card .card-icon {
  position: absolute;
  left: 22px;
  top: 180px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 10px 24px rgba(238,63,145,.24);
}

.services { padding-top: 78px; }
.section-heading > p:not(.eyebrow) { color: var(--muted); margin: 12px auto 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card { display: flex; flex-direction: column; border: 1px solid rgba(238,63,145,.12); }
.service-card > img,
.service-card > picture > img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.service-card__body {
  position: relative;
  flex: 1;
  padding: 36px 18px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: contain;
  background: transparent;
  border: 3px solid var(--cream);
  box-shadow: 0 12px 24px rgba(48, 11, 44, .18);
}
.service-card p { min-height: 78px; color: var(--muted); font-size: 13px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 18px; text-align: left; color: #6f5265; font-size: 12px; }
.service-card li { margin: 7px 0; }
.service-card li::before { content: "\2299"; color: var(--pink); margin-right: 6px; }
.btn--service {
  margin-top: auto;
  min-height: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--plum), var(--pink));
  font-size: 11px;
}
.mini-proof {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  color: var(--muted);
}
.mini-proof div {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-content: start;
  justify-items: center;
  text-align: center;
}
.mini-proof span {
  color: var(--pink);
  font-size: 30px;
  line-height: 1;
}
.mini-proof strong { line-height: 1.2; min-height: 34px; display: grid; place-items: end center; }
.mini-proof small { display: block; font-size: 12px; }

.dark-band {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  background: linear-gradient(135deg, #09030e, #2b0d34 58%, #130718);
}
.dark-band::before,
.dark-band::after {
  content: "\2726";
  position: absolute;
  z-index: 1;
  color: var(--pink);
  text-shadow:
    0 0 18px rgba(238, 63, 145, .72),
    72px 34px 0 rgba(244, 191, 73, .55),
    138px -12px 0 rgba(255, 119, 93, .34),
    210px 62px 0 rgba(238, 63, 145, .28);
}
.dark-band::before { left: 34px; top: 74px; font-size: 34px; }
.dark-band::after {
  right: 60px;
  bottom: 72px;
  color: var(--coral);
  font-size: 24px;
  text-shadow:
    0 0 18px rgba(255, 119, 93, .7),
    -80px -36px 0 rgba(244, 191, 73, .45),
    -154px 18px 0 rgba(238, 63, 145, .28);
}
.story-card {
  position: relative;
  z-index: 2;
  width: min(1540px, calc(100% - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(340px, .68fr);
  gap: clamp(34px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 3vw, 44px);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255,244,236,.98), rgba(255,249,244,.95));
  box-shadow:
    0 30px 76px rgba(0,0,0,.34),
    0 16px 40px rgba(238,63,145,.12),
    0 0 0 1px rgba(255,255,255,.32) inset;
  border: 1px solid rgba(255,190,216,.44);
  transition: transform .28s ease, box-shadow .28s ease;
}
.story-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 95px;
  height: 130px;
  border-left: 2px dotted rgba(238,63,145,.36);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.story-orb {
  position: absolute;
  z-index: 4;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: contain;
  filter: saturate(.9) brightness(.72) drop-shadow(0 14px 24px rgba(48, 11, 44, .26));
  opacity: .95;
  pointer-events: none;
}
.story-orb--maid {
  left: -28px;
  top: -28px;
}
.story-orb--home {
  right: 8px;
  bottom: 10px;
  width: 70px;
  height: 70px;
}
.story-copy {
  position: relative;
  min-width: 0;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 6px;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--pink) 0 42%, var(--coral) 54%, var(--orange) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.42),
    0 0 0 4px rgba(238,63,145,.36),
    0 22px 46px rgba(48,11,44,.32),
    0 0 34px rgba(238,63,145,.22);
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 2;
  pointer-events: none;
  border-radius: 17px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.26),
    inset 0 0 34px rgba(238,63,145,.1);
}
.video-shell {
  position: relative;
  padding-left: 8px;
}
.video-shell::before,
.video-shell::after {
  content: "\2726";
  position: absolute;
  z-index: 2;
  color: var(--pink);
  text-shadow: 0 0 18px rgba(238, 63, 145, .7);
  pointer-events: none;
}
.video-shell::before {
  left: -18px;
  bottom: 118px;
  font-size: 24px;
}
.video-shell::after {
  right: -26px;
  top: -18px;
  color: var(--gold);
  font-size: 18px;
}
.video-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.script-note {
  margin: 24px 0 0 138px;
  color: var(--pink);
  font-family: "Great Vibes", "Playfair Display", cursive;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1;
  text-shadow: 0 8px 24px rgba(238, 63, 145, .2);
}
.script-note span { color: var(--coral); }
.story-copy p { color: #523a4d; }
.story-copy .eyebrow { color: var(--pink); }
.story-copy h2 { color: var(--ink); font-size: clamp(34px, 3.7vw, 58px); }
.story-copy p {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.52;
  margin: 15px 0;
}
.founder-chip {
  margin-top: 24px;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(238,63,145,.24);
}
.founder-chip > div {
  min-width: 0;
}
.founder-chip__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 18%, rgba(255,255,255,.2), transparent 32%),
    var(--plum);
  border: 2px solid rgba(255, 163, 56, .72);
  box-shadow:
    0 12px 26px rgba(53, 17, 63, .28),
    0 0 18px rgba(238, 63, 145, .22);
}
.founder-chip__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-chip strong {
  display: block;
  color: var(--pink);
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.founder-chip small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.step-card {
  position: relative;
  min-height: 176px;
  height: 100%;
  padding: 30px 24px 24px 124px;
  text-align: left;
  display: grid;
  align-items: center;
  overflow: visible;
  border: 1px solid rgba(238, 63, 145, .12);
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(80, 35, 58, .12);
}
.step-card:not(:last-child)::after {
  content: "\203A";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--coral));
  box-shadow: 0 12px 28px rgba(238, 63, 145, .34);
  font-size: 34px;
  line-height: 1;
}
.step-card b {
  position: absolute;
  top: -12px;
  left: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #f01875);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 17px;
  box-shadow: 0 10px 24px rgba(238,63,145,.3);
}
.step-card .step-icon {
  position: absolute;
  left: 34px;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(238, 63, 145, .16));
}
.step-card h3 {
  color: #14151d;
  font-size: 18px;
  margin-bottom: 10px;
}
.step-card p {
  color: #4e4550;
  font-size: 13px;
  margin: 0;
  max-width: 210px;
}
.step-card p::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 16px;
  background: var(--pink);
}
.reviews-heading {
  position: relative;
  width: min(100%, 900px);
  box-sizing: border-box;
  margin-top: 60px;
  padding: 30px clamp(16px, 2.2vw, 34px) 0;
  border-top: 1px solid rgba(238, 63, 145, .22);
}
.reviews-heading h2 {
  max-width: 100%;
  text-wrap: balance;
  overflow-wrap: normal;
}
.reviews-heading > p:not(.eyebrow) {
  max-width: 760px;
  text-wrap: balance;
}
.fairy-client-love {
  position: absolute;
  right: clamp(-176px, -11vw, -112px);
  top: 46px;
  width: clamp(142px, 15vw, 212px);
  height: auto;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(48, 11, 44, .22));
  transform: scaleX(-1) rotate(-5deg);
  transform-origin: center center;
}

@media (max-width: 1320px) {
  .booking-reviews .section-heading h2 {
    font-size: clamp(40px, 4.35vw, 58px);
    line-height: 1.04;
  }

  .fairy-client-love {
    right: -106px;
    width: 148px;
  }

  .founder-chip {
    padding: 10px 15px;
    gap: 12px;
  }

  .founder-chip__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .story-orb--home {
    right: 4px;
    bottom: 4px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 1200px) {
  .reviews-heading {
    width: min(100%, 820px);
    padding-inline: 24px;
  }

  .booking-reviews .section-heading h2 {
    font-size: clamp(38px, 4.6vw, 52px);
  }

  .fairy-client-love {
    display: none;
  }

  .story-orb--home {
    display: none;
  }
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}
.review-card {
  position: relative;
  min-height: 320px;
  height: 100%;
  padding: 34px 30px 28px;
  color: var(--ink);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.76)),
    radial-gradient(circle at 50% 0%, rgba(238,63,145,.08), transparent 46%);
  border: 1px solid rgba(238,63,145,.15);
  box-shadow: 0 18px 44px rgba(80, 35, 58, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.review-card::before {
  content: '"';
  position: static;
  order: 3;
  color: var(--pink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  height: 24px;
  margin: 8px 0 -2px;
}
.review-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.review-head img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(238, 63, 145, .14));
}
.review-head h3 {
  color: var(--ink);
  font-size: 21px;
  margin: 0;
  max-width: 220px;
}
.stars {
  color: #ffc400;
  letter-spacing: .06em;
  margin: 10px 0 8px;
}
.review-card p {
  order: 4;
  color: #4f4150;
  font-size: 12.5px;
  font-style: normal;
  line-height: 1.7;
  margin: 12px auto 20px;
  flex: 1;
  max-width: 270px;
}
.reviewer {
  order: 5;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  text-align: center;
}
.reviewer::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--pink);
}
.reviewer img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; background: var(--white); }
.google-review-links {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.google-review-links .btn {
  min-width: 220px;
}
.review-profile-callout {
  margin-top: 30px;
  text-align: center;
}
.review-profile-callout > .eyebrow {
  margin-bottom: 0;
}
.review-profile-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1120px;
}
.review-profile-links .btn {
  min-width: 0;
  width: 100%;
}
.bottom-proof {
  margin-top: 34px;
  padding: 26px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  transition: transform .28s ease, box-shadow .28s ease;
}
.dark-proof {
  position: relative;
  color: var(--white);
  padding: 0;
  min-height: 152px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035) 34%, rgba(255,255,255,.015)),
    radial-gradient(circle at 2% 8%, rgba(238,63,145,.24), transparent 20%),
    radial-gradient(circle at 99% 12%, rgba(255,119,93,.2), transparent 18%),
    linear-gradient(135deg, rgba(18, 8, 23, .88), rgba(39, 13, 42, .78));
  border: 1px solid rgba(255, 128, 177, .7);
  box-shadow:
    0 22px 72px rgba(0,0,0,.28),
    0 0 36px rgba(238, 63, 145, .22),
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -22px 50px rgba(18,8,23,.34);
  backdrop-filter: blur(24px) saturate(1.28);
}
.bottom-proof div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  min-height: 152px;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,128,177,.36);
}
.bottom-proof div:last-child { border-right: 0; }
.bottom-proof span {
  color: var(--pink);
  font-size: 40px;
  line-height: 1;
  text-shadow: 0 0 20px rgba(238,63,145,.45);
}
.bottom-proof strong {
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.25;
}
.bottom-proof small {
  display: block;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  line-height: 1.35;
}

.site-footer { padding: 62px 0 24px; }
.footer-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 54px;
}
.footer-logos article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(238,63,145,.38);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.footer-logos img { max-height: 92px; object-fit: contain; filter: drop-shadow(0 12px 20px rgba(0,0,0,.4)); }
.footer-logos div { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.footer-logos a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #050508;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}
.footer-logos a img {
  width: 23px;
  height: 23px;
  max-height: none;
  object-fit: contain;
  filter: none;
}
.footer-logos a.social-name {
  width: auto;
  min-width: 54px;
  padding: 0 10px;
  font-size: 12px;
  letter-spacing: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.25fr .45fr .65fr;
  gap: 50px;
  padding: 10px 0 54px;
  align-items: start;
}
.footer-main--home {
  grid-template-columns: 1.2fr .42fr .62fr .58fr;
  gap: 34px;
}
.footer-online h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  color: #ff69b6;
  font-size: 20px;
  letter-spacing: .04em;
}
.footer-online a.online-wordmark {
  width: fit-content;
  margin: 11px 0;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  transition: transform .22s ease, color .22s ease;
}
.footer-online a.online-wordmark:hover {
  color: #ff79c5;
  transform: translateX(4px);
}
.online-wordmark--bark {
  display: flex !important;
  align-items: center;
  gap: 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -3px;
}
.online-wordmark--bark span {
  margin: 0 !important;
  color: inherit !important;
  font-size: 15px;
  transform: rotate(-11deg);
}
.online-wordmark--instagram {
  font-family: "Great Vibes", cursive;
  font-size: 27px;
  font-weight: 700;
}
.online-wordmark--snupit {
  font-family: "Inter", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -1.8px;
}
.footer-brand img { width: 360px; max-width: 100%; margin-bottom: 12px; }
.footer-brand .button-row { justify-content: flex-start; }
.footer-brand .btn {
  display: inline-flex;
  min-height: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.footer-services { color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; }
.footer-brand h2 {
  max-width: 470px;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--white);
}
.footer-brand h2 span {
  background: linear-gradient(105deg, var(--orange), var(--coral) 42%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-main h3 { color: var(--pink); text-transform: uppercase; font-size: 16px; margin-bottom: 22px; }
.footer-main a:not(.btn), .footer-main span:not(.btn-icon):not(.founder-chip__icon):not(.footer-title-gradient) { display: block; color: rgba(255,255,255,.78); margin: 14px 0; }
.footer-bottom {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.shape {
  display: none;
}
.shape::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='190' viewBox='0 0 280 190'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M-22 56 C34 24 92 28 148 58 S232 92 306 54' stroke='rgba(255,255,255,.36)' stroke-width='.9'/%3E%3Cpath d='M-22 88 C34 56 92 60 148 90 S232 124 306 86' stroke='rgba(255,255,255,.26)' stroke-width='.8'/%3E%3Cpath d='M-22 120 C34 88 92 92 148 122 S232 156 306 118' stroke='rgba(255,255,255,.2)' stroke-width='.75'/%3E%3Cpath d='M-22 152 C34 120 92 124 148 154 S232 188 306 150' stroke='rgba(238,63,145,.22)' stroke-width='.75'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 38% 36%, rgba(255,255,255,.08), transparent 62%);
  background-size: 190px 130px, 100% 100%;
  background-position: center;
  opacity: .34;
  mix-blend-mode: screen;
}
.shape--hero-left {
  left: -120px;
  bottom: -74px;
  width: 275px;
  height: 300px;
  border-radius: 56% 44% 62% 38% / 44% 52% 48% 56%;
  background:
    radial-gradient(ellipse at 72% 24%, rgba(238,63,145,.26), transparent 35%),
    linear-gradient(145deg, rgba(116,49,205,.54), rgba(52,14,74,.5) 60%, rgba(238,63,145,.22));
  border: 1px solid rgba(238,63,145,.2);
}
.shape--hero-right, .shape--peach-right, .shape--service-right, .shape--review-right, .shape--footer-right {
  right: -96px;
  bottom: -82px;
  width: 270px;
  height: 270px;
  border-radius: 58% 42% 44% 56% / 44% 48% 52% 56%;
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 203, 119, .42), transparent 30%),
    linear-gradient(135deg, rgba(255,169,55,.48), rgba(255,119,93,.45) 48%, rgba(238,63,145,.34));
}
.shape--peach-top, .shape--service-left, .shape--review-left, .shape--footer-left {
  left: -98px;
  top: -78px;
  width: 250px;
  height: 250px;
  border-radius: 48% 52% 58% 42% / 42% 54% 46% 58%;
  background:
    radial-gradient(ellipse at 28% 24%, rgba(255, 180, 222, .32), transparent 34%),
    linear-gradient(135deg, rgba(238,63,145,.36), rgba(179, 92, 215, .25) 54%, rgba(116,49,205,.22));
}
.shape--peach-right, .shape--service-right, .shape--review-right {
  opacity: .46;
}
.shape--service-left, .shape--review-left {
  opacity: .42;
}
.shape--footer-left { top: auto; bottom: -90px; }
.shape--footer-right { background: linear-gradient(135deg, rgba(255,163,56,.34), rgba(238,63,145,.3)); }

.fairy {
  position: absolute;
  z-index: 80;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}
.fairy--hero {
  position: fixed;
  left: 0;
  top: 0;
  width: clamp(94px, 9vw, 150px);
  opacity: 0;
  transform: translate3d(-200px, -200px, 0);
  transition: opacity .35s ease;
  will-change: transform;
}
.fairy--hero.is-cursor-fairy {
  opacity: .98;
}
.fairy--story {
  width: min(188px, 18vw);
  left: -54px;
  bottom: 18px;
  opacity: .95;
  z-index: 5;
  filter: drop-shadow(0 18px 28px rgba(48, 11, 44, .34));
}
.fairy.is-flying { animation: fairyFlight 4.8s cubic-bezier(.16,.84,.22,1) forwards; }
@keyframes fairyFlight {
  0% { opacity: 0; transform: translate(-34vw, 108px) rotate(-7deg) scale(.62); }
  24% { opacity: 1; transform: translate(-22vw, -12px) rotate(5deg) scale(.76); }
  52% { opacity: 1; transform: translate(-7vw, -34px) rotate(2deg) scale(.9); }
  78% { opacity: 1; transform: translate(4vw, 14px) rotate(-3deg) scale(1.01); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0deg) scale(1); }
}
.trail-spark {
  position: fixed;
  z-index: 79;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #fff 0 18%, var(--gold) 22% 48%, rgba(238,63,145,.1) 70%);
  box-shadow: 0 0 14px var(--gold), 0 0 22px var(--pink);
  animation: sparkleFade 1.9s ease-out forwards;
}
.trail-spark.is-star {
  border-radius: 0;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
  background: var(--pink);
  box-shadow: 0 0 16px rgba(238,63,145,.9), 0 0 28px rgba(244,191,73,.45);
}
@keyframes sparkleFade {
  0% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
  70% { opacity: .45; }
  to { opacity: 0; transform: translateY(28px) scale(.15) rotate(80deg); }
}
.sparkle-field::before, .sparkle-field::after {
  content: "\2726";
  position: absolute;
  z-index: 2;
  color: var(--pink);
  animation: twinkle 2.7s ease-in-out infinite;
}
.sparkle-field::before { left: 12%; top: 24%; }
.sparkle-field::after { right: 12%; top: 42%; color: var(--gold); animation-delay: .8s; }
@keyframes twinkle { 50% { opacity: .35; transform: scale(.7) rotate(20deg); } }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.is-visible:is(.image-card, .service-card, .step-card, .review-card, .story-card):hover,
.footer-logos article:hover,
.trust-strip:hover,
.bottom-proof:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 26px 46px rgba(48, 11, 44, .22), 0 10px 0 rgba(238, 63, 145, .1);
}

@media (max-width: 1120px) {
  .navbar { grid-template-columns: 220px auto; }
  .site-menu { gap: 18px; font-size: 12px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { min-height: 470px; }
  .hero__visual img { height: 520px; }
  .fairy--hero { width: 120px; }
  .service-grid, .lifestyle-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip, .mini-proof, .bottom-proof { grid-template-columns: repeat(2, 1fr); }
  .story-card { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .site-header { padding-top: 0; }
  .topbar__inner { flex-wrap: wrap; justify-content: center; gap: 8px 18px; padding: 8px 0; }
  .topbar__hours { margin-left: 0; }
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: none;
    min-height: 76px;
    padding: 0 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    background: rgba(9,3,14,.86);
    backdrop-filter: blur(18px);
  }
  .navbar > * { min-width: 0; }
  .brand img { width: 176px; }
  .nav-cta { display: none; }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { height: 2px; background: var(--white); }
  .site-menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 18px;
    background: rgba(9,3,14,.96);
    border-top: 1px solid rgba(238,63,145,.26);
  }
  .nav-dropdown {
    display: grid;
  }
  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-menu.is-open { display: grid; }
  .hero { padding-top: 96px; min-height: 0; padding-bottom: 0; }
  .hero__grid { gap: 18px; min-height: 0; }
  .hero__content { padding-top: 20px; }
  .hero__visual {
    display: block;
    min-height: 0;
    align-self: auto;
    margin-top: 4px;
    overflow: hidden;
    border-radius: 20px;
  }
  .hero__visual::before {
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(18,8,23,.84), rgba(18,8,23,.36) 46%, rgba(18,8,23,.06) 76%);
  }
  .hero__visual img {
    display: block;
    height: 460px;
    border-radius: 20px;
  }
  .award-card { position: relative; right: auto; bottom: auto; width: 100%; margin: 14px auto 0; }
  .booking-reviews .container { width: min(100% - 28px, var(--container)); }
  .reviews-heading {
    width: 100%;
    margin-top: 42px;
    padding: 24px 4px 0;
  }
  .booking-reviews .section-heading h2 {
    font-size: clamp(34px, 8vw, 44px);
    line-height: 1.06;
  }
  .fairy-client-love { display: none; }
  .step-card:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -28px;
    transform: translateX(50%) rotate(90deg);
  }
  .trust-strip, .reviews-grid, .footer-logos, .footer-main { grid-template-columns: 1fr; }
  .review-profile-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-strip div, .bottom-proof div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust-strip div:last-child, .bottom-proof div:last-child { border-bottom: 0; }
  .story-card { padding: 24px; }
  .story-orb { width: 56px; height: 56px; }
  .story-orb--maid { left: -10px; top: -14px; }
  .story-orb--home { right: -4px; bottom: -10px; }
  .footer-bottom { flex-wrap: wrap; gap: 12px 22px; }
}

@media (max-width: 560px) {
  .floating-whatsapp {
    right: 10px;
    top: auto;
    bottom: 18px;
    width: 64px;
    height: 64px;
    transform: none;
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    transform: scale(1.06);
  }

  .container { width: min(100% - 26px, var(--container)); }
  h1 { font-size: 48px; }
  h2 { font-size: 31px; }
  .booking-reviews .section-heading h2 {
    font-size: clamp(30px, 9.5vw, 38px);
  }
  .founder-chip {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    width: 100%;
    border-radius: 24px;
    padding: 10px 14px;
  }
  .founder-chip__icon {
    width: 50px;
    height: 50px;
  }
  .button-row, .btn { width: 100%; }
  .lifestyle-grid, .service-grid, .steps-grid, .mini-proof, .bottom-proof { grid-template-columns: 1fr; }
  .review-profile-links { grid-template-columns: 1fr; }
  .hero { padding-top: 86px; }
  .hero__grid { gap: 12px; }
  .hero__content { padding-top: 12px; }
  .hero__visual { margin-top: 0; }
  .hero__visual img {
    height: 410px;
    object-position: 60% center;
  }
  .step-card {
    min-height: 242px;
    padding: 104px 24px 30px;
    text-align: center;
    display: block;
  }
  .step-card .step-icon {
    left: 50%;
    top: 54px;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
  }
  .step-card h3 {
    position: relative;
    z-index: 1;
    margin: 16px 0 12px;
    font-size: 21px;
    line-height: 1.1;
  }
  .step-card p { max-width: none; }
  .step-card p::after { margin-left: auto; margin-right: auto; }
  .review-card {
    padding: 30px 24px 24px;
  }
  .review-card::before {
    font-size: 40px;
  }
  .fairy--hero { width: 110px; }
  .location-line { align-items: flex-start; font-size: 14px; }
  .script-note { margin-left: 0; text-align: center; }
  .footer-logos article { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}

@media (max-width: 360px) {
  .navbar { padding-inline: 12px; }
  .brand img { width: 156px; }
  .floating-whatsapp {
    right: 8px;
    bottom: 12px;
    width: 58px;
    height: 58px;
  }
}

.announcement-dialog {
  width: min(1180px, calc(100% - 34px));
  max-width: none;
  max-height: min(760px, calc(100dvh - 34px));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #bd8530;
  border-radius: 28px;
  background: #fbf7f0;
  color: #101517;
  box-shadow: 0 32px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(255,224,163,.28);
}

.announcement-dialog[open] { animation: announcement-enter .38s cubic-bezier(.2,.8,.2,1) both; }
.announcement-dialog::backdrop { background: rgba(2,8,9,.82); backdrop-filter: blur(10px) saturate(.75); -webkit-backdrop-filter: blur(10px) saturate(.75); }
.announcement-dialog__layout { display: grid; grid-template-columns: minmax(340px, .82fr) minmax(500px, 1.18fr); min-height: min(720px, calc(100dvh - 36px)); }
.announcement-dialog__portrait { position: relative; min-width: 0; overflow: hidden; background: linear-gradient(145deg, #1c2749, #071020); }
.announcement-dialog__portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(5,11,19,.32)), radial-gradient(circle at 12% 15%, rgba(210,158,70,.18), transparent 30%); pointer-events: none; }
.announcement-dialog__portrait img { display: block; width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: 50% 17%; }
.announcement-dialog__portrait-glow { position: absolute; z-index: 1; right: -42px; bottom: 36px; width: 150px; height: 150px; border: 1px solid rgba(214,166,79,.42); border-radius: 50%; box-shadow: 0 0 55px rgba(201,145,51,.22); }
.announcement-dialog__content { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; padding: 42px clamp(42px, 5vw, 78px) 36px; text-align: center; background: radial-gradient(circle at 83% 12%, rgba(198,145,55,.08), transparent 24%), radial-gradient(circle at 20% 85%, rgba(222,126,88,.08), transparent 25%), #fbf7f0; }
.announcement-dialog__close { position: absolute; z-index: 2; top: 19px; right: 19px; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid #b77d24; border-radius: 50%; background: rgba(255,255,255,.52); color: #202526; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.announcement-dialog__close:hover, .announcement-dialog__close:focus-visible { transform: rotate(5deg) scale(1.06); background: #fff; outline: 2px solid rgba(183,125,36,.25); outline-offset: 3px; }
.announcement-dialog__close svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.announcement-dialog__award { display: grid; place-items: center; width: 82px; height: 82px; margin-bottom: 16px; border: 1px solid #bd8530; border-radius: 50%; color: #ae7623; }
.announcement-dialog__award svg { width: 58px; height: 58px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.announcement-dialog__eyebrow, .announcement-dialog__category { display: flex; align-items: center; justify-content: center; width: 100%; margin: 0; color: #ad772a; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.announcement-dialog__eyebrow { gap: 18px; font-size: 15px; }
.announcement-dialog__eyebrow span, .announcement-dialog__category span { flex: 1; max-width: 105px; height: 1px; background: #bf8430; }
.announcement-dialog__finalist { margin: 12px 0 6px; color: #171c1d; font-size: 18px; }
.announcement-dialog h2 { margin: 4px 0 8px; color: #111516; font: 800 clamp(54px, 5.2vw, 76px)/.9 "Playfair Display", Georgia, serif; letter-spacing: -.045em; }
.announcement-dialog__category { gap: 15px; font-size: 14px; letter-spacing: .02em; text-transform: none; }
.announcement-dialog__category span { max-width: 42px; }
.announcement-dialog__message { max-width: 610px; margin: 18px auto; color: #22292a; font-size: 17px; line-height: 1.5; }
.announcement-dialog__cta { display: flex; align-items: center; justify-content: center; gap: 24px; width: min(570px, 100%); min-height: 78px; padding: 15px 28px; border: 1px solid #ca9236; border-radius: 17px; background: linear-gradient(120deg, #091313, #1b2220); color: #e0ad59; font-size: clamp(19px, 2vw, 27px); font-weight: 800; letter-spacing: .035em; text-transform: uppercase; box-shadow: 0 14px 28px rgba(6,20,19,.18); transition: transform .22s ease, box-shadow .22s ease, color .22s ease; }
.announcement-dialog__cta:hover, .announcement-dialog__cta:focus-visible { transform: translateY(-3px); color: #ffd78c; box-shadow: 0 20px 34px rgba(6,20,19,.26); outline: none; }
.announcement-dialog__cta span { font-size: 34px; font-weight: 400; line-height: 1; }
.announcement-dialog__deadline { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 17px 0 0; color: #1b2122; font-size: 16px; }
.announcement-dialog__deadline svg { width: 22px; height: 22px; fill: none; stroke: #bd7e21; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.announcement-dialog__thanks { margin: 11px 0 0; color: #202526; font-size: 15px; }
.announcement-dialog__thanks span { color: #ed3b67; font-size: 19px; }

@keyframes announcement-enter {
  from { opacity: 0; transform: translateY(24px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 820px) {
  .announcement-dialog { width: min(600px, calc(100% - 20px)); max-height: calc(100dvh - 20px); border-radius: 21px; overflow-y: auto; }
  .announcement-dialog__layout { grid-template-columns: 1fr; min-height: 0; }
  .announcement-dialog__portrait { height: 245px; }
  .announcement-dialog__portrait img { min-height: 0; height: 100%; object-position: 50% 20%; }
  .announcement-dialog__portrait-glow { display: none; }
  .announcement-dialog__content { padding: 31px 24px 28px; }
  .announcement-dialog__close { position: fixed; top: max(19px, env(safe-area-inset-top)); right: 19px; width: 44px; height: 44px; background: rgba(251,247,240,.94); }
  .announcement-dialog__award { width: 62px; height: 62px; margin-bottom: 11px; }
  .announcement-dialog__award svg { width: 43px; height: 43px; }
  .announcement-dialog__eyebrow { gap: 10px; font-size: 11px; }
  .announcement-dialog__finalist { margin-top: 9px; font-size: 14px; }
  .announcement-dialog h2 { font-size: clamp(43px, 13vw, 61px); }
  .announcement-dialog__category { font-size: 13px; }
  .announcement-dialog__message { margin: 13px auto; font-size: 14px; }
  .announcement-dialog__cta { min-height: 62px; border-radius: 13px; font-size: 17px; }
  .announcement-dialog__deadline { margin-top: 14px; font-size: 14px; }
}

@media (max-width: 430px) {
  .announcement-dialog__portrait { height: 205px; }
  .announcement-dialog__content { padding: 26px 18px 24px; }
  .announcement-dialog__award { width: 54px; height: 54px; }
  .announcement-dialog__award svg { width: 37px; height: 37px; }
  .announcement-dialog__eyebrow span { max-width: 42px; }
  .announcement-dialog h2 { font-size: 42px; }
  .announcement-dialog__category span { display: none; }
  .announcement-dialog__cta { gap: 13px; padding-inline: 16px; font-size: 15px; }
  .announcement-dialog__deadline { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .fairy--hero { opacity: 1; }
  .page-sparkles { display: none; }
  .trail-spark { display: none; }
}
