
:root {
  --ink: #0d0814;
  --ink-soft: #160d24;
  --ink-panel: #211232;
  --paper: #fcfaff;
  --paper-2: #f6f1ff;
  --white: #ffffff;
  --text: #fbf9ff;
  --text-dark: #21152e;
  --muted: #d1c6dd;
  --muted-dark: #70617d;
  --purple: #9b5de5;
  --purple-bright: #b57cff;
  --purple-deep: #6d28d9;
  --purple-dark: #4c1d95;
  --lavender: #eee5ff;
  --lavender-2: #f7f2ff;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(54,28,77,.13);
  --success: #72e3a6;
  --shadow: 0 24px 70px rgba(30,11,47,.18);
  --shadow-dark: 0 28px 90px rgba(0,0,0,.4);
  --radius: 26px;
  --radius-sm: 15px;
  --container: 1160px;
  --focus: 0 0 0 4px rgba(155,93,229,.36);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.age-locked { overflow: hidden; }

[hidden] { display: none !important; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
a:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.65rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 11000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  background: white;
  color: black;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--purple-deep);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button-row--center { justify-content: center; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: white;
  box-shadow: 0 13px 34px rgba(109,40,217,.28);
}
.button--primary:hover { box-shadow: 0 17px 42px rgba(109,40,217,.38); }
.button--secondary {
  border-color: rgba(54,28,77,.25);
  background: transparent;
  color: var(--text-dark);
}
.button--secondary:hover { border-color: var(--purple-deep); }
.button--secondary-on-dark,
.button--outline-light {
  border-color: rgba(255,255,255,.26);
  background: transparent;
  color: white;
}
.button--secondary-on-dark:hover,
.button--outline-light:hover { border-color: var(--purple-bright); }
.button--light { background: white; color: var(--text-dark); }
.button--quiet { border-color: var(--line); background: transparent; color: white; }
.button--full { width: 100%; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(13,8,20,.92);
  color: white;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
}
.brand > span:last-child { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-size: 1.03rem; }
.brand small { margin-top: 3px; color: var(--muted); font-size: .72rem; }

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: white;
  font-size: 1.1rem;
  font-weight: 950;
  box-shadow: 0 10px 28px rgba(109,40,217,.27);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: .87rem;
  font-weight: 780;
}
.site-nav a {
  padding: 8px 3px;
  color: #f5effb;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:not(.nav-cta):hover,
.site-nav a.is-active { color: #caa7ff; }
.site-nav a.is-active { box-shadow: inset 0 -2px var(--purple-bright); }

.nav-cta {
  padding: 10px 16px !important;
  border-radius: 999px;
  background: white;
  color: var(--text-dark) !important;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

.age-gate {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 15% 12%, rgba(155,93,229,.28), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(109,40,217,.25), transparent 34%),
    rgba(7,4,11,.97);
  color: white;
  backdrop-filter: blur(14px);
}
.age-gate[hidden] { display: none; }
.age-gate__panel {
  width: min(100%, 600px);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(38,21,55,.97), rgba(16,9,25,.99));
  box-shadow: var(--shadow-dark);
  text-align: center;
}
.age-gate__panel .brand-mark { margin: 0 auto 24px; }
.age-gate__panel h1 { font-size: clamp(2rem, 7vw, 3.4rem); }
.age-gate__panel p { color: var(--muted); }
.age-gate__panel .eyebrow { color: #caa7ff; }
.age-gate__panel .button-row { margin-top: 28px; }
.fine-print { margin: 20px 0 0; font-size: .82rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 105px) 0 clamp(76px, 9vw, 120px);
  background:
    radial-gradient(circle at 14% 17%, rgba(155,93,229,.25), transparent 31%),
    radial-gradient(circle at 90% 78%, rgba(109,40,217,.2), transparent 32%),
    linear-gradient(145deg, #09050e, #1b0f2a 58%, #0d0814);
  color: white;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(310px, .72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 92px);
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--dark .eyebrow,
.toy-section .eyebrow,
.final-cta .eyebrow { color: #caa7ff; }

.hero h1 { max-width: 790px; margin-bottom: 24px; }
.hero-lead {
  max-width: 680px;
  margin-bottom: 27px;
  color: #ddd2e8;
  font-size: clamp(1.1rem, 2vw, 1.36rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}
.hero-badges span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #f7f1fc;
  font-size: .82rem;
  font-weight: 780;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  margin-bottom: 3px;
}
.hero-contact span { color: var(--muted); }
.hero-contact a { color: white; font-weight: 880; text-underline-offset: 4px; }
.copy-button,
.footer-button,
.weather-refresh {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .77rem;
}
.copy-button:hover,
.footer-button:hover,
.weather-refresh:hover { color: white; border-color: var(--purple-bright); }
.microcopy { margin: 0; color: #a997b7; font-size: .83rem; }

.hero-photo {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 30px;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow-dark);
  transform: rotate(1deg);
}
.hero-photo::before {
  position: absolute;
  z-index: -1;
  inset: 12% -12% -9% 14%;
  border-radius: 50%;
  background: rgba(155,93,229,.23);
  filter: blur(62px);
  content: "";
}
.hero-photo img {
  width: 100%;
  max-height: 690px;
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 30%;
}
.hero-photo figcaption {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(13,8,20,.87);
  color: white;
  font-size: .75rem;
  font-weight: 730;
  backdrop-filter: blur(12px);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(114,227,166,.14);
}

.quick-facts {
  position: relative;
  z-index: 2;
  margin-top: -37px;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fact-card {
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.fact-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fact-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--purple-deep);
  font-size: 2rem;
  letter-spacing: -.05em;
}
.fact-card p { margin: 0; color: var(--muted-dark); font-size: .92rem; }

.section { padding: clamp(75px, 10vw, 130px) 0; }
.section--dark,
.toy-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(155,93,229,.17), transparent 28%),
    linear-gradient(145deg, #0c0712, #211232);
  color: white;
}
.section--lavender { background: var(--lavender-2); }

.section-heading {
  max-width: 790px;
  margin-bottom: 45px;
}
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 17px; }
.section-heading > p:last-child,
.section-copy { color: var(--muted-dark); font-size: 1.04rem; }
.section-copy-light { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}
.prose { font-size: 1.05rem; }
.prose p { color: #5f526a; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.feature-grid--four { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  padding: 29px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 13px 40px rgba(45,18,68,.08);
}
.feature-card h3 { margin-bottom: 11px; }
.feature-card p { color: var(--muted-dark); }
.feature-card a { color: var(--purple-deep); font-weight: 820; text-decoration: none; }
.feature-card a:hover { text-decoration: underline; text-underline-offset: 4px; }
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 14px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: .84rem;
  font-weight: 950;
}


.breadcrumbs {
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-2);
}
.breadcrumbs__inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  color: var(--muted-dark);
  font-size: .82rem;
}
.breadcrumbs__inner a {
  color: var(--purple-deep);
  font-weight: 800;
  text-decoration: none;
}
.breadcrumbs__inner a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumbs__inner [aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero {
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(155,93,229,.24), transparent 32%),
    linear-gradient(145deg, #0b0611, #1d102d);
  color: white;
}
.page-hero--compact { padding: clamp(65px, 8vw, 105px) 0; }
.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: center;
  gap: clamp(45px, 8vw, 90px);
}
.page-hero h1 { max-width: 950px; margin-bottom: 23px; }
.page-lead {
  max-width: 820px;
  margin-bottom: 0;
  color: #ddd2e8;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.page-hero__grid img {
  width: 100%;
  max-height: 520px;
  border: 1px solid var(--line);
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow-dark);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.info-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.info-panel--dark { background: var(--ink-panel); color: white; }
.info-panel--dark .eyebrow { color: #caa7ff; }
.info-panel--dark .check-list { color: var(--muted); }

.check-list { margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 27px;
  color: var(--muted-dark);
}
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--purple-deep);
  font-weight: 950;
  content: "✓";
}

