
: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;
  }
}