.quote-panel { max-width: 900px; text-align: center; }
.quote-panel blockquote {
  margin: 0 0 32px;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  font-weight: 820;
  line-height: 1.18;
  letter-spacing: -.035em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 33px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.service-card h2 { font-size: 1.7rem; }
.service-card p { margin-bottom: 0; color: var(--muted-dark); }
.service-number {
  display: block;
  margin-bottom: 28px;
  color: var(--purple-deep);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.boundaries-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(42px, 8vw, 95px);
}
.limit-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}
.limit-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #f6f0fb;
  font-size: .88rem;
  font-weight: 780;
}

.feature-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-image img { width: 100%; max-height: 620px; object-fit: cover; transition: transform .4s ease; }
.feature-image:hover img { transform: scale(1.025); }

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .85fr;
  gap: 18px;
}
.rate-card,
.availability-card {
  padding: clamp(27px, 4vw, 37px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
}
.rate-card--featured {
  border-color: rgba(109,40,217,.36);
  box-shadow: 0 20px 62px rgba(85,31,148,.14);
}
.rate-label {
  color: var(--purple-deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.rate-card h2 { margin-bottom: 8px; font-size: 1.7rem; }
.rate-card > strong {
  display: block;
  margin-bottom: 20px;
  color: var(--purple-deep);
  font-size: 3.2rem;
  letter-spacing: -.06em;
}
.availability-card { background: var(--ink-panel); color: white; }
.availability-card .eyebrow { color: #caa7ff; }
.availability-card p { color: var(--muted); }
.availability-card hr { margin: 27px 0; border: 0; border-top: 1px solid var(--line); }
.availability-card h2 { font-size: 2.25rem; }
.availability-card h3 { margin-bottom: 7px; }

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}
.policy-card {
  padding: 31px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
}
.policy-card h2 { font-size: 1.55rem; }
.policy-card p:last-child { margin-bottom: 0; color: var(--muted-dark); }

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 57px 1fr;
  gap: 19px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 40px rgba(45,18,68,.07);
}
.steps li > span {
  display: grid;
  width: 57px;
  height: 57px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple-deep);
  font-weight: 950;
}
.steps h2 { margin: 4px 0 8px; font-size: 1.45rem; }
.steps p { margin: 0; color: var(--muted-dark); }

.message-builder {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: clamp(40px, 8vw, 90px);
}
.message-builder > div:first-child p:last-child { color: var(--muted); }
.message-template {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.message-template textarea {
  width: 100%;
  min-height: 315px;
  margin-bottom: 17px;
  padding: 19px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(7,4,11,.62);
  color: white;
  line-height: 1.55;
}
.copy-status { min-height: 1.5em; margin: 11px 0 0; color: #caa7ff; font-size: .86rem; }

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.checklist-grid > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: white;
}
.checklist-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple-deep);
  font-weight: 950;
}
.checklist-grid p { margin: 4px 0 0; color: var(--muted-dark); }

.gallery-preview {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: clamp(42px, 8vw, 88px);
}
.gallery-preview__copy p:not(.eyebrow) { color: var(--muted); }
.gallery-preview__images {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, 250px);
  gap: 14px;
}
.gallery-preview__images a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.gallery-preview__images a:first-child { grid-row: 1 / 3; }
.gallery-preview__images img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-preview__images a:hover img { transform: scale(1.035); }

.booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 7vw, 85px);
}
.booking-banner > div:first-child { max-width: 730px; }
.booking-banner p:last-child { color: var(--muted-dark); }
.booking-banner__actions { display: grid; min-width: 260px; gap: 11px; }

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 17px;
}
.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
  color: white;
  text-decoration: none;
}
.gallery-item--wide { grid-column: span 8; }
.gallery-item--tall { grid-column: span 4; grid-row: span 2; min-height: 737px; }
.gallery-item--portrait { grid-column: span 4; }
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.gallery-item::after {
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(transparent, rgba(7,4,11,.88));
  content: "";
}
.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  font-size: .88rem;
  font-weight: 850;
}
.gallery-item:hover img { transform: scale(1.035); filter: brightness(1.06); }

.toy-layout {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 8vw, 92px);
}
.toy-photo { position: relative; }
.toy-photo::before {
  position: absolute;
  inset: 9% -8% -6% 10%;
  border-radius: 45%;
  background: rgba(155,93,229,.2);
  filter: blur(58px);
  content: "";
}
.toy-photo a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #08040c;
  box-shadow: var(--shadow-dark);
}
.toy-photo img { width: 100%; max-height: 730px; object-fit: cover; }
.toy-photo a > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13,8,20,.84);
  color: white;
  font-size: .76rem;
  font-weight: 830;
}
.toy-copy > p:not(.eyebrow) { color: var(--muted); }
.toy-list { display: flex; flex-wrap: wrap; gap: 9px; margin: 28px 0; }
.toy-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.065);
  color: #f8f2fc;
  font-size: .85rem;
  font-weight: 770;
}
.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--lavender);
  color: #4e3270;
}
.notice--dark {
  margin-bottom: 26px;
  background: rgba(155,93,229,.14);
  color: #eee3fb;
}

.faq-grid { display: grid; gap: 12px; }
.faq-grid--preview { grid-template-columns: repeat(2, 1fr); }
.faq-grid details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 8px 27px rgba(45,18,68,.05);
}
.faq-grid summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 21px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after { color: var(--purple-deep); font-size: 1.4rem; content: "+"; }
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p { margin: 0; padding: 0 21px 20px; color: var(--muted-dark); }
.center-action { margin-top: 30px; text-align: center; }
.faq-page { display: grid; gap: 60px; }
.faq-category > h2 { margin-bottom: 25px; font-size: 2rem; }
.faq-category .faq-grid { grid-template-columns: repeat(2, 1fr); }

.weather-section { padding-top: clamp(80px, 10vw, 125px); padding-bottom: clamp(80px, 10vw, 125px); }
.weather-widget {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 10%, rgba(181,124,255,.24), transparent 31%),
    linear-gradient(145deg, #100919, #241439);
  color: white;
  box-shadow: var(--shadow-dark);
}
.weather-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(26px, 5vw, 45px);
  border-bottom: 1px solid var(--line);
}
.weather-header h2 { margin-bottom: 10px; }
.weather-header p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); }
.weather-header .eyebrow { color: #caa7ff; }
.weather-refresh { flex: 0 0 auto; min-height: 42px; padding-inline: 15px; color: white; }
.weather-loading,
.weather-error {
  display: flex;
  min-height: 230px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 30px;
  color: var(--muted);
  text-align: center;
}
.weather-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--purple-bright);
  border-radius: 50%;
  animation: weather-spin .8s linear infinite;
}
@keyframes weather-spin { to { transform: rotate(360deg); } }

.weather-current {
  display: grid;
  grid-template-columns: 110px minmax(180px,.7fr) minmax(360px,1.3fr);
  align-items: center;
  gap: 25px;
  padding: clamp(27px, 5vw, 45px);
}
.weather-current__icon { font-size: 5rem; line-height: 1; text-align: center; }
.weather-condition { margin-bottom: 0; color: #d7c8e6; font-weight: 790; }
.weather-temp { font-size: clamp(3.6rem, 8vw, 6.2rem); font-weight: 900; line-height: .95; letter-spacing: -.08em; }
.weather-temp small { margin-left: 5px; font-size: 1.2rem; font-weight: 720; letter-spacing: 0; }
.weather-feels { margin: 10px 0 0; color: var(--muted); }
.weather-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin: 0;
}
.weather-details > div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.weather-details dt { color: #bfaece; font-size: .74rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.weather-details dd { margin: 3px 0 0; font-weight: 850; }
.weather-days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.weather-day { padding: 22px; border-right: 1px solid var(--line); text-align: center; }
.weather-day:last-child { border-right: 0; }
.weather-day__name { margin-bottom: 10px; color: #c9b8d8; font-size: .8rem; font-weight: 850; text-transform: uppercase; }
.weather-day__icon { margin-bottom: 8px; font-size: 2rem; }
.weather-day__condition { min-height: 2.8em; margin-bottom: 9px; color: var(--muted); font-size: .82rem; line-height: 1.35; }
.weather-day__temps { font-weight: 900; }
.weather-day__temps span { color: #bfaece; font-weight: 740; }
.weather-day__rain { margin: 7px 0 0; color: #bfaece; font-size: .76rem; }
.weather-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.13);
  color: #aa99b9;
  font-size: .76rem;
}
.weather-footer a { color: #d7bfff; text-underline-offset: 3px; }

.legal-card {
  max-width: 900px;
  padding: clamp(29px, 6vw, 66px);
  border: 1px solid var(--line-dark);
  border-radius: 29px;
  background: white;
  box-shadow: var(--shadow);
}
.legal-updated { color: var(--muted-dark); font-size: .9rem; }
.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 45px;
}
.legal-summary > div { padding: 20px; border-radius: 15px; background: var(--lavender-2); }
.legal-summary strong, .legal-summary span { display: block; }
.legal-summary strong { margin-bottom: 5px; color: var(--purple-deep); }
.legal-summary span { color: var(--muted-dark); font-size: .86rem; }
.legal-card h2 { margin: 37px 0 10px; font-size: 1.45rem; }
.legal-card p { color: #5e5068; }
.legal-card a:not(.button) { color: var(--purple-deep); }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 45px; }


.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.profile-card {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 19px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 10px 32px rgba(45,18,68,.07);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.profile-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
  box-shadow: 0 16px 40px rgba(85,31,148,.12);
}
.profile-card__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-weight: 950;
}
.profile-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.profile-card strong { line-height: 1.25; }
.profile-card small {
  margin-top: 4px;
  color: var(--muted-dark);
}
.profile-card > span:last-child {
  color: var(--purple-deep);
  font-size: 1.2rem;
  font-weight: 900;
}
.profile-notice { margin-top: 22px; }

.final-cta {
  padding: 65px 0;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-dark));
  color: white;
}
.final-cta h2 { max-width: 720px; margin-bottom: 0; }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }

.site-footer {
  padding: 67px 0 24px;
  background: #09050e;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .8fr .95fr 1fr;
  gap: 37px;
}
.footer-intro p { max-width: 370px; color: var(--muted); font-size: .91rem; }
.brand--footer { margin-bottom: 18px; }
.footer-grid h2 {
  margin-bottom: 16px;
  color: #caa7ff;
  font-size: .82rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div > a:not(.brand),
.footer-grid > div > span,
.footer-button {
  margin: 4px 0;
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
}
.footer-grid > div > a:hover { color: white; }
.footer-button { padding: 0; border: 0; }
.footer-weather-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 49px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #9d8bab;
  font-size: .78rem;
}

.lightbox {
  position: fixed;
  z-index: 10500;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(50px,1fr) minmax(0,1200px) minmax(50px,1fr);
  align-items: center;
  padding: 24px;
  background: rgba(5,2,8,.97);
  color: white;
  backdrop-filter: blur(13px);
}
.lightbox[hidden] { display: none; }
.lightbox__figure { grid-column: 2; max-height: calc(100vh - 48px); margin: 0; text-align: center; }
.lightbox__figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 100px); margin: auto; border-radius: 14px; box-shadow: var(--shadow-dark); }
.lightbox__figure figcaption { margin-top: 10px; color: var(--muted); font-size: .87rem; }
.lightbox__close,
.lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: white;
  cursor: pointer;
}
.lightbox__close { position: absolute; z-index: 2; top: 18px; right: 18px; width: 48px; height: 48px; font-size: 2rem; }
.lightbox__nav { width: 52px; height: 52px; justify-self: center; font-size: 2.4rem; }
.lightbox__nav--previous { grid-column: 1; }
.lightbox__nav--next { grid-column: 3; }

.noscript {
  position: fixed;
  z-index: 12000;
  right: 12px;
  bottom: 12px;
  max-width: 430px;
  padding: 13px 16px;
  border-radius: 10px;
  background: white;
  color: black;
  box-shadow: var(--shadow);
  font-size: .85rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 15%, rgba(155,93,229,.25), transparent 32%),
    var(--ink);
  color: white;
}
.error-card {
  width: min(100%, 690px);
  padding: clamp(34px, 7vw, 62px);
  border: 1px solid var(--line);
  border-radius: 29px;
  background: var(--ink-panel);
  text-align: center;
  box-shadow: var(--shadow-dark);
}
.error-card .brand-mark { margin: 0 auto 24px; }
.error-card h1 { font-size: clamp(2.5rem, 8vw, 4.7rem); }
.error-card > p:not(.eyebrow) { color: var(--muted); }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 26px 0; }
.error-links a { padding: 8px 13px; border: 1px solid var(--line); border-radius: 999px; color: white; text-decoration: none; }

@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(22,13,36,.99);
    box-shadow: var(--shadow-dark);
  }
  .site-nav.is-open { display: grid; gap: 4px; }
  .site-nav.is-open a { padding: 11px 13px; }
  .site-nav a.is-active { border-radius: 9px; background: rgba(155,93,229,.12); box-shadow: none; }
  .nav-cta { margin-top: 5px; text-align: center; }
  .feature-grid--four { grid-template-columns: repeat(2, 1fr); }
  .rates-grid { grid-template-columns: 1fr 1fr; }
  .availability-card { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .hero-grid,
  .page-hero__grid,
  .split,
  .info-layout,
  .service-grid,
  .boundaries-layout,
  .message-builder,
  .gallery-preview { grid-template-columns: 1fr; }
  .toy-layout { grid-template-columns: minmax(0, 1fr); }
  .toy-photo,
  .toy-copy { min-width: 0; }

  .hero-photo {
    width: min(100%, 460px);
    margin-inline: auto;
    transform: none;
  }
  .page-hero__grid img { max-height: 480px; }
  .facts-grid,
  .feature-grid,
  .rates-grid,
  .steps,
  .policy-grid,
  .faq-grid--preview,
  .faq-category .faq-grid { grid-template-columns: 1fr; }
  .availability-card { grid-column: auto; }
  .quick-facts { margin-top: -22px; }
  .booking-banner,
  .final-cta__inner { align-items: stretch; flex-direction: column; }
  .booking-banner__actions { min-width: 0; }
  .gallery-preview__images { grid-template-rows: repeat(2, 220px); }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--portrait {
    grid-column: auto;
    grid-row: auto;
    min-height: 390px;
  }
  .gallery-item--tall { min-height: 600px; }

  .weather-current { grid-template-columns: 85px 1fr; }
  .weather-details { grid-column: 1 / -1; }
  .weather-days { grid-template-columns: repeat(2, 1fr); }
  .weather-day:nth-child(2) { border-right: 0; }
  .weather-day:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .checklist-grid { grid-template-columns: 1fr; }
  .legal-summary { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.12rem; }

  .hero { padding-top: 51px; }
  .hero-photo img { max-height: 590px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }

  .feature-grid--four,
  .photo-gallery,
  .profile-card-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--portrait { min-height: 340px; }
  .gallery-item--tall { min-height: 510px; }

  .steps li { grid-template-columns: 45px 1fr; padding: 21px; }
  .steps li > span { width: 45px; height: 45px; }

  .weather-header { flex-direction: column; }
  .weather-refresh { width: 100%; }
  .weather-current { grid-template-columns: 1fr; text-align: center; }
  .weather-details { grid-template-columns: repeat(2, 1fr); text-align: left; }
  .weather-days { grid-template-columns: repeat(2, 1fr); }
  .weather-day { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .weather-day:nth-child(even) { border-right: 0; }
  .weather-day:nth-last-child(-n+2) { border-bottom: 0; }
  .weather-footer { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }

  .lightbox { grid-template-columns: 1fr; padding: 68px 12px 74px; }
  .lightbox__figure { grid-column: 1; }
  .lightbox__figure img { max-height: calc(100vh - 160px); }
  .lightbox__nav { position: absolute; bottom: 14px; }
  .lightbox__nav--previous { left: calc(50% - 64px); }
  .lightbox__nav--next { right: calc(50% - 64px); }
}

@media (max-width: 430px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
  .hero-contact { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .age-gate,
  .button,
  .lightbox,
  .weather-refresh { display: none !important; }
  body { background: white; color: black; }
  .legal-card { border: 0; box-shadow: none; }
}

.brand strong {
  white-space: nowrap;
}
@media (max-width: 380px) {
  .brand strong { font-size: .94rem; }
  .brand small { font-size: .68rem; }
}


/* ==========================================================================
   v5 SITEWIDE LAYOUT CORRECTIONS
   ========================================================================== */

:root { --section-space: clamp(68px, 8vw, 112px); }

html { max-width: 100%; overflow-x: clip; }
body { min-width: 320px; }

main, header, footer, section, .container, .header-inner, .hero-grid,
.page-hero__grid, .split, .info-layout, .service-grid, .boundaries-layout,
.rates-grid, .policy-grid, .steps, .message-builder, .gallery-preview,
.toy-layout, .weather-current, .footer-grid, .final-cta__inner { min-width: 0; }

.hero-grid > *, .page-hero__grid > *, .split > *, .info-layout > *,
.service-grid > *, .boundaries-layout > *, .rates-grid > *, .policy-grid > *,
.steps > *, .message-builder > *, .gallery-preview > *, .toy-layout > *,
.weather-current > *, .footer-grid > *, .final-cta__inner > * { min-width: 0; }

h1, h2, h3, h4, p, li, summary, a, button, strong, small, span {
  overflow-wrap: break-word;
}
h1, h2 { text-wrap: balance; }
p, li { text-wrap: pretty; }

.section { padding-block: var(--section-space); }

.button {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.header-inner { position: relative; }
.brand { min-width: 0; flex-shrink: 1; }
.brand > span:last-child { min-width: 0; }
.brand strong {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-toggle { flex: 0 0 auto; }

.age-gate {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding:
    max(16px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
}
.age-gate__panel {
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hero-copy { width: min(100%, 730px); }
.hero h1 { font-size: clamp(3rem, 6.15vw, 5.55rem); }
.hero-photo { width: min(100%, 480px); justify-self: end; }
.hero-photo img { aspect-ratio: 912 / 1800; }

.facts-grid, .feature-grid, .service-grid, .rates-grid, .policy-grid,
.steps, .checklist-grid, .profile-card-grid { align-items: stretch; }

.fact-card, .feature-card, .service-card, .rate-card, .policy-card, .info-panel {
  height: 100%;
}
.feature-card, .service-card, .rate-card, .policy-card {
  display: flex;
  flex-direction: column;
}
.feature-card > a, .rate-card > .button, .service-card > a, .policy-card > a {
  margin-top: auto;
}

.info-panel--dark .check-list li { color: var(--muted); }
.info-panel--dark .check-list li::before { color: var(--purple-bright); }

.page-hero--compact { padding-block: clamp(54px, 6.5vw, 88px); }
.page-hero--compact > .container {
  width: min(calc(100% - 40px), 980px);
  text-align: center;
}
.page-hero--compact h1, .page-hero--compact .page-lead { margin-inline: auto; }
.page-hero--compact h1 { font-size: clamp(2.75rem, 5vw, 4.7rem); }

.page-hero__grid img {
  aspect-ratio: 3 / 2;
  object-position: center;
}

.breadcrumbs { overflow: hidden; }
.gallery-preview__copy { max-width: 520px; }
.gallery-preview__images, .gallery-preview__images a {
  min-width: 0;
  min-height: 0;
}
.booking-banner__actions { flex: 0 0 auto; }

.weather-widget {
  width: min(100%, 1080px);
  margin-inline: auto;
}
.weather-loading, .weather-error { min-height: 170px; }
.weather-current {
  grid-template-columns: 100px minmax(180px, .66fr) minmax(350px, 1.34fr);
}
.weather-details dd { overflow-wrap: anywhere; }

.message-template, .message-template textarea { min-width: 0; }
.message-template textarea { display: block; max-width: 100%; }

.toy-photo a {
  width: min(100%, 560px);
  margin-inline: auto;
}
.toy-copy { max-width: 680px; }

.legal-card { width: min(100%, 900px); }

.profile-card { min-width: 0; }
.profile-card > span:nth-child(2) { overflow: hidden; }
.profile-card strong, .profile-card small, .footer-grid a, .footer-grid span,
.footer-grid button { overflow-wrap: anywhere; }

.final-cta__inner .button { flex: 0 0 auto; }
.site-footer { overflow: hidden; }
body.menu-open { overflow: hidden; }

@media (max-width: 1100px) {
  .site-nav {
    left: 14px;
    right: 14px;
    max-height: calc(100dvh - 96px);
    overscroll-behavior: contain;
  }
  .rates-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .availability-card { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .section { padding-block: clamp(62px, 9vw, 82px); }

  .hero-grid, .page-hero__grid, .split, .info-layout, .service-grid,
  .boundaries-layout, .message-builder, .gallery-preview, .toy-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-photo { justify-self: center; }
  .page-hero__grid img {
    width: min(100%, 620px);
    justify-self: center;
  }

  .rates-grid, .policy-grid, .steps, .faq-grid--preview,
  .faq-category .faq-grid { grid-template-columns: minmax(0, 1fr); }

  .availability-card { grid-column: auto; }

  .booking-banner, .final-cta__inner { align-items: stretch; }
  .booking-banner__actions, .booking-banner__actions .button,
  .final-cta__inner .button { width: 100%; }

  .weather-current { grid-template-columns: 84px minmax(0, 1fr); }
  .weather-details { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root {
    --radius: 21px;
    --radius-sm: 13px;
  }

  .container, .page-hero--compact > .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  h2 { font-size: clamp(1.82rem, 8vw, 2.35rem); }
  .section { padding-block: 64px; }

  .site-header, .header-inner { min-height: 70px; }

  .brand-mark {
    width: 39px;
    height: 39px;
  }
  .brand strong { font-size: .96rem; }
  .brand small { font-size: .68rem; }

  .hero {
    padding-top: 46px;
    padding-bottom: 62px;
  }
  .hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.3rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-photo { width: min(100%, 410px); }

  .quick-facts {
    margin-top: 0;
    padding-top: 18px;
    background: var(--paper);
  }

  .fact-card, .feature-card, .service-card, .rate-card, .policy-card,
  .info-panel { padding: 22px; }

  .page-hero--compact { padding-block: 50px; }
  .page-hero--compact > .container { text-align: left; }
  .page-hero--compact h1, .page-hero--compact .page-lead { margin-inline: 0; }
  .page-hero--compact h1 { font-size: clamp(2.2rem, 10vw, 2.85rem); }

  .page-hero { padding-block: 58px; }
  .page-hero__grid { gap: 34px; }
  .page-hero__grid img {
    max-height: 420px;
    border-radius: 20px;
  }

  .button-row .button, .booking-banner__actions .button,
  .legal-actions .button { width: 100%; }

  .gallery-preview__images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 215px 150px;
    gap: 10px;
  }
  .gallery-preview__images a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery-preview__images a { border-radius: 16px; }

  .photo-gallery { grid-template-columns: minmax(0, 1fr); }
  .gallery-item, .gallery-item--wide, .gallery-item--tall,
  .gallery-item--portrait {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .gallery-item--tall, .gallery-item--portrait { aspect-ratio: 3 / 4; }

  .weather-header { padding: 24px 20px; }
  .weather-current {
    grid-template-columns: minmax(0, 1fr);
    padding: 26px 20px;
    text-align: center;
  }
  .weather-current__icon { font-size: 4rem; }
  .weather-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }
  .weather-days { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weather-day { padding: 18px 12px; }

  .message-template { padding: 18px; }
  .message-template textarea {
    min-height: 350px;
    padding: 16px;
  }

  .legal-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .profile-card {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 16px;
  }
  .profile-card__mark {
    width: 44px;
    height: 44px;
  }

  .final-cta { padding-block: 54px; }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }
  .footer-bottom { margin-top: 36px; }

  .lightbox { padding: 64px 10px 76px; }
}

@media (max-width: 390px) {
  .brand small { display: none; }

  .weather-details, .weather-days {
    grid-template-columns: minmax(0, 1fr);
  }

  .weather-day {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .weather-day:last-child { border-bottom: 0; }

  .profile-card {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 11px;
  }
  .profile-card__mark {
    width: 40px;
    height: 40px;
  }
}


/* ==========================================================================
   v6 HOMEPAGE HERO OVERLAP FIX
   Keeps the heading above and away from the portrait at every screen width.
   ========================================================================== */

.hero-grid {
  grid-template-columns: minmax(0, 1.32fr) minmax(280px, .68fr);
  gap: clamp(30px, 4.5vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(2.85rem, 5.25vw, 5.05rem);
  line-height: 1.02;
  overflow: visible;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  justify-self: end;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
    gap: 30px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.65rem, 5.4vw, 4.25rem);
  }

  .hero-photo {
    width: min(100%, 350px);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-photo {
    width: min(100%, 420px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    line-height: 1.04;
  }
}


/* ==========================================================================
   v7 HOMEPAGE TITLE REDESIGN
   ========================================================================== */

.hero-copy {
  max-width: 760px;
}

.hero-title {
  display: flex;
  max-width: 760px;
  margin-bottom: 25px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
}

.hero-title__main {
  display: block;
  color: #ffffff;
  font-size: clamp(2.85rem, 5.15vw, 4.95rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.hero-title__location {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 38px;
  color: #caa7ff;
  font-size: clamp(1.25rem, 2.15vw, 1.85rem);
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.hero-title__location::before {
  position: absolute;
  left: 0;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple-bright), var(--purple-deep));
  content: "";
}

@media (min-width: 1181px) {
  .hero-title__main {
    white-space: nowrap;
  }
}

@media (max-width: 1180px) {
  .hero-title {
    max-width: 650px;
  }

  .hero-title__main {
    font-size: clamp(2.65rem, 5.25vw, 4.05rem);
  }

  .hero-title__location {
    font-size: clamp(1.15rem, 2vw, 1.55rem);
  }
}

@media (max-width: 980px) {
  .hero-title {
    max-width: 760px;
  }

  .hero-title__main {
    font-size: clamp(3rem, 8vw, 4.6rem);
  }

  .hero-title__location {
    font-size: clamp(1.25rem, 3.4vw, 1.7rem);
  }
}

@media (max-width: 620px) {
  .hero-title {
    gap: 11px;
    margin-bottom: 22px;
  }

  .hero-title__main {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
    line-height: 1.01;
    letter-spacing: -.052em;
  }

  .hero-title__location {
    padding-left: 31px;
    font-size: clamp(1.08rem, 5.2vw, 1.35rem);
  }

  .hero-title__location::before {
    width: 21px;
  }
}

@media (max-width: 390px) {
  .hero-title__main {
    font-size: clamp(2.2rem, 11.5vw, 2.75rem);
  }
}


/* ==========================================================================
   v8 FINAL HOMEPAGE HERO
   Deliberate line breaks, balanced portrait, and no accidental word wrapping.
   ========================================================================== */

.hero {
  min-height: auto;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: center;
  gap: clamp(42px, 5vw, 74px);
}

.hero-copy {
  z-index: 3;
  width: 100%;
  max-width: 700px;
}

.hero-title-v8 {
  display: flex;
  width: 100%;
  max-width: 700px;
  margin: 0 0 26px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  color: white;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0;
  overflow: visible;
}

.hero-title-v8__primary {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-title-v8__line {
  display: block;
  color: #ffffff;
  font-size: clamp(3.15rem, 4.15vw, 4.25rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.hero-title-v8__location {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 14px 6px 44px;
  border: 1px solid rgba(181, 124, 255, .34);
  border-radius: 999px;
  background: rgba(155, 93, 229, .10);
  color: #d7bcff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: -.015em;
}

.hero-title-v8__location::before {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple-bright), var(--purple-deep));
  content: "";
}

.hero-photo {
  z-index: 1;
  width: min(100%, 390px);
  justify-self: end;
  transform: none;
}

.hero-photo img {
  max-height: 610px;
  object-position: 50% 27%;
}

/* Smaller desktop and landscape tablet */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: 38px;
  }

  .hero-title-v8__line {
    font-size: clamp(2.75rem, 4.25vw, 3.55rem);
  }

  .hero-photo {
    width: min(100%, 350px);
  }
}

/* Stack before the text column becomes cramped. */
@media (max-width: 940px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .hero-copy,
  .hero-title-v8 {
    max-width: 760px;
  }

  .hero-title-v8__line {
    font-size: clamp(3rem, 7.5vw, 4.5rem);
  }

  .hero-photo {
    width: min(100%, 420px);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .hero-title-v8 {
    gap: 13px;
    margin-bottom: 23px;
  }

  .hero-title-v8__line {
    font-size: clamp(2.25rem, 10.8vw, 3rem);
    line-height: 1.01;
    white-space: normal;
  }

  .hero-title-v8__location {
    padding-left: 39px;
    font-size: 1rem;
  }

  .hero-title-v8__location::before {
    left: 13px;
    width: 16px;
  }
}

@media (max-width: 370px) {
  .hero-title-v8__line {
    font-size: clamp(2.05rem, 10.2vw, 2.45rem);
  }

  .hero-title-v8__location {
    font-size: .92rem;
  }
}


/* ==========================================================================
   v9 HOMEPAGE HERO — EXTERNAL COPY OF CRITICAL RULES
   ========================================================================== */

.hero-title-v9 {
  display: flex;
  width: 100%;
  max-width: 640px;
  margin: 0 0 26px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}

.hero-title-v9__line {
  display: block;
  max-width: 100%;
  color: white;
  font-size: clamp(3.35rem, 4.2vw, 4.65rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.hero-title-v9__location {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 7px 15px;
  border: 1px solid rgba(181,124,255,.38);
  border-radius: 999px;
  background: rgba(155,93,229,.12);
  color: #d7bcff;
  font-size: 1.15rem;
  font-weight: 820;
  line-height: 1.1;
}

@media (max-width: 900px) {
  .hero-title-v9 {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-title-v9__line {
    white-space: normal;
  }
}


/* v11 Live Cams */
.live-cams-promo {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(155,93,229,.16), transparent 30%),
    var(--paper);
}
.live-cams-promo__inner,
.live-cams-page {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.72fr);
  align-items: center;
  gap: clamp(36px,7vw,88px);
}
.live-cams-promo__copy { max-width: 720px; }
.live-cams-promo__copy > p:not(.eyebrow):not(.microcopy) { color: var(--muted-dark); font-size: 1.05rem; }
.live-cams-promo__card,
.live-cams-card {
  position: relative;
  padding: clamp(26px,5vw,42px);
  border: 1px solid rgba(155,93,229,.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.live-cams-promo__card {
  background: radial-gradient(circle at 100% 0%,rgba(181,124,255,.19),transparent 34%),linear-gradient(145deg,#100919,#25143a);
  color: white;
}
.live-cams-promo__badge {
  position: absolute; top: 18px; right: 18px;
  display: grid; width: 42px; height: 42px; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: rgba(255,255,255,.07); color: #d7bcff; font-weight: 900;
}
.live-cams-promo__status { display:flex; align-items:center; gap:9px; margin-bottom:24px; color:#c9bad7; font-size:.82rem; font-weight:800; }
.live-cams-promo__card p { color: var(--muted); }
.live-cams-promo__card > a { color:#d7bcff; font-weight:850; text-underline-offset:4px; }
.live-cams-page { align-items:start; grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr); }
.live-cams-page__primary { display:grid; gap:22px; }
.live-cams-card { background:white; }
.live-cams-card--featured { background:radial-gradient(circle at 100% 0%,rgba(155,93,229,.10),transparent 32%),white; }
.live-cams-card__platform {
  display:inline-flex; margin-bottom:22px; padding:7px 12px; border-radius:999px;
  background:var(--lavender); color:var(--purple-deep); font-size:.76rem;
  font-weight:900; letter-spacing:.08em; text-transform:uppercase;
}
.live-cams-card p { color:var(--muted-dark); }
.live-cams-page__aside .info-panel { position:sticky; top:102px; }
@media(max-width:820px){
  .live-cams-promo__inner,.live-cams-page{grid-template-columns:minmax(0,1fr);}
  .live-cams-page__aside .info-panel{position:static;}
}


/* ==========================================================================
   v12 POPULATED PAGE CONTENT
   ========================================================================== */

.check-list--light li {
  color: var(--muted);
}

.check-list--light li::before {
  color: var(--purple-bright);
}

#site-guide .feature-card,
#atmosphere .feature-card,
#availability-factors .feature-card {
  min-height: 100%;
}

#communication-style .split {
  align-items: center;
}

#private-information .feature-card {
  background: rgba(255,255,255,.07);
  border-color: var(--line);
  color: white;
  box-shadow: none;
}

#private-information .feature-card p {
  color: var(--muted);
}

#private-information .feature-card h3 {
  color: white;
}

#message-examples .info-panel--dark p {
  color: var(--muted);
}

#cam-versus-booking .info-panel .button {
  margin-top: 22px;
}

#photo-sets .feature-card,
#cam-etiquette .policy-card {
  height: 100%;
}

@media (max-width: 820px) {
  #communication-style .split {
    gap: 32px;
  }
}


/* ==========================================================================
   v13 ONLYFANS, ADVERTS AND REPOPULATED CONTENT
   ========================================================================== */

@media (max-width: 1220px) {
  .site-nav {
    gap: 12px;
    font-size: .83rem;
  }
}

@media (max-width: 1160px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(22,13,36,.99);
    box-shadow: var(--shadow-dark);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav.is-open a {
    padding: 11px 13px;
  }
}

.onlyfans-promo {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0,175,240,.12), transparent 30%),
    var(--paper);
}

.onlyfans-promo__inner {
  display: grid;
  grid-template-columns: minmax(280px,.75fr) minmax(0,1.25fr);
  align-items: center;
  gap: clamp(38px,7vw,90px);
}

.onlyfans-promo__visual {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.2), transparent 24%),
    linear-gradient(145deg,#00aff0,#7656ff 58%,#1a1030);
  color: white;
  box-shadow: var(--shadow);
}

.onlyfans-promo__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-weight: 900;
}

.onlyfans-promo__wordmark {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.4rem,5vw,4.4rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.06em;
}

.onlyfans-promo__visual p {
  margin: 0;
  color: rgba(255,255,255,.84);
}

.onlyfans-promo__copy {
  max-width: 720px;
}

.onlyfans-promo__copy > p:not(.eyebrow):not(.microcopy) {
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.onlyfans-page {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr);
  align-items: start;
  gap: clamp(28px,6vw,70px);
}

.onlyfans-page__primary {
  display: grid;
  gap: 22px;
}

.onlyfans-card {
  padding: clamp(28px,5vw,46px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.onlyfans-card--featured {
  border-color: rgba(0,175,240,.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(0,175,240,.10), transparent 32%),
    white;
}

.onlyfans-card__platform {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e7f8ff;
  color: #0077a8;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.onlyfans-card p {
  color: var(--muted-dark);
}

.onlyfans-page__aside .info-panel {
  position: sticky;
  top: 102px;
}

.advert-listing-section {
  overflow: hidden;
}

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

.advert-card-grid--page {
  max-width: 900px;
}

.advert-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 110px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: 0 12px 36px rgba(45,18,68,.08);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.advert-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
  box-shadow: 0 18px 44px rgba(85,31,148,.13);
}

.advert-card__label {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.advert-card__mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg,var(--purple-bright),var(--purple-deep));
  color: white;
  font-weight: 950;
}

.advert-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.advert-card__copy strong {
  font-size: 1.05rem;
}

.advert-card__copy small {
  margin-top: 4px;
  color: var(--muted-dark);
}

.advert-card__arrow {
  color: var(--purple-deep);
  font-size: 1.25rem;
  font-weight: 900;
}

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

.channel-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}

.channel-card__number {
  margin-bottom: 24px;
  color: #caa7ff;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.channel-card h3 {
  color: white;
}

.channel-card p {
  color: var(--muted);
}

.channel-card a {
  margin-top: auto;
  color: #d7bcff;
  font-weight: 850;
  text-decoration: none;
}

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

@media (max-width: 820px) {
  .onlyfans-promo__inner,
  .onlyfans-page {
    grid-template-columns: minmax(0,1fr);
  }

  .onlyfans-promo__visual {
    width: min(100%,620px);
  }

  .onlyfans-page__aside .info-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .advert-card-grid,
  .channel-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .advert-card {
    grid-template-columns: 46px minmax(0,1fr) auto;
    padding: 20px;
  }

  .advert-card__mark {
    width: 46px;
    height: 46px;
  }

  .onlyfans-promo__visual {
    min-height: 260px;
    padding: 24px;
  }

  .onlyfans-card {
    padding: 24px;
  }
}


/* ==========================================================================
   v14 OUTCALLS + CAR CALLS
   ========================================================================== */

@media (max-width: 1320px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(22,13,36,.99);
    box-shadow: var(--shadow-dark);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .site-nav.is-open a {
    padding: 11px 13px;
  }
}

.hero-title-v14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-title-v14__primary {
  display: flex;
  flex-direction: column;
}

.hero-title-v14__line {
  display: block;
}

.hero-title-v14__setting {
  box-shadow: 0 10px 28px rgba(109,40,217,.24);
}

.hero-title-v14__location {
  font-weight: 800;
}

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

.meeting-option-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(27px,4vw,38px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.meeting-option-card--featured {
  border-color: rgba(109,40,217,.36);
  background:
    radial-gradient(circle at 100% 0%,rgba(155,93,229,.10),transparent 32%),
    white;
}

.meeting-option-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.meeting-option-card h3 {
  font-size: clamp(1.45rem,2.3vw,2rem);
}

.meeting-option-card p {
  color: var(--muted-dark);
}

.meeting-option-card .button {
  margin-top: auto;
}

.car-call-hero {
  background:
    radial-gradient(circle at 82% 18%,rgba(155,93,229,.28),transparent 32%),
    radial-gradient(circle at 10% 90%,rgba(181,124,255,.12),transparent 30%),
    linear-gradient(145deg,#0b0611,#1d102d);
}

.car-call-intro {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 17px;
}

.car-call-feature {
  display: grid;
  grid-template-columns: 56px minmax(0,1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 42px rgba(45,18,68,.08);
}

.car-call-feature__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg,var(--purple-bright),var(--purple-deep));
  color: white;
  font-weight: 950;
}

.car-call-feature h2 {
  font-size: 1.45rem;
}

.car-call-feature p:last-child {
  margin-bottom: 0;
  color: var(--muted-dark);
}

#service-settings .info-panel--dark .button {
  margin-top: 20px;
}

#meeting-setting-reminder .prose a {
  color: var(--purple-deep);
  font-weight: 800;
}

@media (max-width: 900px) {
  .meeting-option-grid,
  .car-call-intro {
    grid-template-columns: minmax(0,1fr);
  }

  .car-call-feature {
    grid-template-columns: 50px minmax(0,1fr);
  }

  .car-call-feature__icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 620px) {
  .meeting-option-card,
  .car-call-feature {
    padding: 22px;
  }

  .car-call-feature {
    grid-template-columns: 44px minmax(0,1fr);
    gap: 14px;
  }

  .car-call-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
}


/* ==========================================================================
   v15 EDITORIAL REWRITE
   ========================================================================== */

.hero-title-v15 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-title-v15__primary {
  display: flex;
  flex-direction: column;
}

.hero-title-v15__line {
  display: block;
}

.hero-title-v15__setting {
  box-shadow: 0 10px 28px rgba(109,40,217,.24);
}

.hero-title-v15__location {
  font-weight: 800;
}

.rate-card li,
.policy-card p,
.feature-card p,
.info-panel p,
.meeting-option-card p,
.car-call-feature p {
  text-wrap: pretty;
}

#message-examples .info-panel--dark > p:last-child {
  color: var(--muted);
}

@media (max-width: 620px) {
  .hero-title-v15__line {
    overflow-wrap: normal;
  }
}


/* v16 Current Adverts link fix */
.adverts-directory__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-block:30px}
.advert-link-card{position:relative;display:grid;grid-template-columns:64px minmax(0,1fr);gap:20px;padding:30px;border:2px solid var(--purple);border-radius:var(--radius);background:white;box-shadow:var(--shadow)}
.advert-link-card__tag{position:absolute;top:14px;right:16px;padding:5px 9px;border-radius:999px;background:var(--lavender);color:var(--purple-deep);font-size:.7rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.advert-link-card__logo{display:grid;width:64px;height:64px;place-items:center;border-radius:18px;background:linear-gradient(135deg,var(--purple-bright),var(--purple-deep));color:white;font-size:1.4rem;font-weight:950}
.advert-link-card__content{min-width:0}.advert-link-card__content p{color:var(--muted-dark)}.advert-link-card__button{margin-top:20px}
.advert-fallback{margin-top:26px;padding:24px;border:1px solid var(--line-dark);border-radius:18px;background:var(--lavender-soft)}.advert-fallback a{color:var(--purple-deep);font-weight:900;overflow-wrap:anywhere;text-underline-offset:4px}
@media(max-width:760px){.adverts-directory__grid{grid-template-columns:minmax(0,1fr)}.advert-link-card{grid-template-columns:52px minmax(0,1fr);padding:24px}.advert-link-card__logo{width:52px;height:52px}}


/* ==========================================================================
   v18 PRODUCTION REFRESH
   ========================================================================== */

.production-quick-facts {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line-dark);
  background: #fff;
}

.production-quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  gap: 1px;
  padding-block: 0;
  background: var(--line-dark);
}

.production-quick-facts__grid > * {
  min-height: 96px;
  padding: 22px 24px;
  background: #fff;
}

.production-quick-facts__grid div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.production-quick-facts__grid span {
  color: var(--muted-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.production-quick-facts__grid strong {
  margin-top: 5px;
  color: var(--ink);
  font-size: 1rem;
}

.production-quick-facts__grid > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.mobile-booking-bar {
  display: none;
}

@media (max-width: 980px) {
  .production-quick-facts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 76px;
  }

  .production-quick-facts__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .production-quick-facts__grid > * {
    min-height: auto;
    padding: 17px 20px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 999;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 9px 9px 9px 16px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;
    background: rgba(22,13,36,.97);
    box-shadow: 0 18px 52px rgba(0,0,0,.36);
    backdrop-filter: blur(14px);
  }

  .mobile-booking-bar__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
  }

  .mobile-booking-bar__copy strong {
    color: #fff;
    font-size: .93rem;
  }

  .mobile-booking-bar__copy span {
    overflow: hidden;
    color: var(--muted);
    font-size: .74rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-booking-bar > a {
    display: grid;
    min-height: 44px;
    place-items: center;
    padding-inline: 17px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
    color: #fff;
    font-size: .85rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
  }
}


/* v19 hours availability */
.hours-availability-note{display:block;margin-top:4px;color:var(--muted-dark);font-size:.72rem;font-weight:700}
.mobile-booking-bar__note{display:block;margin-top:1px;color:#c8b9d8;font-size:.63rem;font-weight:700}


/* ==========================================================================
   v20 WORK-AD REFRESH
   ========================================================================== */

.hero-title-v20 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-title-v20__primary {
  display: flex;
  flex-direction: column;
}

.hero-title-v20__line {
  display: block;
  color: #fff;
  font-size: clamp(3.1rem, 5.2vw, 5.15rem);
  font-weight: 950;
  line-height: .91;
  letter-spacing: -.06em;
  text-wrap: balance;
}

.hero-title-v20__setting {
  display: inline-flex;
  padding: 8px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(109,40,217,.3);
}

.hero-title-v20__location {
  color: #d9c5ee;
  font-weight: 800;
}

.production-quick-facts__grid--v20 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.production-quick-facts__grid small {
  margin-top: 3px;
  color: var(--muted-dark);
  font-size: .72rem;
}

.work-ad-summary {
  background:
    radial-gradient(circle at 90% 10%, rgba(155,93,229,.10), transparent 28%),
    var(--paper);
}

.work-ad-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-ad-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(45,18,68,.07);
}

.work-ad-card--accent {
  border-color: rgba(109,40,217,.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(181,124,255,.13), transparent 36%),
    #fff;
}

.work-ad-card__number {
  display: block;
  margin-bottom: 30px;
  color: var(--purple-deep);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .13em;
}

.work-ad-card h3 {
  font-size: 1.35rem;
}

.work-ad-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.services-limits-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.services-limits-layout__intro .button {
  margin-top: 18px;
}

.limit-list--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.serious-inquiries__layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}

.booking-message-checklist {
  display: grid;
  gap: 10px;
}

.booking-message-checklist > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.booking-message-checklist span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-deep);
  color: #fff;
  font-size: .76rem;
  font-weight: 950;
}

.booking-message-checklist p {
  margin: 0;
  color: var(--muted-dark);
}

@media (max-width: 1160px) {
  .production-quick-facts__grid--v20 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .production-quick-facts__grid--v20 > a {
    grid-column: 1 / -1;
  }

  .work-ad-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .serious-inquiries__layout {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  }

  .serious-inquiries__layout > .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .hero-title-v20__line {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .production-quick-facts__grid--v20,
  .work-ad-grid,
  .services-limits-layout,
  .serious-inquiries__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .production-quick-facts__grid--v20 > a,
  .serious-inquiries__layout > .button {
    grid-column: auto;
  }

  .limit-list--compact {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ==========================================================================
   v20 SITE-WIDE SAFETY, NAVIGATION AND REPORT CONTROLS
   ========================================================================== */

.site-utility {
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #0d0714;
  color: #e9dcf4;
  font-size: .78rem;
}
.site-utility__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.site-utility a { color: #fff; font-weight: 800; }
.site-utility__reports { display: inline-flex; align-items: center; gap: 7px; color: #f1dfff !important; }
.site-utility__reports span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #c78bff;
  color: #160d24;
  font-weight: 950;
}
.site-nav .nav-report {
  padding-inline: 12px;
  border: 1px solid rgba(199,139,255,.36);
  border-radius: 999px;
  background: rgba(155,93,229,.13);
  color: #e8d2ff;
}
.site-nav .nav-report:hover,
.site-nav .nav-report.is-active {
  background: linear-gradient(135deg,#a864ef,#7430be);
  color: #fff;
  box-shadow: 0 8px 24px rgba(112,43,172,.28);
}
.reading-progress {
  --reading-progress: 0%;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: var(--reading-progress);
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg,#c78bff,#8b45dc);
  box-shadow: 0 0 16px rgba(199,139,255,.75);
}
.back-to-top {
  position: fixed;
  z-index: 950;
  right: 22px;
  bottom: 88px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  background: #201229;
  color: #fff;
  box-shadow: 0 12px 32px rgba(15,6,23,.28);
  font: 900 1.2rem/1 inherit;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.back-to-top:hover { background: var(--purple-deep); }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.reported-controls {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(260px,1.5fr) minmax(150px,.65fr) minmax(150px,.65fr) auto;
  align-items: end;
}
.reported-control { display: grid; gap: 8px; }
.reported-control label { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.reported-control input,
.reported-control select {
  width: 100%;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.reported-control input:focus,
.reported-control select:focus { border-color: var(--purple-bright); outline: 3px solid rgba(155,93,229,.15); }
.reported-clear {
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--lavender-soft);
  color: var(--purple-deep);
  font-weight: 900;
}
.reported-clear:hover { border-color: var(--purple); background: var(--lavender); }
.reported-controls__summary {
  grid-column: 1 / -1;
  display: flex !important;
  justify-content: space-between !important;
  gap: 16px;
  padding-top: 3px;
}
@media (max-width: 1100px) {
  .site-utility__inner { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .reported-controls { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .site-utility__inner { padding-block: 8px; gap: 14px; }
  .site-utility__inner > span:nth-of-type(2) { display: none; }
  .reported-controls { grid-template-columns: 1fr; }
  .reported-controls__summary { flex-direction: column; }
  .back-to-top { right: 14px; bottom: 82px; width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

/* ==========================================================================
   v21 BOOKING FLOW AND LIVE SAFETY REPORTS
   ========================================================================== */

.booking-path {
  background:
    radial-gradient(circle at 12% 12%, rgba(155,93,229,.1), transparent 30%),
    #fff;
}
.booking-path__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.booking-path__card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(45,18,68,.08);
}
.booking-path__card--action {
  border-color: rgba(109,40,217,.36);
  background: linear-gradient(145deg, #fbf8ff, #f2e8ff);
}
.booking-path__card h3 { margin-bottom: 12px; font-size: 1.38rem; }
.booking-path__card > p:not(.eyebrow) { color: var(--muted-dark); }
.booking-path__card > a:not(.button) { color: var(--purple-deep); font-weight: 900; }
.booking-path__number {
  position: absolute;
  top: 20px;
  right: 23px;
  color: rgba(109,40,217,.16);
  font-size: 3.4rem;
  font-weight: 950;
  line-height: 1;
}

.home-reports {
  padding: clamp(72px, 9vw, 112px) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(199,139,255,.16), transparent 30%),
    linear-gradient(145deg, #0c0712, #211232);
  color: #fff;
}
.home-reports__shell {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.055);
  box-shadow: var(--shadow-dark);
}
.home-reports__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .62fr);
  gap: 30px;
  align-items: start;
}
.home-reports__intro > p:last-child,
.home-reports__status,
.home-reports__trust span { color: #cfc1dc; }
.home-reports__trust {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 17px;
  background: rgba(255,255,255,.055);
}
.home-reports__trust-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #c78bff;
  color: #160d24;
  font-weight: 950;
}
.home-reports__trust strong,
.home-reports__trust span { display: block; }
.home-reports__trust span { margin-top: 4px; font-size: .85rem; }
.home-reports__toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(210px, .72fr) auto auto;
  gap: 14px;
  align-items: end;
  margin: 30px 0 22px;
}
.home-reports__search { display: grid; gap: 8px; }
.home-reports__search label { font-size: .78rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.home-reports__search input {
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.09);
  color: #fff;
  font: inherit;
}
.home-reports__search input::placeholder { color: #b7a8c4; }
.home-reports__search input:focus { border-color: #c78bff; outline: 3px solid rgba(199,139,255,.18); }
.home-reports__status { display: grid; gap: 2px; font-size: .82rem; }
.home-reports__status strong { color: #fff; font-size: .95rem; }
.home-reports__button { min-height: 48px; white-space: nowrap; }

.reported-hero {
  padding: clamp(54px, 7vw, 86px) 0;
  background: linear-gradient(145deg, #0c0712, #211232);
  color: #fff;
}
.reported-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .65fr);
  gap: 38px;
  align-items: center;
}
.reported-privacy,
.reported-notice {
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: #fff;
}
.reported-privacy { border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
.reported-privacy strong,
.reported-privacy span { display: block; }
.reported-privacy span { margin-top: 6px; color: #d6c7e2; }
.reported-notice { margin-bottom: 24px; background: var(--lavender-soft); }
.reported-notice p { margin: 6px 0 0; color: var(--muted-dark); }
.reported-list { display: grid; gap: 18px; }
.reported-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(45,18,68,.08);
}
.reported-card--photo { grid-template-columns: minmax(150px, 220px) minmax(0, 1fr); }
.reported-card__photo { width: 100%; height: 100%; min-height: 210px; object-fit: cover; }
.reported-card__body { padding: clamp(22px, 3vw, 32px); }
.reported-card__body h2 { margin: 14px 0 8px; font-size: 1.5rem; }
.reported-card__body p { margin: 0; color: var(--muted-dark); }
.reported-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted-dark); font-size: .82rem; }
.reported-status {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--purple-deep);
  font-weight: 900;
}
.reported-empty {
  padding: 34px;
  border: 1px dashed var(--line-dark);
  border-radius: 18px;
  text-align: center;
}
.reported-empty h2 { font-size: 1.3rem; }
.reported-empty p { margin-bottom: 0; color: var(--muted-dark); }
.home-reports .reported-empty { border-color: rgba(255,255,255,.22); }
.home-reports .reported-empty p { color: #cfc1dc; }
.reported-source { font-size: .76rem; }
.reported-source[data-state="live"] { color: #1b7f50; }
.home-reports .reported-source[data-state="live"] { color: #83e6b5; }
.reported-source[data-state="backup"],
.reported-source[data-state="stale"] { color: #a35b00; }
.home-reports .reported-source[data-state="backup"],
.home-reports .reported-source[data-state="stale"] { color: #ffd18a; }
.reported-refresh {
  min-height: 48px;
  padding: 11px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
  color: var(--purple-deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.home-reports .reported-refresh { border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); color: #fff; }
.reported-refresh:hover { border-color: var(--purple); background: var(--lavender-soft); }
.home-reports .reported-refresh:hover { background: rgba(199,139,255,.18); }
.reported-refresh:disabled { opacity: .62; cursor: wait; }
.reported-controls { grid-template-columns: minmax(240px,1.5fr) minmax(145px,.65fr) minmax(145px,.65fr) auto auto; }
.reported-controls__summary { display: grid !important; grid-template-columns: auto 1fr auto; align-items: center; }

@media (max-width: 1100px) {
  .booking-path__grid { grid-template-columns: 1fr; }
  .home-reports__toolbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-reports__button { white-space: normal; }
  .reported-controls { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .home-reports__header,
  .reported-hero__grid { grid-template-columns: minmax(0, 1fr); }
  .reported-card--photo { grid-template-columns: minmax(0, 1fr); }
  .reported-card__photo { max-height: 320px; }
}
@media (max-width: 620px) {
  .home-reports__toolbar,
  .reported-controls { grid-template-columns: minmax(0, 1fr); }
  .reported-controls__summary { grid-template-columns: minmax(0, 1fr); }
}
