*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body {
  margin: 0;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}

/* Keep the first paint clean while the hero image, fonts, and Swiper layout settle. */
.page-loader {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #fffaf0;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
  animation: loader-failsafe 0.01s linear 5s forwards;
}
.page-loader-inner {
  display: grid;
  justify-items: center;
  width: min(80vw, 20rem);
  text-align: center;
}
.page-loader img {
  width: min(100%, 17rem);
  height: auto;
}
.page-loader p {
  margin: 0.85rem 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
}
.page-loader-rainbow {
  display: flex;
  gap: 0.28rem;
  margin-top: 1rem;
}
.page-loader-rainbow i {
  width: 0.65rem;
  height: 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  animation: loader-bounce 0.72s ease-in-out infinite alternate;
}
.page-loader-rainbow i:nth-child(1) {
  background: var(--red);
}
.page-loader-rainbow i:nth-child(2) {
  background: var(--orange);
  animation-delay: 0.06s;
}
.page-loader-rainbow i:nth-child(3) {
  background: var(--yellow);
  animation-delay: 0.12s;
}
.page-loader-rainbow i:nth-child(4) {
  background: var(--green);
  animation-delay: 0.18s;
}
.page-loader-rainbow i:nth-child(5) {
  background: var(--blue);
  animation-delay: 0.24s;
}
.page-loader-rainbow i:nth-child(6) {
  background: var(--purple);
  animation-delay: 0.3s;
}
.page-ready .page-loader,
.no-js .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes loader-bounce {
  to {
    transform: translateY(-0.45rem);
  }
}
@keyframes loader-failsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Prevent uninitialised horizontal tracks from flashing as broken layouts. */
.js .swiper:not(.swiper-initialized) {
  visibility: hidden;
}
.js.swiper-fallback .swiper,
.no-js .swiper {
  visibility: visible;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: 0;
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-2);
}
p {
  color: var(--ink-soft);
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}
.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}
.section {
  position: relative;
  padding: var(--space-9) 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border: 3px solid var(--ink);
  border-radius: 0.75rem;
  background: var(--yellow);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus {
  transform: translateY(0);
}

/* shared type and buttons */
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 2px 3px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.tag-pink {
  background: var(--pink-soft);
}
.tag-yellow {
  background: var(--yellow);
}
.tag-blue {
  background: var(--blue-soft);
}
.tag-green {
  background: var(--green-soft);
}
.tag-orange {
  background: #ffe1c3;
}
.tag-purple {
  background: var(--purple-soft);
}
.section-heading {
  max-width: 49rem;
  margin-bottom: 3.25rem;
}
.section-heading h2,
.gallery-heading h2 {
  margin-bottom: 1.15rem;
}
.section-heading p:last-child,
.gallery-heading > p {
  max-width: 42rem;
  margin-bottom: 0;
  font-size: var(--step-1);
}
.section-heading.centered {
  text-align: center;
  margin-inline: auto;
}
.section-heading.centered p:last-child {
  margin-inline: auto;
}
.section-heading-light h2,
.section-heading-light p {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.3rem;
  padding: 0.78rem 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 1rem;
  box-shadow: var(--shadow-small);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out),
    filter 0.18s ease;
}
.button svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke-width: 2.5;
}
.whatsapp-icon,
.whatsapp-icon use {
  fill: currentColor;
  stroke: none;
}
.whatsapp-icon {
  color: #25d366;
}
.cake-icon,
.cake-icon use {
  fill: currentColor;
  stroke: none;
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 8px 0 var(--ink);
}
.button:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.button-rainbow {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}
.button-rainbow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rainbow);
  opacity: 0.42;
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
}
.button-rainbow:hover::before {
  transform: translateX(0);
}
.button-rainbow > * {
  position: relative;
}
.button-cloud {
  background: #fff;
}
.button-yellow {
  background: var(--yellow);
}
.button-ink {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 6px 7px 0 rgba(255, 255, 255, 0.65);
  color: #fff;
}
.button-ink:hover {
  box-shadow: 9px 10px 0 rgba(255, 255, 255, 0.8);
}

/* floating navigation */
.site-header {
  position: fixed;
  z-index: var(--z-header);
  inset: 0.7rem 0 auto;
  pointer-events: none;
}
.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 2rem);
  height: var(--header-height);
  margin-inline: auto;
  padding: 0 0.8rem;
  border: 3px solid var(--ink);
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 5px 6px 0 var(--ink);
  pointer-events: auto;
  transition:
    height 0.25s ease,
    transform 0.25s ease;
}
.primary-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.6rem, 1.2vw, 1rem);
  width: 100%;
  height: 100%;
}
.nav-side {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.1vw, 1.1rem);
}
.nav-side-left {
  grid-column: 1;
}
.nav-side-right {
  grid-column: 3;
  justify-content: flex-end;
}
.primary-nav .nav-side a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.2rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  white-space: nowrap;
}
.primary-nav a:not(.nav-book):not(.nav-logo) {
  position: relative;
}
.primary-nav a:not(.nav-book):not(.nav-logo)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.35rem;
  height: 4px;
  border-radius: 99px;
  background: var(--rainbow);
  transition: right 0.25s ease;
}
.primary-nav a:hover::after {
  right: 0;
}
.nav-book {
  padding: 0.5rem 0.9rem !important;
  border: 2px solid var(--ink);
  border-radius: 0.8rem;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-logo img {
  display: block;
  width: clamp(11.8rem, 17vw, 15.8rem);
  height: auto;
  max-height: 3.62rem;
  object-fit: contain;
}

.menu-toggle,
.header-call {
  display: none;
}
.site-header.is-scrolled .header-shell {
  transform: none;
}

/* 1 hero */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(100svh, 54rem);
  padding: 6.6rem 0 3.9rem;
  background: linear-gradient(180deg, #bfeeff 0%, #e5f9ff 55%, #fffaf0 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(
      circle at 11% 18%,
      rgba(255, 255, 255, 0.92) 0 4%,
      transparent 4.2%
    ),
    radial-gradient(
      circle at 78% 13%,
      rgba(255, 255, 255, 0.7) 0 2.5%,
      transparent 2.7%
    ),
    linear-gradient(
      135deg,
      transparent 0 62%,
      rgba(255, 255, 255, 0.38) 62% 67%,
      transparent 67%
    );
}
.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 1.05fr);
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.2rem);
}
.hero-copy {
  position: relative;
  z-index: 4;
  padding: 0.65rem 0;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.38rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 4px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-kicker svg {
  width: 1rem;
  height: 1rem;
  color: var(--pink);
  fill: var(--yellow);
}
.hero h1 {
  max-width: 9.8ch;
  margin-bottom: 1rem;
  font-size: 5.35rem;
  line-height: 0.9;
  text-wrap: pretty;
}
.hero h1 .rainbow-text {
  display: inline;
  color: var(--purple);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow:
    3px 4px 0 #fff,
    6px 7px 0 var(--ink);
}
.hero-lead {
  max-width: 31rem;
  margin-bottom: 1.25rem;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-actions .button {
  min-height: 3rem;
  padding: 0.66rem 1rem;
  font-size: 0.95rem;
}
.hero-mini-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}
.hero-mini-facts span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}
.hero-mini-facts svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--purple);
}
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: 26rem;
  perspective: 900px;
}
.hero-card-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(66%, 24rem);
  min-width: 0;
  max-width: 100%;
}
.hero-card-deck {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
}
.hero-card-deck:active {
  cursor: grabbing;
}
.logo-spotlight {
  position: relative;
  display: grid;
  place-items: center;
  width: min(91%, 38rem);
  aspect-ratio: 1/1;
}
.logo-spotlight::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    12px 14px 0 rgba(36, 19, 79, 0.13),
    inset 0 0 0 14px rgba(255, 255, 255, 0.45);
}
.hero-logo {
  position: relative;
  z-index: 2;
  width: 78%;
  max-height: 35rem;
  object-fit: contain;
}
.hero-photo-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 4px solid var(--ink);
  border-radius: 2.5rem 2.5rem 6.5rem 2.5rem;
  background: var(--blue);
  box-shadow: 10px 11px 0 var(--ink);
  overflow: hidden;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(36, 19, 79, 0.6));
  pointer-events: none;
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 1.15rem;
  bottom: 1rem;
  left: 1.15rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  text-shadow: 2px 2px 0 var(--ink);
}
.hero-deck-actions {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}
.hero-shuffle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--yellow);
  box-shadow: 4px 5px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.hero-shuffle:hover,
.hero-shuffle:focus-visible {
  transform: translate(-1px, -2px);
  box-shadow: 5px 7px 0 var(--ink);
}
.hero-shuffle:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 0 var(--ink);
}
.hero-shuffle svg {
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.25s ease;
}
.hero-shuffle.is-reverse svg {
  transform: rotate(180deg);
}
.hero-card-count {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: #fff;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}
.hero-card-count b {
  font-family: var(--font-display);
  font-size: 1rem;
}
.hero-drag-hint {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
}
.logo-spotlight {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 7rem;
  aspect-ratio: 1;
}
.logo-spotlight::before {
  inset: 8%;
  border-width: 2px;
  box-shadow:
    6px 7px 0 rgba(36, 19, 79, 0.2),
    inset 0 0 0 7px rgba(255, 255, 255, 0.45);
}
.hero-logo {
  width: 74%;
  max-height: 6.25rem;
}
.logo-spotlight,
.sticker-open,
.hero-scribble,
.hero-cloud,
.bubble-a,
.dot-three,
.scroll-cue,
.hero-confetti i:nth-child(n + 5) {
  display: none;
}
.spotlight-ring {
  border-width: 2px;
}
.spotlight-ring {
  position: absolute;
  border: 3px dashed var(--ink);
  border-radius: 50%;
}
.ring-one {
  inset: 5%;
  border-color: var(--pink);
}
.ring-two {
  inset: 0;
  border-color: var(--blue);
  border-style: dotted;
}
.hero-rainbow {
  position: absolute;
  z-index: -2;
  right: -4rem;
  bottom: -3.6rem;
  width: min(48vw, 39rem);
  opacity: 0.88;
  transform: rotate(8deg);
}
.hero-rainbow svg {
  overflow: visible;
}
.rainbow-arc {
  fill: none;
  stroke-width: 28;
  stroke-linecap: round;
}
.arc-red {
  stroke: var(--red);
}
.arc-orange {
  stroke: var(--orange);
}
.arc-yellow {
  stroke: var(--yellow);
}
.arc-green {
  stroke: var(--green);
}
.arc-blue {
  stroke: var(--blue);
}
.arc-purple {
  stroke: var(--purple);
}
.stage-bubble {
  position: absolute;
  z-index: 3;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 5px 0 var(--ink);
}
.bubble-a {
  top: 14%;
  right: 4%;
  width: 4.5rem;
  height: 4.5rem;
  background: var(--yellow);
}
.bubble-b {
  bottom: 15%;
  left: 6%;
  width: 2.6rem;
  height: 2.6rem;
  background: var(--pink);
}
.bubble-c {
  right: 8%;
  bottom: 9%;
  width: 1.65rem;
  height: 1.65rem;
  background: var(--green);
}
.stage-sticker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 5.25rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 6px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 1.15rem;
  line-height: 0.85;
  text-align: center;
  transform: rotate(-9deg);
}
.sticker-party {
  left: 5%;
  top: 28%;
  background: var(--yellow);
}
.sticker-open {
  right: 0;
  bottom: 22%;
  background: var(--pink-soft);
  transform: rotate(8deg);
}
.hero-scribble {
  position: absolute;
  right: 1%;
  top: 6%;
  width: 7rem;
  color: var(--ink);
  transform: rotate(12deg);
}
.hero-scribble path {
  stroke-width: 4;
}
.hero-cloud {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}
.hero-cloud::before,
.hero-cloud::after {
  content: "";
  position: absolute;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: #fff;
}
.cloud-one {
  left: -5rem;
  top: 22%;
  width: 12rem;
  height: 3.4rem;
}
.cloud-one::before {
  left: 1.5rem;
  top: -2.8rem;
  width: 4.8rem;
  height: 3rem;
}
.cloud-one::after {
  right: 1.2rem;
  top: -1.8rem;
  width: 3.7rem;
  height: 2rem;
}
.cloud-two {
  right: -3rem;
  top: 17%;
  width: 10rem;
  height: 3rem;
  transform: scale(0.8);
}
.cloud-two::before {
  left: 1rem;
  top: -2.4rem;
  width: 4rem;
  height: 2.6rem;
}
.cloud-two::after {
  right: 1rem;
  top: -1.5rem;
  width: 3rem;
  height: 1.7rem;
}
.sky-dot {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 3px 0 var(--ink);
}
.dot-one {
  left: 7%;
  top: 59%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--purple);
}
.dot-two {
  left: 46%;
  top: 24%;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--orange);
}
.dot-three {
  right: 8%;
  top: 49%;
  width: 1rem;
  height: 1rem;
  background: var(--green);
}
.hero-confetti i {
  position: absolute;
  z-index: 2;
  width: 0.75rem;
  height: 1.5rem;
  border: 2px solid var(--ink);
  border-radius: 0.2rem;
}
.hero-confetti i:nth-child(1) {
  left: 5%;
  top: 18%;
  background: var(--red);
  transform: rotate(20deg);
}
.hero-confetti i:nth-child(2) {
  left: 20%;
  top: 12%;
  background: var(--yellow);
  transform: rotate(-25deg);
}
.hero-confetti i:nth-child(3) {
  left: 39%;
  top: 24%;
  background: var(--green);
  transform: rotate(42deg);
}
.hero-confetti i:nth-child(4) {
  right: 8%;
  top: 10%;
  background: var(--pink);
  transform: rotate(18deg);
}
.hero-confetti i:nth-child(5) {
  right: 26%;
  top: 28%;
  background: var(--purple);
  transform: rotate(-30deg);
}
.hero-confetti i:nth-child(6) {
  left: 8%;
  bottom: 20%;
  background: var(--blue);
  transform: rotate(55deg);
}
.hero-confetti i:nth-child(7) {
  right: 5%;
  bottom: 22%;
  background: var(--orange);
  transform: rotate(-18deg);
}
.hero-confetti i:nth-child(8) {
  left: 48%;
  bottom: 8%;
  background: var(--red);
  transform: rotate(28deg);
}
.hero-confetti i:nth-child(9) {
  right: 38%;
  top: 13%;
  background: var(--yellow);
  transform: rotate(65deg);
}
.hero-confetti i:nth-child(10) {
  left: 31%;
  bottom: 18%;
  background: var(--pink);
  transform: rotate(-50deg);
}
.hero-confetti i:nth-child(11) {
  right: 16%;
  bottom: 40%;
  background: var(--green);
  transform: rotate(30deg);
}
.hero-confetti i:nth-child(12) {
  left: 13%;
  top: 56%;
  background: var(--purple);
  transform: rotate(-12deg);
}
.scroll-cue {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 2.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  transform: translateX(-50%);
}
.scroll-cue svg {
  width: 1rem;
  height: 1rem;
}
.hero-cloud-floor {
  position: absolute;
  z-index: 2;
  left: -3%;
  right: -3%;
  bottom: -2rem;
  height: 5rem;
  background: radial-gradient(
      circle at 3rem 0,
      #fffaf0 0 3.8rem,
      transparent 3.9rem
    )
    0 0/6rem 5rem repeat-x;
}

/* 2 fact ribbon */
.fact-ribbon {
  position: relative;
  z-index: 5;
  padding: 1rem 0;
  border-block: 3px solid var(--ink);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  transform: rotate(-1.3deg) scale(1.02);
  transform-origin: center;
}
.fact-track {
  display: flex;
  width: max-content;
}
.fact-track span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  white-space: nowrap;
}
.fact-track i {
  color: var(--yellow);
  font-style: normal;
}

/* 3 story */
.zone-story {
  background: var(--cloud);
}
.story-heading {
  text-align: center;
  margin-inline: auto;
}
.story-heading h2 span {
  color: var(--pink);
  text-shadow: 2px 3px 0 var(--ink);
  -webkit-text-stroke: 1px var(--ink);
}
.story-heading p:last-child {
  margin-inline: auto;
}
.story-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.story-card {
  position: relative;
  min-height: 24rem;
  padding: 2rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.story-card h3 {
  margin: 1.5rem 0 0.8rem;
}
.story-card p {
  max-width: 31rem;
  color: var(--ink);
  font-weight: 700;
}
.story-card-play {
  background: var(--blue-soft);
}
.story-card-party {
  background: var(--yellow-soft);
}
.story-card-together {
  grid-column: auto;
  display: block;
  min-height: 24rem;
  background: var(--pink-soft);
}
.story-card-together h3,
.story-card-together p,
.story-card-together a {
  grid-column: auto;
}
.story-card-together h3 {
  margin-top: 1.5rem;
}
.story-card-together a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  margin-top: 1rem;
  border-bottom: 3px solid var(--ink);
  font-family: var(--font-display);
}
.story-card-together a svg {
  width: 1.2rem;
}
.story-icon {
  display: grid;
  place-items: center;
  width: 4.5rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 4px 5px 0 var(--ink);
}
.story-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}
.story-quote {
  display: grid;
  place-items: center;
  width: 9rem;
  min-height: 8.5rem;
  margin: 0 0 0.5rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 9px 10px 0 var(--ink);
  color: #fff;
  font-family: var(--hand);
  font-family: var(--font-hand);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  text-align: center;
  transform: rotate(-5deg);
}
.story-card-lounge {
  background: var(--purple-soft);
}
.card-doodle {
  position: absolute;
  right: 7%;
  bottom: 8%;
  width: 10rem;
  height: 7rem;
}
.doodle-balls i {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 4px 0 var(--ink);
}
.doodle-balls i:nth-child(1) {
  left: 0;
  bottom: 0;
  width: 4.7rem;
  height: 4.7rem;
  background: var(--pink);
}
.doodle-balls i:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 4rem;
  height: 4rem;
  background: var(--green);
}
.doodle-balls i:nth-child(3) {
  left: 37%;
  top: 0;
  width: 3.8rem;
  height: 3.8rem;
  background: var(--yellow);
}
.doodle-confetti i {
  position: absolute;
  width: 1rem;
  height: 2.5rem;
  border: 2px solid var(--ink);
  border-radius: 0.3rem;
}
.doodle-confetti i:nth-child(1) {
  left: 0;
  top: 30%;
  background: var(--red);
  transform: rotate(30deg);
}
.doodle-confetti i:nth-child(2) {
  left: 40%;
  top: 0;
  background: var(--blue);
  transform: rotate(-15deg);
}
.doodle-confetti i:nth-child(3) {
  right: 5%;
  top: 35%;
  background: var(--green);
  transform: rotate(48deg);
}
.doodle-confetti i:nth-child(4) {
  left: 45%;
  bottom: 0;
  background: var(--purple);
  transform: rotate(12deg);
}

/* 4 colour journey */
.colour-journey {
  background: var(--ink);
  overflow: hidden;
}
.colour-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: radial-gradient(circle, #fff 0 1.5px, transparent 1.7px);
  background-size: 25px 25px;
}
.colour-journey .shell {
  position: relative;
}
.journey-controls {
  position: absolute;
  right: 0;
  top: 4rem;
  display: flex;
  gap: 0.65rem;
}
.journey-controls button {
  display: grid;
  place-items: center;
  width: 3.25rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 4px 0 #fff;
  cursor: pointer;
}
.journey-controls button:first-child svg {
  transform: rotate(180deg);
}
.journey-controls svg {
  width: 1.3rem;
}
.journey-viewport {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}
.journey-track {
  display: flex;
  width: 100%;
}
.journey-card {
  position: relative;
  width: clamp(17rem, 27vw, 23rem);
  min-height: 25rem;
  padding: 2rem;
  border: 3px solid #fff;
  border-radius: 2rem;
  box-shadow: 8px 9px 0 #fff;
  color: #fff;
  overflow: hidden;
  flex: 0 0 auto;
}
.journey-controls .swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}
.journey-card-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}
.journey-card::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 8, 57, 0.58) 0%,
    rgba(20, 8, 57, 0.7) 48%,
    rgba(20, 8, 57, 0.9) 100%
  );
  content: "";
}
.journey-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 10rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  z-index: 1;
}
.journey-card > span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journey-card h3 {
  position: relative;
  z-index: 2;
  max-width: 8ch;
  margin: 6rem 0 1rem;
  font-size: var(--step-3);
}
.journey-card p {
  position: relative;
  z-index: 2;
  max-width: 16rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 0 rgba(20, 8, 57, 0.35);
}
.journey-card:hover .journey-card-photo {
  transform: scale(1.08);
}
.journey-card > i {
  display: none;
}
.journey-red {
  background: #ff7182;
}
.journey-orange {
  background: #ffa85c;
}
.journey-yellow {
  background: var(--yellow);
}
.journey-green {
  background: #71df94;
}
.journey-blue {
  background: #74c9ff;
}
.journey-purple {
  background: #bb8afa;
}

/* 5 party */
.party-world {
  min-height: 43rem;
  background: linear-gradient(135deg, #ffdf56 0%, #ffd633 45%, #ff9fca 100%);
  overflow: hidden;
}
.party-rays {
  position: absolute;
  inset: -40%;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255, 255, 255, 0.32) 0deg 9deg,
    transparent 9deg 20deg
  );
  opacity: 0.65;
}
.party-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4rem);
}
.party-copy {
  justify-self: center;
  width: 100%;
  padding: clamp(1.3rem, 1.8vw, 1.9rem);
  border: 3px solid var(--ink);
  border-radius: 2.25rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 8px 10px 0 var(--ink);
}
.party-copy .section-tag {
  min-height: 1.8rem;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.74rem;
  box-shadow: 2px 2px 0 var(--ink);
}
.party-copy h2 {
  max-width: none;
  margin-bottom: 0.7rem;
  font-size: clamp(2.05rem, 3vw, 3.35rem);
  line-height: 0.92;
}
.party-copy > p:not(.section-tag) {
  max-width: 36rem;
  margin-bottom: 0.8rem;
  font-size: clamp(0.98rem, 0.9rem + 0.28vw, 1.12rem);
  line-height: 1.42;
}
.party-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0.9rem 0 1.1rem;
  padding: 0;
  list-style: none;
}
.party-steps li {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  padding: 0.65rem;
  border: 2px solid rgba(36, 19, 79, 0.16);
  border-radius: 1.15rem;
  background: rgba(255, 250, 240, 0.74);
}
.party-steps li > span {
  display: grid;
  place-items: center;
  width: 1.85rem;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.86rem;
}
.party-steps p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
}
.party-steps strong {
  font-size: 0.92rem;
  line-height: 1.15;
}
.party-steps small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.3;
}
.party-copy .button {
  min-height: 2.75rem;
  padding: 0.58rem 0.95rem;
  font-size: 0.86rem;
  box-shadow: 4px 5px 0 var(--ink);
}
.party-visual {
  position: relative;
  min-height: 32rem;
}
.party-photo {
  position: absolute;
  inset: 1.8rem 2rem 2.35rem;
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--ink);
  border-radius: 2rem 2rem 5rem 2rem;
  box-shadow: 11px 12px 0 var(--ink);
  background: var(--cloud);
  transform: rotate(-2deg);
}
.party-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.party-cake {
  display: none;
}
.cake-base,
.cake-top {
  position: absolute;
  left: 50%;
  border: 3px solid var(--ink);
  box-shadow: 8px 9px 0 var(--ink);
  transform: translateX(-50%);
}
.cake-base {
  bottom: 0;
  width: 19rem;
  height: 12rem;
  border-radius: 2rem 2rem 0.9rem 0.9rem;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 2.5rem,
    #fff 2.5rem 5rem
  );
}
.cake-top {
  bottom: 10.5rem;
  width: 14rem;
  height: 7rem;
  border-radius: 2rem 2rem 0.8rem 0.8rem;
  background: var(--blue);
}
.cake-top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  height: 1.4rem;
  background: var(--rainbow);
}
.cake-flame {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: -1rem;
  width: 2.4rem;
  height: 3.6rem;
  border: 3px solid var(--ink);
  border-radius: 55% 45% 50% 50%;
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translateX(-50%) rotate(5deg);
}
.cake-flame::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3.5rem;
  width: 0.7rem;
  height: 3.7rem;
  border: 3px solid var(--ink);
  background: #fff;
  transform: translateX(-50%);
}
.party-balloon {
  position: absolute;
  width: 6rem;
  height: 7.5rem;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 46% 46%;
  box-shadow: 5px 6px 0 var(--ink);
}
.party-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  height: 12rem;
  border-left: 2px solid var(--ink);
}
.balloon-red {
  left: 4%;
  top: 7%;
  background: var(--red);
  transform: rotate(-10deg);
}
.balloon-blue {
  right: 3%;
  top: 13%;
  background: var(--blue);
  transform: rotate(9deg);
}
.balloon-yellow {
  right: 14%;
  bottom: 13%;
  width: 4.7rem;
  height: 6rem;
  background: var(--green);
  transform: rotate(-6deg);
}
.party-star {
  position: absolute;
  color: #fff;
  font-size: 4rem;
  -webkit-text-stroke: 3px var(--ink);
  filter: drop-shadow(4px 5px 0 var(--ink));
}
.star-a {
  left: 8%;
  bottom: 18%;
  transform: rotate(-15deg);
}
.star-b {
  right: 16%;
  top: 3%;
  font-size: 2.8rem;
  transform: rotate(18deg);
}

/* 6 reels */
.reels-section {
  overflow: hidden;
  background: var(--green-soft);
}
.reels-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.reels-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 1rem;
  max-width: 34rem;
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 1.5rem;
  background: var(--cloud);
  box-shadow: 7px 8px 0 var(--ink);
}
.reel-card-one {
  transform: rotate(-3deg);
}
.reel-card-two {
  margin-bottom: 2.25rem;
  transform: rotate(3deg);
}
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}
.reels-copy h2 span {
  color: var(--purple);
  text-shadow: 2px 3px 0 #fff;
}
.reels-copy > p:not(.section-tag) {
  max-width: 35rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: var(--step-1);
}
.reels-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  list-style: none;
}
.reels-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
}
.reels-list svg {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.48rem;
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 3px 4px 0 var(--ink);
}

/* 7 occasions reels */
.occasion-reels {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(255, 223, 86, 0.75) 0 4rem,
      transparent 4.1rem
    ),
    linear-gradient(135deg, var(--pink-soft), #fff 48%, var(--blue-soft));
}
.occasion-reels-heading {
  max-width: 48rem;
  margin-inline: auto;
}
.occasion-reel-grid {
  width: 100%;
  min-width: 0;
  max-width: 67rem;
  margin: 3.5rem auto 0;
  overflow: visible;
}
.occasion-reel-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 3vw, 2.25rem);
}
.occasion-reel {
  position: relative;
  padding: 0.7rem;
  border: 3px solid var(--ink);
  border-radius: 1.8rem;
  background: #fff;
  box-shadow: 7px 8px 0 var(--ink);
}
.occasion-school {
  transform: rotate(-2.5deg);
}
.occasion-birthday {
  margin-top: 2.5rem;
  transform: rotate(1.8deg);
}
.occasion-event {
  transform: rotate(-1.25deg);
}
.occasion-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 13;
  border: 2px solid var(--ink);
  border-radius: 1.15rem;
  background: var(--ink);
}
.occasion-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}
.occasion-video-frame span {
  position: absolute;
  z-index: 1;
  left: 0.65rem;
  top: 0.65rem;
  max-width: calc(100% - 1.3rem);
  padding: 0.3rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
  line-height: 1;
}
.occasion-reel h3 {
  margin: 1.05rem 0 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
}
.occasion-reel p {
  margin: 0 0 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}
.occasion-dots {
  display: none;
}

/* 8 testimonial slider */
.testimonials-section {
  overflow: hidden;
  background: var(--purple);
  color: #fff;
}
.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}
.testimonials-intro h2 {
  max-width: 10ch;
  margin: 0.9rem 0;
  color: #fff;
}
.testimonials-intro > p:not(.section-tag) {
  max-width: 27rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}
.testimonial-scribble {
  display: block;
  margin-top: 1.65rem;
  color: var(--yellow);
  font-family: var(--font-hand);
  font-size: 1.8rem;
  line-height: 1;
  transform: rotate(-4deg);
}
.testimonial-slider {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.testimonial-viewport {
  min-height: 20rem;
}
.testimonial-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(9rem, 0.8fr);
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: 20rem;
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 3px solid var(--ink);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 8px 9px 0 var(--ink);
  color: var(--ink);
  height: auto;
}
.testimonial-copy {
  position: relative;
  display: grid;
  align-content: space-between;
  min-width: 0;
}
.testimonial-photo {
  min-height: 15rem;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 1.3rem;
  background: var(--blue-soft);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-quote-mark {
  position: absolute;
  top: -0.45rem;
  left: 1.4rem;
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}
.testimonial-slide blockquote {
  max-width: 22ch;
  margin: 3rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
}
.testimonial-byline {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
}
.testimonial-byline span {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.testimonial-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}
.testimonial-controls > button,
.testimonial-dots .swiper-pagination-bullet {
  display: grid;
  place-items: center;
  min-width: 2.8rem;
  min-height: 2.8rem;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.testimonial-controls > button:first-child svg {
  transform: rotate(180deg);
}
.testimonial-controls > button svg {
  width: 1.25rem;
  height: 1.25rem;
}
.testimonial-dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  width: auto !important;
}
.testimonial-dots .swiper-pagination-bullet {
  min-width: 0;
  width: 0.7rem;
  min-height: 0;
  height: 0.7rem;
  margin: 0 !important;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  opacity: 1;
}
.testimonial-dots .swiper-pagination-bullet-active {
  background: var(--yellow);
  transform: scale(1.25);
}
.testimonial-controls > button:hover,
.testimonial-controls > button:focus-visible {
  background: #fff;
  color: var(--purple);
}

/* 7 rainbow route */
.reasons-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
}
.reasons-heading {
  max-width: 45rem;
  margin-inline: auto;
}
.reasons-route {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(5rem, 15vw, 15rem);
  row-gap: 2.25rem;
  max-width: 75rem;
  margin: 4rem auto 0;
}
.reasons-trail {
  position: absolute;
  z-index: 0;
  top: 3.2rem;
  bottom: 3.2rem;
  left: 50%;
  width: 8rem;
  height: calc(100% - 6.4rem);
  overflow: visible;
  transform: translateX(-50%);
}
.reasons-trail path {
  fill: none;
  stroke: var(--purple);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 2 7;
}
.reason-stop {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 0.9rem;
}
.reason-stop-left {
  grid-column: 1;
  text-align: right;
}
.reason-stop-right {
  grid-column: 2;
  text-align: left;
}
.reason-stop-left .reason-photo {
  order: 2;
}
.reason-stop-left .reason-copy {
  order: 1;
}
.reason-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 1.35rem 1.35rem;
  background: var(--cloud);
  box-shadow: 6px 7px 0 var(--ink);
}
.reason-photo::after {
  position: absolute;
  right: -0.25rem;
  bottom: -0.25rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 2px 3px 0 var(--ink);
  content: "\2605";
  color: var(--ink);
  font-family: var(--font-display);
}
.reason-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reason-copy {
  position: relative;
  padding: 0.45rem 0.25rem;
}
.reason-copy > span {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 2px 3px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 0.8rem;
}
.reason-copy h3 {
  margin: 0.65rem 0 0.4rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 0.98;
}
.reason-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.reason-safety .reason-copy > span,
.reason-variety .reason-copy > span {
  background: var(--blue);
}
.reason-family .reason-copy > span,
.reason-cafe .reason-copy > span {
  background: var(--green);
}
.reason-active .reason-copy > span,
.reason-hours .reason-copy > span {
  background: var(--yellow);
}
.reason-party .reason-copy > span,
.reason-staff .reason-copy > span {
  background: var(--pink);
}

/* 8 gallery */
.gallery-section {
  background: #fff;
}
.gallery-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}
.gallery-heading > p {
  justify-self: end;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}
.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 3px solid var(--ink);
  border-radius: 1.65rem;
  box-shadow: var(--shadow-small);
  overflow: hidden;
  background: var(--cloud);
  transform-origin: center;
}
.approved-media-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(
      circle at 26% 26%,
      rgba(255, 255, 255, 0.92) 0 0.38rem,
      transparent 0.42rem
    ),
    linear-gradient(
      135deg,
      var(--blue-soft),
      var(--yellow-soft) 52%,
      var(--pink-soft)
    );
}
.gallery-card:nth-child(n) {
  grid-column: auto;
  grid-row: auto;
}
.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.approved-media-card .gallery-image {
  position: relative;
  z-index: 1;
}
.gallery-card-logo img {
  object-fit: contain;
  padding: 1.2rem;
  background: linear-gradient(
    145deg,
    var(--blue-soft),
    #fff 60%,
    var(--yellow-soft)
  );
}
.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 3px 4px 0 var(--ink);
}
.gallery-card figcaption span {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
}
.gallery-card figcaption small {
  margin-top: 0.25rem;
  color: var(--ink-soft);
}

/* 7 about */
.about-section {
  position: relative;
  overflow: hidden;
  background: var(--purple-soft);
}
.about-section::before,
.about-section::after {
  position: absolute;
  content: "";
  width: 22rem;
  aspect-ratio: 1;
  border: 2.5rem solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  pointer-events: none;
}
.about-section::before {
  top: -13rem;
  left: -10rem;
}
.about-section::after {
  right: -12rem;
  bottom: -15rem;
}
.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.about-visual {
  position: relative;
  min-height: 31rem;
}
.about-photo-frame {
  position: absolute;
  inset: 0 2.6rem 0 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 2rem;
  background: var(--yellow-soft);
  box-shadow: 10px 11px 0 var(--ink);
  transform: rotate(-2deg);
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-logo {
  position: absolute;
  right: -0.3rem;
  bottom: 1rem;
  z-index: 1;
  width: clamp(6.3rem, 11vw, 9.3rem);
  padding: 0.45rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--cloud);
  box-shadow: 5px 6px 0 var(--ink);
  transform: rotate(8deg);
}
.about-badge {
  position: absolute;
  z-index: 2;
  top: 1.3rem;
  right: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.65rem 0.9rem;
  border: 3px solid var(--ink);
  border-radius: 99px;
  background: var(--yellow);
  box-shadow: 4px 5px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  transform: rotate(5deg);
}
.about-badge i {
  font-style: normal;
}
.about-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}
.about-copy h2 {
  max-width: 18ch;
}
.about-copy > p:not(.section-tag) {
  max-width: 61ch;
  margin-top: 1rem;
  color: var(--ink-soft);
}
.about-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.7rem 0;
}
.about-promises > div {
  display: grid;
  justify-items: start;
  gap: 0.45rem;
  min-height: 6.8rem;
  padding: 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 3px 4px 0 var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.05;
}
.about-promises svg {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--purple);
  stroke-width: 2.2;
}
.gallery-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.rainbow-room {
  background: var(--blue-soft);
}
.rainbow-room span {
  position: absolute;
  left: 50%;
  bottom: -5rem;
  width: 20rem;
  height: 20rem;
  border: 2.5rem solid var(--red);
  border-right-color: var(--orange);
  border-bottom-color: var(--purple);
  border-radius: 50%;
  transform: translateX(-50%);
}
.rainbow-room i,
.rainbow-room b {
  position: absolute;
  bottom: 1rem;
  width: 8rem;
  height: 3rem;
  border: 3px solid var(--ink);
  border-radius: 99px;
  background: #fff;
}
.rainbow-room i {
  left: -1rem;
}
.rainbow-room b {
  right: -1rem;
}
.party-pop {
  background: var(--pink-soft);
}
.party-pop span {
  position: absolute;
  left: 50%;
  top: 25%;
  width: 7rem;
  height: 6rem;
  border: 3px solid var(--ink);
  background: var(--yellow);
  box-shadow: 6px 7px 0 var(--ink);
  transform: translateX(-50%);
}
.party-pop span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1rem;
  bottom: -1rem;
  width: 1.2rem;
  background: var(--red);
  transform: translateX(-50%);
}
.party-pop i,
.party-pop b,
.party-pop em {
  position: absolute;
  width: 0.8rem;
  height: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: 0.3rem;
}
.party-pop i {
  left: 18%;
  top: 20%;
  background: var(--blue);
  transform: rotate(25deg);
}
.party-pop b {
  right: 18%;
  top: 17%;
  background: var(--green);
  transform: rotate(-22deg);
}
.party-pop em {
  right: 12%;
  bottom: 28%;
  background: var(--purple);
  transform: rotate(42deg);
}
.cloud-play {
  background: linear-gradient(var(--blue), #bfeeff);
}
.cloud-play span,
.cloud-play i,
.cloud-play b {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 4px 5px 0 var(--ink);
}
.cloud-play span {
  left: 10%;
  bottom: 28%;
  width: 9rem;
  height: 4rem;
  border-radius: 99px;
}
.cloud-play i {
  right: 18%;
  top: 20%;
  width: 4rem;
  height: 4rem;
  background: var(--yellow);
}
.cloud-play b {
  left: 35%;
  bottom: 18%;
  width: 3rem;
  height: 3rem;
  background: var(--pink);
}
.star-field {
  background: var(--purple);
}
.star-field span,
.star-field i,
.star-field b {
  position: absolute;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 6rem;
  font-style: normal;
  -webkit-text-stroke: 3px var(--ink);
  filter: drop-shadow(5px 6px 0 var(--ink));
}
.star-field span {
  left: 10%;
  top: 5%;
}
.star-field i {
  right: 15%;
  top: 27%;
  font-size: 4rem;
  color: var(--pink);
}
.star-field b {
  left: 42%;
  bottom: 5%;
  font-size: 3rem;
  color: var(--green);
}
/* 7 visit cards */
.visit-board {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(255, 224, 102, 0.7) 0 4.5rem,
      transparent 4.6rem
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(255, 180, 211, 0.42) 0 7rem,
      transparent 7.1rem
    ),
    linear-gradient(
      135deg,
      var(--blue-soft) 0%,
      var(--cloud) 52%,
      var(--purple-soft) 100%
    );
}
.visit-board::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image: radial-gradient(
    rgba(34, 18, 79, 0.18) 1.25px,
    transparent 1.25px
  );
  background-size: 22px 22px;
  pointer-events: none;
}
.visit-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 4rem;
  align-items: center;
}
.visit-title-wrap h2 {
  margin-bottom: 1rem;
}
.visit-title-wrap > p:last-child {
  font-size: var(--step-1);
}
.visit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.visit-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 9.5rem;
  padding: 1.25rem;
  border: 3px solid var(--ink);
  border-radius: 1.5rem;
  box-shadow: 5px 6px 0 var(--ink);
  background: #fff;
}
.visit-card > svg {
  flex: 0 0 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
}
.visit-card p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}
.visit-card small {
  color: var(--ink-soft);
}
.visit-card strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.visit-card span {
  font-size: 0.9rem;
}
.visit-card > a {
  position: absolute;
  inset: 0;
}
.card-hours > svg {
  background: var(--yellow);
}
.card-place > svg {
  background: var(--blue-soft);
}
.card-call > svg {
  background: var(--green-soft);
}
.card-type > svg {
  background: var(--pink-soft);
}

/* 8 location */
.location-section {
  background: var(--cloud);
}
.location-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.location-copy h2 {
  margin-bottom: 1.25rem;
}
.address {
  max-width: 36rem;
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--ink);
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.map-wrap {
  position: relative;
  min-height: 31rem;
  border: 4px solid var(--ink);
  border-radius: 2rem;
  box-shadow: 12px 14px 0 var(--ink);
  overflow: hidden;
  background: var(--blue-soft);
  transform: rotate(1deg);
}
.map-wrap iframe {
  width: 100%;
  height: 31rem;
  border: 0;
  filter: saturate(0.8) contrast(1.05);
}
.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  display: grid;
  place-items: center;
  width: 4.5rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  background: var(--pink);
  box-shadow: 5px 6px 0 var(--ink);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.map-pin svg {
  width: 2.2rem;
  transform: rotate(45deg);
}
.map-label {
  position: absolute;
  left: 50%;
  top: 64%;
  padding: 0.4rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink);
  font-family: var(--font-hand);
  font-size: 1.3rem;
  transform: translateX(-50%) rotate(-3deg);
}

/* 9 contact */
.contact-split {
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.contact-door {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 16rem;
  padding: 1.6rem;
  border: 3px solid var(--ink);
  border-radius: 2rem;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}
.contact-door:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 10px 14px 0 var(--ink);
}
.contact-door::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 11rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.door-call {
  background: var(--blue-soft);
}
.door-whatsapp {
  background: var(--green-soft);
}
.door-enquire {
  background: var(--pink-soft);
}
.door-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 4px 5px 0 var(--ink);
}
.door-icon svg {
  width: 2rem;
  height: 2rem;
}
.contact-door small {
  margin-top: auto;
  /* padding-top: 3rem; */
  color: var(--ink-soft);
}
.contact-door strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
}
.contact-door em {
  margin-top: 0.4rem;
  font-style: normal;
}
.door-arrow {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

/* 10 finale */
.finale {
  padding: 6rem 0;
  background: var(--purple);
  color: #fff;
  overflow: hidden;
}
.finale::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.18) 0 4rem,
      transparent 4.1rem
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(255, 214, 51, 0.3) 0 8rem,
      transparent 8.1rem
    );
}
.finale-rainbow {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -12rem;
  height: 15rem;
  border: 2.2rem solid var(--red);
  border-top-color: var(--orange);
  border-right-color: var(--yellow);
  border-bottom-color: var(--blue);
  border-radius: 50% 50% 0 0;
  opacity: 0.8;
}
.finale-inner {
  position: relative;
  display: grid;
  grid-template-columns: 16rem 1fr;
  align-items: center;
  gap: 3rem;
}
.finale-inner > img {
  width: 15rem;
  max-height: 16rem;
  object-fit: contain;
  filter: drop-shadow(8px 10px 0 var(--ink));
  transform: rotate(-4deg);
}
.finale h2 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: var(--step-3);
}
.finale p {
  color: #fff;
}
.hand-note {
  color: var(--yellow) !important;
  font-family: var(--font-hand);
  font-size: 2rem;
  line-height: 1;
  transform: rotate(-3deg);
}

/* footer */
.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: #fff;
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.8);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr 0.65fr;
  gap: 3rem;
}
.footer-main h2 {
  margin-bottom: 1rem;
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-main ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-main a:hover {
  color: var(--yellow);
}
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-instagram svg {
  width: 1.1rem;
  height: 1.1rem;
}
.footer-brand img {
  width: 9rem;
  max-height: 10rem;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p {
  max-width: 22rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}
.footer-bottom p {
  margin: 0;
}

/* enquiry dialog */
.enquiry-dialog {
  width: min(calc(100% - 1.5rem), 65rem);
  max-height: min(90svh, 52rem);
  padding: 0;
  border: 0;
  border-radius: 2rem;
  background: transparent;
  overflow: visible;
  color: var(--ink);
}
.enquiry-dialog::backdrop {
  background: rgba(20, 8, 52, 0.68);
  backdrop-filter: blur(8px);
}
.offer-dialog {
  width: fit-content;
  max-width: calc(100vw - 2rem);
  max-height: calc(100svh - 2rem);
  padding: 0;
  border: 0;
  border-radius: 2rem;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}
.offer-dialog::backdrop {
  background: rgba(20, 8, 52, 0.68);
  backdrop-filter: blur(8px);
}
.offer-card {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem;
  overflow: visible;
  border: 4px solid var(--ink);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 12px 14px 0 var(--ink);
}
.offer-card > img {
  display: block;
  width: auto;
  max-width: calc(100vw - 3.8rem);
  height: auto;
  max-height: min(82svh, 46rem);
  border-radius: 1.45rem;
  object-fit: contain;
}
.offer-close {
  position: absolute;
  z-index: 2;
  top: -0.9rem;
  right: -0.9rem;
  display: grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  padding: 0;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink);
  cursor: pointer;
}
.offer-close svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke-width: 2.5;
}
.enquiry-dialog[open] {
  display: block;
}
.dialog-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-height: min(90svh, 52rem);
  border: 4px solid var(--ink);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 12px 14px 0 var(--ink);
  overflow: auto;
}
.dialog-close {
  position: absolute;
  z-index: 4;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink);
  cursor: pointer;
}
.dialog-close svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2.5;
}
.dialog-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 3rem 2rem;
  background: linear-gradient(
    160deg,
    var(--blue-soft),
    #fff 50%,
    var(--pink-soft)
  );
  overflow: hidden;
}
.dialog-art > img {
  position: relative;
  z-index: 2;
  width: min(84%, 17rem);
  filter: drop-shadow(4px 6px 0 rgba(36, 19, 79, 0.3));
}
.dialog-art > p {
  position: relative;
  z-index: 3;
  margin: 1rem 0 0;
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  transform: rotate(-3deg);
}
.dialog-rainbow {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 24rem;
  height: 24rem;
  border: 2rem solid var(--red);
  border-right-color: var(--yellow);
  border-bottom-color: var(--blue);
  border-left-color: var(--purple);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.75;
}
.dialog-cloud {
  position: absolute;
  z-index: 1;
  bottom: 3rem;
  width: 10rem;
  height: 3rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}
.cloud-left {
  left: -2rem;
}
.cloud-right {
  right: -3rem;
  bottom: 8rem;
}
.dialog-form-wrap {
  padding: 2.15rem 2.5rem 2rem;
}
.dialog-form-wrap h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(2rem, 3vw, 2.35rem);
  line-height: 1;
}
.dialog-form-wrap > p:not(.section-tag) {
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.dialog-form-wrap > p strong {
  color: var(--pink);
}
.enquiry-form {
  display: grid;
  gap: 0.65rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.field {
  display: grid;
  gap: 0.2rem;
}
.field label {
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.field input,
.field textarea {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 0.75rem;
  background: var(--cloud);
  color: var(--ink);
  outline: 0;
  transition:
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
.field textarea {
  min-height: 4.8rem;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  background: #fff;
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.field [aria-invalid="true"] {
  border-color: var(--error);
  background: #fff5f7;
}
.field-help,
.field-error {
  font-size: 0.74rem;
  line-height: 1.25;
}
.field-help {
  margin-top: 0.05rem;
  color: var(--ink-soft);
}
.field-error {
  color: var(--error);
  font-weight: 700;
}
.field-error:empty {
  display: none;
}
.form-banner {
  padding: 0.65rem 0.8rem;
  border: 2px solid var(--error);
  border-radius: 0.75rem;
  background: #fff1f4;
  color: var(--error);
  font-weight: 700;
}
.form-submit {
  justify-self: start;
  margin-top: 0.25rem;
}
.form-submit[disabled] {
  cursor: wait;
  filter: grayscale(0.5);
  opacity: 0.7;
}
.form-status {
  min-height: 1rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* persistent mobile actions */
.mobile-action-bar {
  display: none;
}

/* thank you */
.thank-you-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 2rem;
  background: var(--rainbow-soft);
}
.thank-you-card {
  width: min(100%, 46rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 4px solid var(--ink);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 12px 14px 0 var(--ink);
  text-align: center;
}
.thank-you-card .wordmark {
  display: inline-block;
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.thank-you-icon {
  display: grid;
  place-items: center;
  width: 5rem;
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 5px 6px 0 var(--ink);
}
.thank-you-icon svg {
  width: 2.5rem;
  stroke-width: 3;
}
.thank-you-card h1 {
  font-size: var(--step-3);
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.button-outline {
  background: #fff;
}

/* responsive */
@media (max-width: 67rem) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stage {
    min-height: 24.5rem;
  }
  .hero-rainbow {
    right: -7rem;
    bottom: -4rem;
    width: 44rem;
  }
  .party-layout {
    gap: 2rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
  .footer-main > div:last-child {
    grid-column: 2;
  }
  .location-layout {
    gap: 2rem;
  }
}

@media (max-width: 59.99rem) {
  :root {
    --header-height: 4rem;
  }
  .section {
    padding: var(--space-8) 0;
  }
  .site-header {
    inset: 0.5rem 0 auto;
  }
  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 0.65rem;
    height: var(--header-height);
    width: min(calc(100% - 1rem), 75rem);
    padding: 0 0.5rem;
    border-radius: 1.05rem;
    box-shadow: 4px 5px 0 var(--ink);
  }
  .primary-nav {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    height: 100%;
    min-width: 0;
    gap: 0;
  }
  .primary-nav.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }
  .nav-side {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    grid-column: auto;
    gap: 0.15rem;
    padding: 1rem;
    border: 3px solid var(--ink);
    background: #fff;
  }
  .primary-nav.is-open .nav-side {
    display: grid;
  }
  .nav-side-left {
    top: calc(100% + 0.65rem);
    border-radius: 1.2rem 1.2rem 0 0;
    border-bottom-width: 1px;
    box-shadow: 5px 0 0 var(--ink);
  }
  .nav-side-right {
    top: calc(100% + 8.25rem);
    border-radius: 0 0 1.2rem 1.2rem;
    border-top-width: 1px;
    box-shadow: 5px 6px 0 var(--ink);
    justify-content: stretch;
  }
  .primary-nav a {
    justify-content: center;
  }
  .nav-book {
    margin-top: 0.25rem;
  }
  .nav-logo img {
    width: min(11rem, 42vw);
    max-height: 2.45rem;
  }
  .menu-toggle,
  .header-call {
    display: grid;
    place-items: center;
    width: 2.65rem;
    aspect-ratio: 1;
    border: 2px solid var(--ink);
    border-radius: 0.8rem;
    background: var(--yellow);
    cursor: pointer;
  }
  .menu-toggle {
    grid-column: 1;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1.15rem;
    height: 3px;
    border-radius: 9px;
    background: var(--ink);
    transition: transform 0.2s ease;
  }
  .menu-toggle span:last-child {
    margin-top: 0.3rem;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
  .header-call {
    grid-column: 3;
    background: var(--green-soft);
  }
  .header-call svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .hero {
    min-height: auto;
    padding: 5.7rem 0 3.6rem;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy {
    display: grid;
    justify-items: center;
  }
  .hero h1 {
    max-width: 10.25ch;
    font-size: 4rem;
    line-height: 0.92;
  }
  .hero-lead {
    max-width: 29rem;
    font-size: 1.08rem;
  }
  .hero-actions,
  .hero-mini-facts {
    justify-content: center;
  }
  .hero-stage {
    min-height: 21.5rem;
  }
  .logo-spotlight {
    top: -0.25rem;
    right: 0.15rem;
    width: 5.7rem;
  }
  .hero-card-wrap {
    width: min(66%, 17.5rem);
  }
  .hero-photo-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 2.5rem 2.5rem 5rem 2.5rem;
    box-shadow: 9px 10px 0 var(--ink);
  }
  .hero-rainbow {
    right: 50%;
    bottom: -4.8rem;
    width: 36rem;
    transform: translateX(50%) rotate(2deg);
  }
  .hero-scribble {
    right: 8%;
  }
  .sticker-party {
    left: 8%;
  }
  .sticker-open {
    right: 6%;
  }
  .hero-confetti i:nth-child(n + 9) {
    display: none;
  }
  .story-bento {
    grid-template-columns: 1fr;
  }
  .story-card-together {
    grid-column: auto;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .story-card {
    min-height: 21rem;
  }
  .journey-controls {
    top: 4.5rem;
  }
  .party-layout {
    grid-template-columns: 1fr;
  }
  .party-visual {
    min-height: 31rem;
    order: 2;
  }
  .party-photo {
    inset: 1.8rem 3.5rem 2.8rem;
  }
  .party-copy {
    order: 1;
  }
  .reels-layout {
    grid-template-columns: 1fr;
  }
  .reels-media {
    max-width: 27rem;
    margin-inline: auto;
  }
  .occasion-reel-grid {
    gap: 1rem;
  }
  .occasion-birthday {
    margin-top: 1.5rem;
  }
  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .testimonials-intro h2 {
    max-width: none;
  }
  .reasons-route {
    column-gap: 5rem;
  }
  .reason-stop {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .gallery-heading > p {
    justify-self: start;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 2.5rem;
  }
  .about-visual {
    min-height: 25rem;
  }
  .about-promises {
    grid-template-columns: 1fr;
  }
  .about-promises > div {
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 0;
  }
  .visit-layout,
  .location-layout {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-door:last-child {
    grid-column: 1/-1;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main > div:last-child {
    grid-column: auto;
  }
  .dialog-card {
    grid-template-columns: 0.65fr 1.35fr;
  }
  .dialog-form-wrap {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 42rem) {
  body {
    padding-bottom: 5.4rem;
  }
  .shell {
    width: min(calc(100% - 1.25rem), var(--shell));
  }
  .section {
    padding: 4.5rem 0;
  }
  .button {
    width: 100%;
  }
  .hero {
    padding-top: 5.35rem;
  }
  .cloud-one {
    left: -9rem;
    top: 13%;

    opacity: 0.8;
  }
  .cloud-two {
    right: -5rem;
    top: 10%;
    width: 10rem;
    height: 3rem;
    transform: scale(0.8);
  }

  .hero h1 {
    max-width: 10.4ch;
    font-size: 3.45rem;
    line-height: 0.93;
    text-wrap: balance;
  }
  .hero h1 .rainbow-text {
    text-shadow:
      1px 2px 0 #fff,
      3px 4px 0 var(--ink);
  }
  .hero-actions {
    display: grid;
    width: 100%;
    gap: 0.65rem;
  }
  .hero-actions .button {
    min-height: 2.85rem;
    padding: 0.58rem 0.9rem;
  }
  .hero-stage {
    min-height: 19.5rem;
    margin-top: 0.35rem;
  }
  .hero-card-wrap {
    width: min(60%, 14.5rem);
  }
  .hero-deck-actions {
    margin-top: 1rem;
  }
  .hero-drag-hint {
    margin-top: 0.55rem;
  }
  .logo-spotlight {
    top: 0;
    right: 0.55rem;
    width: min(22%, 4.8rem);
  }
  .hero-logo {
    width: 74%;
    max-height: 4.25rem;
  }
  .stage-sticker {
    width: 3.75rem;
    font-size: 0.86rem;
  }
  .sticker-party {
    left: 0;
  }
  .sticker-open {
    right: 0;
  }
  .bubble-a {
    width: 3.4rem;
    height: 3.4rem;
  }
  .scroll-cue {
    bottom: 0.8rem;
    font-size: 0.72rem;
  }
  .fact-track span {
    font-size: 1rem;
  }
  .story-heading {
    text-align: left;
  }
  .story-card {
    min-height: 22rem;
    padding: 1.5rem;
  }
  .card-doodle {
    opacity: 0.75;
  }
  .story-card-together {
    display: block;
  }
  .story-quote {
    min-height: 9rem;
    margin: 0 0 2rem;
  }
  .story-card-together h3 {
    margin-top: 0;
  }
  .journey-controls {
    position: static;
    justify-content: flex-end;
    margin: -2rem 0 1.5rem;
  }
  .journey-viewport {
    margin-inline: -0.625rem;
    padding: 0.5rem 0.625rem 1rem;
  }
  .journey-card {
    width: min(82vw, 22rem);
    min-height: 23rem;
  }
  .journey-card h3 {
    margin-top: 5rem;
  }
  .party-world {
    padding-bottom: 2rem;
  }
  .party-copy {
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 7px 8px 0 var(--ink);
  }
  .party-steps {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin: 1rem 0 1.15rem;
  }
  .party-steps li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.55rem;
    padding: 0.65rem 0.75rem;
  }
  .party-steps small {
    font-size: 0.82rem;
  }
  .party-visual {
    min-height: 28rem;
  }
  .party-cake {
    width: 15rem;
    height: 18rem;
  }
  .cake-base {
    width: 15rem;
    height: 9.5rem;
  }
  .cake-top {
    bottom: 8.2rem;
    width: 11rem;
    height: 6rem;
  }
  .party-balloon {
    width: 4.5rem;
    height: 5.8rem;
  }
  .balloon-yellow {
    display: none;
  }
  .party-star {
    font-size: 3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .reels-media {
    max-width: 19rem;
    gap: 0.7rem;
  }
  .occasion-reel-grid {
    width: auto;
    margin: 2.5rem -0.625rem 0;
    padding: 0.5rem 0.625rem 1.25rem;
    overflow: hidden;
  }
  .occasion-reel-track {
    display: flex;
    gap: 0;
  }
  .occasion-reel {
    width: min(78vw, 19rem);
    flex: 0 0 min(78vw, 19rem);
    transform: none;
  }
  .occasion-birthday {
    margin-top: 0;
  }
  .occasion-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.15rem;
  }
  .occasion-dots .swiper-pagination-bullet {
    width: 0.65rem;
    height: 0.65rem;
    margin: 0 !important;
    border: 2px solid var(--ink);
    background: #fff;
    opacity: 1;
  }
  .occasion-dots .swiper-pagination-bullet-active {
    width: 1.7rem;
    border-radius: 99px;
    background: var(--pink);
  }
  .testimonial-viewport,
  .testimonial-slide {
    min-height: 18rem;
  }
  .testimonial-slide {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-radius: 1.35rem;
    box-shadow: 5px 6px 0 var(--ink);
  }
  .testimonial-photo {
    min-height: 11rem;
    max-height: 13rem;
  }
  .testimonial-quote-mark {
    left: 1rem;
    font-size: 5.5rem;
  }
  .testimonial-slide blockquote {
    margin-top: 2.4rem;
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
  .reasons-route {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2.5rem;
  }
  .reasons-trail {
    left: 1.1rem;
    width: 2rem;
    transform: none;
  }
  .reason-stop,
  .reason-stop-left,
  .reason-stop-right {
    grid-column: 1;
    grid-template-columns: 6.8rem minmax(0, 1fr);
    gap: 0.85rem;
    padding-left: 2.5rem;
    text-align: left;
  }
  .reason-stop-left .reason-photo,
  .reason-stop-left .reason-copy {
    order: initial;
  }
  .reason-photo {
    border-radius: 1.2rem;
    box-shadow: 4px 5px 0 var(--ink);
  }
  .reason-copy {
    padding: 0;
  }
  .reason-copy h3 {
    margin-top: 0.45rem;
  }
  .reel-card {
    border-radius: 1.1rem;
    box-shadow: 4px 5px 0 var(--ink);
  }
  .reel-card-two {
    margin-bottom: 1.2rem;
  }
  .reels-list li {
    align-items: flex-start;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 21rem;
    max-width: 25rem;
    margin-inline: auto;
  }
  .about-photo-frame {
    inset-right: 2.1rem;
  }
  .about-badge {
    right: -0.25rem;
    top: 0.7rem;
    font-size: 0.82rem;
  }
  .about-logo {
    width: 6.3rem;
    right: 0;
  }
  .about-promises {
    grid-template-columns: 1fr;
  }
  .visit-cards {
    grid-template-columns: 1fr;
  }
  .location-actions {
    display: grid;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 25rem;
    height: 25rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-door:last-child {
    grid-column: auto;
  }
  .contact-door {
    min-height: 18rem;
  }
  .finale-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .finale-inner > img {
    width: 11rem;
    margin-inline: auto;
  }
  .finale .button {
    max-width: 20rem;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-main > div:last-child {
    grid-column: auto;
  }
  .footer-brand img {
    width: 8rem;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom p + p {
    margin-top: 0.5rem;
  }
  .enquiry-dialog {
    width: calc(100% - 0.75rem);
    max-height: 96svh;
    margin: auto;
  }
  .offer-dialog {
    width: fit-content;
    max-width: calc(100vw - 1rem);
    max-height: 94svh;
    margin: auto;
  }
  .offer-card {
    max-height: none;
    padding: 0.4rem;
    border-width: 3px;
    border-radius: 1.4rem;
    box-shadow: 5px 6px 0 var(--ink);
    overflow: visible;
  }
  .offer-card > img {
    width: auto;
    max-width: calc(100vw - 1.85rem);
    height: auto;
    max-height: 84svh;
    border-radius: 1rem;
    object-fit: contain;
  }
  .offer-close {
    top: -0.65rem;
    right: -0.35rem;
  }
  .dialog-card {
    display: block;
    max-height: 96svh;
    border-width: 3px;
    border-radius: 1.4rem;
    box-shadow: 5px 6px 0 var(--ink);
  }
  .dialog-art {
    min-height: 13rem;
    padding: 1rem;
  }
  .dialog-art > img {
    width: 8rem;
    max-height: 9rem;
  }
  .dialog-art > p {
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
    max-width: 9rem;
    font-size: 1.35rem;
  }
  .dialog-rainbow {
    top: -7rem;
    width: 20rem;
    height: 20rem;
  }
  .dialog-cloud {
    display: none;
  }
  .dialog-form-wrap {
    padding: 1.4rem 1rem 1.5rem;
  }
  .dialog-form-wrap h2 {
    font-size: 1.9rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-submit {
    width: 100%;
  }
  .dialog-close {
    top: 0.65rem;
    right: 0.65rem;
  }
  .mobile-action-bar {
    position: fixed;
    z-index: var(--z-mobile);
    left: 0.5rem;
    right: 0.5rem;
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    min-height: 4.4rem;
    border: 3px solid var(--ink);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 5px 6px 0 var(--ink);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
    transition:
      transform 0.28s var(--ease-out),
      opacity 0.28s ease,
      visibility 0.28s ease;
  }
  .mobile-action-bar.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-action-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    min-width: 0;
    font-family: var(--font-display);
    font-size: 0.72rem;
  }
  .mobile-action-bar a + a {
    border-left: 2px solid var(--ink);
  }
  .mobile-action-bar svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .mobile-action-bar .mobile-enquire {
    background: var(--yellow);
  }
  .thank-you-page {
    padding: 1rem;
  }
  .thank-you-card {
    padding: 2rem 1.2rem;
    box-shadow: 6px 7px 0 var(--ink);
  }
  .thank-you-actions {
    display: grid;
  }
  .thank-you-actions .button {
    width: 100%;
  }
}

@media (max-width: 22rem) {
  .hero h1 {
    font-size: 2.85rem;
  }
  .hero-stage {
    min-height: 18.25rem;
  }
  .hero-card-wrap {
    width: min(60%, 13.25rem);
  }
  .stage-sticker {
    width: 4rem;
    font-size: 0.9rem;
  }
  .hero-mini-facts {
    display: grid;
  }
  .party-cake {
    transform: translateX(-50%) scale(0.87);
  }
  .contact-door {
    min-height: 16rem;
  }
  .mobile-action-bar {
    left: 0.25rem;
    right: 0.25rem;
  }
}

@media (orientation: landscape) and (max-height: 31rem) and (max-width: 59.99rem) {
  .site-header {
    position: absolute;
  }
  .hero {
    padding-top: 5.4rem;
  }
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .hero-copy {
    justify-items: start;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
  .hero-stage {
    min-height: 19.5rem;
  }
  .hero-card-wrap {
    width: min(58%, 12.5rem);
  }
  .hero-deck-actions {
    margin-top: 0.65rem;
  }
  .hero-drag-hint {
    display: none;
  }
  .hero-actions {
    display: flex;
  }
  .hero-actions .button {
    width: auto;
  }
  .hero-mini-facts {
    justify-content: flex-start;
  }
  .scroll-cue {
    display: none;
  }
  .mobile-action-bar {
    min-height: 3.7rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-action-bar a {
    flex-direction: row;
    gap: 0.4rem;
  }
}

/* Compact portrait hero: keep the primary actions together and give the
   venue photo enough room to read without letting the decorative stage crowd
   the copy. */
@media (max-width: 42rem) and (orientation: portrait) {
  .hero-lead {
    max-width: 23rem;
    margin-bottom: 0.9rem;
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 23rem);
    gap: 0.5rem;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 2.75rem;
    padding: 0.52rem 0.45rem;
    font-size: clamp(1rem, 3.25vw, 0.84rem);
    white-space: nowrap;
  }

  .hero-actions .button svg {
    width: 1rem;
    height: 1rem;
  }

  .hero-stage {
    min-height: 21rem;
    margin-top: 0.1rem;
  }

  .hero-card-wrap {
    width: min(82%, 19rem);
  }

  .hero-photo-frame {
    border-width: 2px;
    border-radius: 1.65rem 1.65rem 3.75rem 1.65rem;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .hero-photo-frame figcaption {
    right: 0.8rem;
    bottom: 0.7rem;
    left: 0.8rem;
    font-size: 0.9rem;
  }

  .hero-deck-actions {
    margin-top: 0.7rem;
  }
}

@media (max-width: 22rem) and (orientation: portrait) {
  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    padding-inline: 0.3rem;
    font-size: 0.68rem;
  }

  .hero-card-wrap {
    width: min(84%, 17.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rainbow-arc {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
  }
  .fact-track,
  .hero-logo,
  .party-balloon,
  .spotlight-ring {
    transform: none !important;
  }
}

/* One continuous rail drawing across the experimental hero and photo marquee.
   Geometry is authored by JS from the actual rendered section dimensions, which
   keeps every curve circular and every rail joined on every breakpoint. */
.rainbow-rail-journey {
  --journey-rail-outline: clamp(24px, 3.05vw, 45px);
  --journey-rail-colour: clamp(21px, 2.82vw, 42px);
  --journey-rail-gap: clamp(22px, 3.25vw, 48px);
  --journey-fan-width: min(52vw, 46rem);
  position: relative;
  isolation: isolate;
  overflow: clip;
}
.rainbow-journey-svg {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.rainbow-journey-svg path {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  will-change: stroke-dashoffset;
}
.rainbow-journey-svg .rail-outline {
  stroke: var(--ink);
  stroke-width: var(--journey-rail-outline);
}
.rainbow-journey-svg .rail-colour {
  stroke-width: var(--journey-rail-colour);
}
.rainbow-journey-svg .rail-red {
  stroke: #ff5278;
}
.rainbow-journey-svg .rail-orange {
  stroke: #ff843d;
}
.rainbow-journey-svg .rail-yellow {
  stroke: #ffd634;
}
.rainbow-journey-svg .rail-green {
  stroke: #4fc971;
}
.rainbow-journey-svg .rail-blue {
  stroke: #43a8ff;
}
.rainbow-journey-svg .rail-purple {
  stroke: #9864ec;
}

.hero-rainbow-rails,
.photo-marquee {
  isolation: auto;
  z-index: 1;
}
.hero-rainbow-rails::before,
.hero-rainbow-rails::after {
  z-index: 1;
}
.rainbow-rails-content,
.photo-marquee-swiper {
  z-index: 3;
}

@media (max-width: 59.99rem) {
  .rainbow-rail-journey {
    --journey-rail-outline: clamp(17px, 5.7vw, 28px);
    --journey-rail-colour: clamp(14px, 5.15vw, 25px);
    --journey-rail-gap: clamp(16px, 6.4vw, 27px);
    --journey-fan-width: min(74vw, 28rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rainbow-journey-svg path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    will-change: auto;
  }
}

/* Flowfest-style modular continuation: the hero and marquee are separate SVGs,
   but deliberately share the same viewBox, x positions, strokes, and width.
   That makes the hand-off visually continuous without a fragile page-height SVG. */
.rainbow-journey-svg[hidden] {
  display: none;
}
.rainbow-rail-journey {
  isolation: auto;
  overflow: visible;
}
.hero-rainbow-rails,
.photo-marquee {
  --rainbow-bridge-width: min(16vw, 15rem);
  isolation: isolate;
  z-index: auto;
}
.hero-rainbow-rails::before,
.hero-rainbow-rails::after {
  z-index: -2;
}
.rainbow-rails-content,
.photo-marquee-swiper {
  z-index: 1;
}
.rainbow-rail-middle,
.photo-marquee-rainbow {
  width: var(--rainbow-bridge-width);
}
.photo-marquee-rainbow {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  height: var(--marquee-rail-end);
  transform: translateX(-50%);
  overflow: visible;
  pointer-events: none;
}
.photo-marquee-rainbow path {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: round;
  /* GSAP opts into this only while the short reveal is active. Keeping the
     default as auto avoids allocating a layer for every SVG path at rest. */
  will-change: auto;
}
.photo-marquee-rainbow .bridge-outline {
  stroke: var(--ink);
  stroke-width: 45;
}
.photo-marquee-rainbow .bridge-colour {
  stroke-width: 43;
}
.photo-marquee-rainbow .rail-red {
  stroke: #ff5278;
}
.photo-marquee-rainbow .rail-orange {
  stroke: #ff843d;
}
.photo-marquee-rainbow .rail-yellow {
  stroke: #ffd634;
}
.photo-marquee-rainbow .rail-green {
  stroke: #4fc971;
}
.photo-marquee-rainbow .rail-blue {
  stroke: #43a8ff;
}
.photo-marquee-rainbow .rail-purple {
  stroke: #9864ec;
}

@media (max-width: 59.99rem) {
  .hero-rainbow-rails,
  .photo-marquee {
    --rainbow-bridge-width: min(28vw, 10.5rem);
  }
}

/* Modal/overflow QA refinements */
body.modal-open {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
html:has(.enquiry-dialog[open]),
html:has(.offer-dialog[open]) {
  overflow: hidden;
}
.fact-ribbon {
  max-width: 100vw;
  transform: rotate(-1.3deg);
}
.enquiry-dialog {
  width: min(calc(100% - 2rem), 65rem);
  max-width: calc(100vw - 2rem);
}
@media (max-width: 42rem) {
  .enquiry-dialog {
    width: calc(100% - 0.75rem);
    max-width: calc(100vw - 0.75rem);
  }
  .dialog-art {
    grid-template-columns: 7.5rem 1fr;
    gap: 0.6rem;
    min-height: 13rem;
    padding: 1.25rem 3.5rem 1.25rem 0.75rem;
  }
  .dialog-art > img {
    width: 7.5rem;
    max-height: 9rem;
  }
  .dialog-art > p {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 10rem;
    margin: 0;
    font-size: 1.3rem;
    text-align: left;
  }
}

.button-yellow {
  color: var(--ink);
}
.finale {
  background: #6b2fc7;
}
.no-js .enquiry-dialog {
  position: relative;
  display: block;
  inset: auto;
  width: min(calc(100% - 1.5rem), 65rem);
  max-height: none;
  margin: 2rem auto 7rem;
}
.no-js .dialog-card {
  max-height: none;
}
.no-js .dialog-close {
  display: none;
}

/* Revised page flow: photo marquee, offerings, videos, and visit details */
.photo-marquee {
  --marquee-rail-start: clamp(20rem, 29vw, 30rem);
  --marquee-rail-end: var(--marquee-rail-start);
  --marquee-rainbow-fan-height: clamp(6.5rem, 9vw, 10rem);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(5.2rem, 8.8vw, 8rem) 0 var(--marquee-rainbow-fan-height);
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 222, 77, 0.2) 0 4rem,
      transparent 4.1rem
    ),
    var(--ink);
  color: #fff;
}
.photo-marquee-heading {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto 2rem;
  text-align: center;
}
.photo-marquee-heading h2 {
  max-width: 18ch;
  margin: 0.85rem auto 0;
  color: #fff;
}
.photo-marquee-swiper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  overflow: visible;
}
.photo-marquee-swiper .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
}
.photo-marquee-slide {
  position: relative;
  width: clamp(13.5rem, 23vw, 20rem);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  contain: layout paint;
  border: 3px solid #fff;
  border-radius: 1.5rem;
  background: var(--blue-soft);
  box-shadow: 7px 8px 0 var(--purple);
}
.photo-marquee-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s var(--ease-out);
}
.photo-marquee-slide:hover img {
  transform: scale(1.04);
}
.photo-marquee-slide figcaption {
  position: absolute;
  z-index: 1;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-align: center;
}

.offerings-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(111, 205, 255, 0.42) 0 7rem,
      transparent 7.1rem
    ),
    linear-gradient(180deg, #fff 0%, var(--yellow-soft) 100%);
}
.offerings-heading {
  max-width: 52rem;
  margin-inline: auto;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 3.25rem;
}
.offering-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(25rem, 36vw, 32rem);
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 2rem;
  background: var(--ink);
  box-shadow: 7px 8px 0 var(--ink);
  color: #fff;
  isolation: isolate;
}
.offering-card:nth-child(2),
.offering-card:nth-child(5) {
  transform: translateY(1.5rem);
}
.offering-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.offering-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(20, 8, 57, 0.06) 15%,
    rgba(20, 8, 57, 0.72) 56%,
    rgba(20, 8, 57, 0.96) 100%
  );
}
.offering-card:hover > img {
  transform: scale(1.055);
}
.offering-card-content {
  padding: 1.5rem;
}
.offering-icon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 1rem;
  background: var(--yellow);
  box-shadow: 3px 4px 0 #fff;
  color: var(--ink);
}
.offering-icon svg {
  width: 1.7rem;
  height: 1.7rem;
}
.offering-label {
  display: inline-block;
  margin: 1rem 0 0.4rem;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.offering-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1;
}
.offering-card-content > p:last-child {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.5;
}

.facilities-section {
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(255, 180, 211, 0.38) 0 5rem,
      transparent 5.1rem
    ),
    linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%);
}

.video-stories {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(160, 103, 234, 0.2) 0 8rem,
      transparent 8.1rem
    ),
    var(--green-soft);
}
.video-stories-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.video-stories-heading h2 {
  max-width: 17ch;
  margin-top: 0.85rem;
}
.video-slider-controls {
  display: flex;
  gap: 0.75rem;
}
.video-slider-controls button {
  display: grid;
  place-items: center;
  width: 3.25rem;
  min-height: 3.25rem;
  padding: 0;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink);
  color: var(--ink);
  cursor: pointer;
}
.video-slider-controls button:first-child svg {
  transform: rotate(180deg);
}
.video-slider-controls svg {
  width: 1.25rem;
  height: 1.25rem;
}
.video-slider-controls .swiper-button-disabled {
  opacity: 0.42;
  cursor: default;
}
.video-swiper {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  padding: 0.4rem 0.25rem 1rem;
}
.video-story {
  height: auto;
  padding: 0.65rem 0.65rem 1.2rem;
  border: 3px solid var(--ink);
  border-radius: 1.75rem;
  background: #fff;
  box-shadow: 6px 7px 0 var(--ink);
}
.video-story-frame {
  position: relative;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 1.2rem;
  background: var(--ink);
}
.video-story-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--ink);
}
.video-story-frame span {
  position: absolute;
  z-index: 1;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.78rem;
}
.video-story h3 {
  margin: 1rem 0 0.35rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.02;
}
.video-story > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.video-dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.7rem;
}
.video-dots .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.7rem;
  margin: 0 !important;
  border: 2px solid var(--ink);
  background: #fff;
  opacity: 1;
}
.video-dots .swiper-pagination-bullet-active {
  width: 1.9rem;
  border-radius: 99px;
  background: var(--purple);
}

.location-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.25rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--yellow-soft);
  box-shadow: 3px 4px 0 var(--ink);
}
.location-hours svg {
  width: 2rem;
  height: 2rem;
  color: var(--purple);
}
.location-hours p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: var(--ink);
}
.location-hours small {
  color: var(--ink-soft);
}
.location-hours strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.location-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.location-socials > span:first-child {
  margin-right: 0.25rem;
  color: var(--ink);
  font-family: var(--font-display);
}
.location-socials a,
.location-socials .social-coming-soon {
  display: grid;
  place-items: center;
  width: 2.85rem;
  min-height: 2.85rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 3px 4px 0 var(--ink);
  color: var(--purple);
}
.location-socials a:hover,
.location-socials a:focus-visible {
  background: var(--yellow);
}
.location-socials .social-coming-soon {
  opacity: 0.48;
}
.location-socials svg {
  width: 1.35rem;
  height: 1.35rem;
}

.contact-split .section-heading > p:last-child {
  max-width: 44rem;
  margin-inline: auto;
}

@media (max-width: 59.99rem) {
  .offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .offering-card:nth-child(2),
  .offering-card:nth-child(5) {
    transform: none;
  }
  .offering-card {
    min-height: 28rem;
  }
}

@media (max-width: 42rem) {
  .photo-marquee {
    --marquee-rainbow-fan-height: clamp(7.5rem, 27vw, 10rem);
    padding: 4.5rem 0 calc(0.75rem + var(--marquee-rainbow-fan-height));
  }
  .photo-marquee-heading {
    width: calc(100% - 1.25rem);
  }
  .photo-marquee-slide {
    width: min(70vw, 17rem);
    border-radius: 1.2rem;
    box-shadow: 5px 6px 0 var(--purple);
  }
  .offerings-grid {
    grid-template-columns: 1fr;
    margin-top: 2.25rem;
  }
  .offering-card {
    min-height: 26rem;
    border-radius: 1.5rem;
    box-shadow: 5px 6px 0 var(--ink);
  }
  .offering-card-content {
    padding: 1.25rem;
  }
  .video-stories-heading {
    align-items: start;
    margin-bottom: 1.75rem;
  }
  .video-stories-heading h2 {
    max-width: 13ch;
  }
  .video-slider-controls {
    padding-top: 0.15rem;
  }
  .video-slider-controls button {
    width: 2.9rem;
    min-height: 2.9rem;
  }
  .video-story {
    border-radius: 1.35rem;
    box-shadow: 5px 6px 0 var(--ink);
  }
  .location-hours {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-rainbow i {
    animation: none;
  }
  .photo-marquee-swiper .swiper-wrapper {
    transition-duration: 0.01ms !important;
    will-change: auto;
  }
  .offering-card:nth-child(n) {
    transform: none;
  }
}

@media (max-width: 59.99rem) and (prefers-reduced-motion: reduce) {
  .mobile-action-bar {
    transition: none;
  }
}

/* Hero concept 02: scroll-drawn rainbow rails. This is intentionally separate
   from .hero so both directions can be compared before choosing one. */
.hero-rainbow-rails {
  /* The side SVG is 321 × 626. Height is the master control, so the bends
     always stay perfectly circular rather than being stretched. */
  --rainbow-rail-height: clamp(34rem, 69svh, 46rem);
  --rainbow-side-outline-width: 50;
  --rainbow-side-colour-width: 48;
  position: relative;
  isolation: isolate;
  min-height: max(54rem, 100svh);
  padding: calc(var(--header-height) + 2.2rem) 0 1.8rem;
  overflow: clip;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 255, 255, 0.88) 0 11%,
      transparent 32%
    ),
    linear-gradient(145deg, #fff7df 0%, #fff3d0 55%, #fffaf0 100%);
}
.hero-rainbow-rails::before,
.hero-rainbow-rails::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: clamp(1.3rem, 3vw, 3.2rem);
  height: clamp(1.3rem, 3vw, 3.2rem);
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.hero-rainbow-rails::before {
  top: 20%;
  left: 31%;
  background: var(--yellow);
}
.hero-rainbow-rails::after {
  top: 35%;
  right: 30%;
  background: var(--pink);
}
.rainbow-rails-stage {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
}
.rainbow-rail-side,
.rainbow-rail-middle {
  position: absolute;
  overflow: visible;
  pointer-events: none;
}
.rainbow-rail-side {
  width: auto;
  height: var(--rainbow-rail-height);
  aspect-ratio: 321 / 626;
}
.rainbow-rail-side-left {
  left: -0.1rem;
  bottom: -0.1rem;
  transform: rotate(180deg);
  transform-origin: center;
}
.rainbow-rail-side-right {
  right: -0.1rem;
  top: 0;
}
.rainbow-rail-middle {
  z-index: 0;
  top: clamp(23rem, 52svh, 34rem);
  left: 50%;
  width: min(18vw, 15rem);
  height: calc(100% - clamp(26rem, 52svh, 34rem) + 12rem);
  transform: translateX(-50%);
}
.rainbow-rails-stage path {
  fill: none;
  stroke-linecap: butt;
  stroke-linejoin: round;
  will-change: stroke-dashoffset;
}
.rainbow-rails-stage .rail-outline {
  stroke: var(--ink);
  stroke-width: 45;
}
.rainbow-rails-stage .rail-colour {
  stroke-width: 43;
}
.rainbow-rail-side .rail-outline {
  stroke-width: var(--rainbow-side-outline-width);
}
.rainbow-rail-side .rail-colour {
  stroke-width: var(--rainbow-side-colour-width);
}
.rainbow-rails-stage .rail-red {
  stroke: #ff5278;
}
.rainbow-rails-stage .rail-orange {
  stroke: #ff843d;
}
.rainbow-rails-stage .rail-yellow {
  stroke: #ffd634;
}
.rainbow-rails-stage .rail-green {
  stroke: #4fc971;
}
.rainbow-rails-stage .rail-blue {
  stroke: #43a8ff;
}
.rainbow-rails-stage .rail-purple {
  stroke: #9864ec;
}
.rainbow-rails-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(18rem, 1fr);
  justify-items: center;
  min-height: calc(max(54rem, 100svh) - var(--header-height) - 4rem);
  text-align: center;
}
.rainbow-rails-copy {
  display: grid;
  justify-items: center;
  max-width: min(74rem, 92vw);
}
.rainbow-rails-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.82rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rainbow-rails-copy h2 {
  display: grid;
  justify-items: center;
  max-width: min(76rem, 82vw);
  margin-bottom: 1rem;
  color: #111;
  font-family: var(--font-display);
  font-size: 4.25rem;
  line-height: 0.78;
  text-wrap: balance;
}
.rainbow-title-line {
  position: relative;
  isolation: isolate;
  z-index: 0;
  display: block;
  color: #111;
  white-space: nowrap;
  z-index: 1;
}
.rainbow-title-line::before,
.rainbow-title-line::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rainbow-title-line::before {
  z-index: -2;
  color: #fff;
  -webkit-text-stroke: 0.17em var(--ink);
  text-shadow: 0.08em 0.09em 0 rgba(36, 19, 79, 0.2);
}
.rainbow-title-line::after {
  z-index: -1;
  color: #fff;
  -webkit-text-stroke: 0.1em #fff;
}
.rainbow-title-ribbon {
  display: inline-block;
  margin-top: 0.3em;
  padding: 0.08em 0.42em 0.13em;
  border: 3px solid var(--ink);
  border-radius: 0.14em;
  background: #f5a000;
  box-shadow: 0.08em 0.08em 0 rgba(36, 19, 79, 0.22);
  color: #fff;
  font-size: 0.62em;
  line-height: 0.95;
  text-shadow: 0.035em 0.035em 0 rgba(36, 19, 79, 0.32);
  transform: rotate(-3deg);
  transform-origin: center;
}

@media (min-width: 80rem) {
  .rainbow-rails-copy h2 {
    font-size: 5.65rem;
  }
}

@media (min-width: 100rem) {
  .rainbow-rails-copy h2 {
    font-size: 6.65rem;
  }
}
.rainbow-rails-copy > p:not(.rainbow-rails-tag) {
  max-width: 38rem;
  margin-bottom: 0.9rem;
  color: var(--ink);
  font-size: clamp(1rem, 0.85rem + 0.35vw, 1.2rem);
  font-weight: 700;
  line-height: 1.42;
}
.rainbow-rails-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.58rem 0.95rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.94rem;
  transition:
    transform 0.18s var(--ease-out),
    box-shadow 0.18s var(--ease-out);
}
.rainbow-rails-link:hover,
.rainbow-rails-link:focus-visible {
  transform: translate(-1px, -2px);
  box-shadow: 5px 6px 0 var(--ink);
}
.rainbow-rails-link:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 2px 0 var(--ink);
}
.rainbow-rails-link svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.5;
}
.rainbow-rails-photo {
  position: relative;
  z-index: 2;
  align-self: end;
  width: clamp(18rem, 24vw, 26rem);
  margin: 1.1rem 0 0;
  aspect-ratio: 3 / 4;
  border: 3px solid var(--ink);
  border-radius: 2.4rem 2.4rem 4.4rem 2.4rem;
  box-shadow: 8px 9px 0 var(--ink);
  overflow: hidden;
  transform: rotate(-2deg);
}
.rainbow-rails-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(36, 19, 79, 0.66));
  pointer-events: none;
}
.rainbow-rails-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rainbow-rails-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.8rem;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-shadow: 2px 2px 0 var(--ink);
}
@media (max-width: 59.99rem) {
  .hero-rainbow-rails {
    --rainbow-rail-height: min(78svh, 35rem);
    min-height: max(52rem, 100svh);
    padding: calc(var(--header-height) + 1.65rem) 0 1.3rem;
  }
  .hero-rainbow-rails::before {
    top: 28%;
    left: 16%;
  }
  .hero-rainbow-rails::after {
    top: 43%;
    right: 16%;
  }
  .rainbow-rail-side {
    width: auto;
    height: var(--rainbow-rail-height);
  }
  .rainbow-rail-side-left {
    top: auto;
    bottom: -0.1rem;
  }
  .rainbow-rail-side-right {
    top: 0;
  }
  .rainbow-rail-middle {
    width: min(28vw, 10.5rem);
    top: clamp(27rem, 58svh, 32rem);
    height: calc(100% - clamp(27rem, 58svh, 32rem) + 10rem);
  }
  .rainbow-rails-content {
    grid-template-rows: auto minmax(18rem, 1fr);
    min-height: calc(max(52rem, 100svh) - var(--header-height) - 3rem);
  }
  .rainbow-rails-copy {
    max-width: min(33rem, 90vw);
  }
  .rainbow-rails-copy h2 {
    max-width: min(28rem, 86vw);
    font-size: 3.15rem;
    line-height: 0.84;
  }
  .rainbow-title-line {
    white-space: normal;
  }
  .rainbow-title-line::before {
    -webkit-text-stroke-width: 0.14em;
  }
  .rainbow-title-line::after {
    -webkit-text-stroke-width: 0.08em;
  }
  .rainbow-title-ribbon {
    margin-top: 0.1em;
    border-width: 2px;
    font-size: 0.72em;
    white-space: nowrap;
  }
  .rainbow-rails-copy > p:not(.rainbow-rails-tag) {
    max-width: 27rem;
    font-size: 1rem;
  }
  .rainbow-rails-photo {
    width: min(70vw, 22rem);
    align-self: start;
    margin: 0.25rem 0 0;
    box-shadow: 6px 7px 0 var(--ink);
  }
}

@media (max-width: 25rem) {
  .hero-rainbow-rails {
    min-height: 50rem;
  }
  .rainbow-rails-copy h2 {
    font-size: 2.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rainbow-rails-stage path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    will-change: auto;
  }
  .photo-marquee-rainbow path {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    will-change: auto;
  }
  .photo-marquee-runway {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto !important;
  }
}

/* Keep the hero bridge, marquee bridge, and fan on one nine-strip system. The
   52/48 SVG strokes mirror the supplied Flowfest treatment while leaving a
   small ink keyline between each colour. */
.rainbow-rail-middle .rail-outline,
.photo-marquee-rainbow .bridge-outline {
  stroke-width: 52;
}
.rainbow-rail-middle .rail-colour,
.photo-marquee-rainbow .bridge-colour {
  stroke-width: 48;
}
.photo-marquee-rainbow-fan {
  position: absolute;
  z-index: 0;
  right: 0;
  top: var(--marquee-rail-start);
  bottom: auto;
  left: 0;
  width: 100%;
  height: var(--marquee-rainbow-fan-height);
  overflow: visible;
  pointer-events: none;
}

/* Give each of the nine centre strips more breathing room by widening the
   shared SVG canvas. The stroke ratio stays unchanged, so neighbouring bands
   keep their slim ink separation instead of merging at the rounded edge. */
.hero-rainbow-rails,
.photo-marquee {
  --rainbow-bridge-width: min(32vw, 26rem);
}
.rainbow-rail-middle,
.photo-marquee-rainbow {
  width: var(--rainbow-bridge-width);
}
.marquee-fan-band {
  stroke: var(--ink);
  /* Each fan panel is a neighbouring polygon. A thinner keyline prevents
     the outlines from reading as wide blue gaps between the colour bands. */
  stroke-width: 2.5;
  stroke-linejoin: round;
  will-change: clip-path;
}
.marquee-fan-band.rail-red {
  fill: #ff5278;
}
.marquee-fan-band.rail-orange {
  fill: #ff843d;
}
.marquee-fan-band.rail-yellow {
  fill: #ffd634;
}
.marquee-fan-band.rail-green {
  fill: #4fc971;
}
.marquee-fan-band.rail-blue {
  fill: #43a8ff;
}
.marquee-fan-band.rail-purple {
  fill: #9864ec;
}
.rainbow-rails-stage .rail-coral,
.photo-marquee-rainbow .rail-coral {
  stroke: #ff9b5c;
}
.rainbow-rails-stage .rail-mint,
.photo-marquee-rainbow .rail-mint {
  stroke: #57c98a;
}
.rainbow-rails-stage .rail-sky,
.photo-marquee-rainbow .rail-sky {
  stroke: #5bb8f5;
}
.marquee-fan-band.rail-coral {
  fill: #ff9b5c;
}
.marquee-fan-band.rail-mint {
  fill: #57c98a;
}
.marquee-fan-band.rail-sky {
  fill: #5bb8f5;
}

@media (max-width: 59.99rem) {
  /* Mobile keeps the centre rail only; edge SVGs are hidden and skipped by
     the GSAP setup so they do not add paint or scroll work. */
  .rainbow-rail-side {
    display: none;
  }
  .hero-rainbow-rails,
  .photo-marquee {
    --marquee-rainbow-fan-height: clamp(6.5rem, 24vw, 9rem);
    --rainbow-bridge-width: min(80vw, 21rem);
  }
  .photo-marquee {
    padding-bottom: var(--marquee-rainbow-fan-height);
  }
  .rainbow-rail-middle,
  .photo-marquee-rainbow {
    width: var(--rainbow-bridge-width);
  }
  .rainbow-rail-middle .rail-outline,
  .photo-marquee-rainbow .bridge-outline {
    stroke-width: 52;
  }
  .rainbow-rail-middle .rail-colour,
  .photo-marquee-rainbow .bridge-colour {
    stroke-width: 48;
  }
  .photo-marquee-rainbow-fan {
    height: var(--marquee-rainbow-fan-height);
    width: 100%;
    max-width: 100vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-fan-band {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    will-change: auto;
  }
}

/* Keep the alternate hero focused on its title and image. The rail begins
   immediately under the ribbon, so its flat top edge is tucked behind the
   photo instead of peeking through the copy. */
.rainbow-rail-middle {
  top: clamp(16rem, 34svh, 24rem);
  height: calc(100% - clamp(15rem, 34svh, 24rem) + 10rem);
}
.rainbow-rails-photo {
  margin-top: 0.15rem;
}

@media (max-width: 59.99rem) {
  .rainbow-rail-middle {
    top: clamp(14rem, 26svh, 23rem);
    height: calc(100% - clamp(15rem, 34svh, 23rem) + 8rem);
  }

  /* The pinned rail scene does not need a full desktop-height tail on a
     phone. Let the content determine its height after the image instead of
     reserving a large, mostly empty second grid row. */
  .hero-rainbow-rails {
    min-height: max(44rem, 88svh);
    padding-bottom: 2rem;
  }
  .rainbow-rails-content {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  /* Keep the alternate hero photo just below its ribbon. The bridge and the
     card both use the shared 50% centre line, so changing the flow spacing
     does not introduce a horizontal rail offset. */
  .rainbow-rails-photo {
    align-self: start;
    margin: 2rem 0 1.25rem;
  }

  /* The small coloured confetti is helpful on desktop but makes the compact
     mobile hero feel busy; remove the orange/green pieces only. */
  .hero-confetti i:nth-child(3),
  .hero-confetti i:nth-child(7),
  .hero-confetti i:nth-child(11) {
    display: none;
  }
}

/* Narrow phones (including iPhone XR/11) need a slightly smaller ribbon than
   the larger mobile treatment. Without this, the required single-line label
   is wider than the title box and gets clipped at the right edge. */
@media (max-width: 28rem) {
  .rainbow-rails-copy h2 {
    width: min(100%, calc(100vw - 2rem));
  }

  .rainbow-title-ribbon {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: clamp(1.45rem, 7vw, 1.9rem);
    padding-inline: 0.32em;
  }
}

/* Give the 390–414px phone layouts a stronger headline without affecting the
   very narrow 320px composition, where the smaller type prevents wrapping. */
@media (min-width: 23rem) and (max-width: 28rem) {
  .rainbow-rails-copy h2 {
    font-size: clamp(2.65rem, 11.5vw, 3.15rem);
  }
}

/* Desktop alternate hero: center the portrait in its available row and leave
   visible breathing room on both sides so the vertical rainbow can be seen
   above and below the card. */
@media (min-width: 60rem) {
  .rainbow-rails-photo {
    align-self: center;
    margin: 2.5rem 0 2.75rem;
  }
}

/* The contact choices now live inside the final CTA. Keep them as a compact
   action strip so the page has one clear finish instead of a second full
   section devoted to three links. */
.finale {
  padding: clamp(3.25rem, 6vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
}
.finale-inner {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.finale-copy h2 {
  margin-bottom: 0.7rem;
}
.finale-copy > p:not(.hand-note) {
  max-width: 39rem;
  line-height: 1.4;
}
.finale-contact-row {
  position: relative;
  z-index: 1;
}
.finale-contact-label {
  margin: 0 0 0.65rem;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.finale-contact-row .contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0;
}
.finale-contact-row .contact-door {
  min-height: 8.5rem;
  padding: 1rem 1.1rem;
  border-width: 2px;
  border-radius: 1.25rem;
  box-shadow: 4px 5px 0 var(--ink);
  color: var(--ink);
}
.finale-contact-row .contact-door:hover {
  transform: translateY(-4px);
  box-shadow: 6px 8px 0 var(--ink);
}
.finale-contact-row .contact-door::after {
  right: -2.5rem;
  bottom: -3rem;
  width: 7rem;
  border-width: 2px;
}
.finale-contact-row .door-icon {
  width: 2.75rem;
  border-width: 2px;
  border-radius: 0.85rem;
  box-shadow: 3px 4px 0 var(--ink);
}
.finale-contact-row .door-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}
.finale-contact-row .contact-door small {
  margin-top: auto;
  margin-bottom: 0.15rem;
  font-size: 0.7rem;
}
.finale-contact-row .contact-door strong {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}
.finale-contact-row .contact-door em {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}
.finale-contact-row .door-arrow {
  top: 1rem;
  right: 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 42rem) {
  .finale-contact-row .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .finale-contact-row .contact-door {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 0.7rem;
    align-items: center;
    min-height: 5.25rem;
    padding: 0.7rem 0.9rem;
  }
  .finale-contact-row .door-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 2.55rem;
  }
  .finale-contact-row .contact-door small {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }
  .finale-contact-row .contact-door strong {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    font-size: 1.35rem;
  }
  .finale-contact-row .contact-door em {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    margin: 0;
    font-size: 0.72rem;
    white-space: nowrap;
  }
  .finale-contact-row .door-arrow {
    position: static;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 0.95rem;
    height: 0.95rem;
  }
}

/* Keep contact choices in the CTA's open right column instead of adding a
   second full-width row. They read as compact action chips, so the CTA height
   stays governed by the logo and headline rather than three tall cards. */
.finale-inner {
  margin-bottom: 0;
}
.finale-copy {
  min-width: 0;
}
.finale-copy .finale-contact-row {
  width: auto;
  max-width: none;
  margin: 1.35rem 0 0;
  text-align: left;
}
.finale-copy .finale-contact-label {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
}
.finale-copy .finale-contact-row .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}
.finale-copy .finale-contact-row .contact-door {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.5rem;
  align-items: center;
  min-height: 0;
  padding: 0.65rem 0.7rem;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 3px 4px 0 rgba(29, 10, 72, 0.85);
  color: #fff;
}
.finale-copy .finale-contact-row .contact-door::after {
  display: none;
}
.finale-copy .finale-contact-row .contact-door:hover {
  transform: translateY(-3px);
  box-shadow: 4px 6px 0 rgba(29, 10, 72, 0.85);
}
.finale-copy .finale-contact-row .door-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 2.2rem;
  border-width: 2px;
  border-radius: 0.7rem;
  background: #fff;
  box-shadow: 2px 3px 0 var(--ink);
}
.finale-copy .finale-contact-row .door-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}
.finale-copy .finale-contact-row .contact-door small {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.62rem;
  line-height: 1.15;
}
.finale-copy .finale-contact-row .contact-door strong {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.05;
}
.finale-copy .finale-contact-row .contact-door em {
  grid-column: 2;
  grid-row: 3;
  margin: 0.12rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  line-height: 1.2;
  font-style: normal;
}
.finale-copy .finale-contact-row .door-arrow {
  top: 0.65rem;
  right: 0.7rem;
  width: 0.9rem;
  height: 0.9rem;
  color: #fff;
}

@media (max-width: 59.99rem) {
  .finale-copy .finale-contact-row {
    margin-top: 1.1rem;
  }
  .finale-copy .finale-contact-row .contact-grid {
    gap: 0.5rem;
  }
}

@media (max-width: 42rem) {
  .finale-copy .finale-contact-row {
    text-align: left;
  }
  .finale-copy .finale-contact-row .contact-grid {
    grid-template-columns: 1fr;
  }
  .finale-copy .finale-contact-row .contact-door {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    min-height: 4.7rem;
    padding: 0.6rem 0.75rem;
  }
  .finale-copy .finale-contact-row .contact-door em {
    grid-column: 3;
    grid-row: 2;
    align-self: start;
    margin: 0;
    white-space: nowrap;
  }
  .finale-copy .finale-contact-row .door-arrow {
    position: static;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

/* Desktop CTA composition: reserve a real third column for contact choices.
   The links stay in the copy's DOM order for keyboard and screen-reader flow,
   but are positioned into that reserved column so they do not stretch the
   headline column or create a second section underneath it. */
@media (min-width: 60rem) {
  .finale-inner {
    --finale-gap: clamp(1.25rem, 3vw, 3rem);
    grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr) minmax(
        15rem,
        20rem
      );
    gap: var(--finale-gap);
  }
  .finale-copy {
    position: relative;
    grid-column: 2;
  }
  .finale-copy .finale-contact-row {
    position: absolute;
    top: 50%;
    left: calc(100% + var(--finale-gap));
    width: clamp(15rem, 22vw, 20rem);
    max-width: 100%;
    margin: 0;
    transform: translateY(-50%);
  }
  .finale-copy .finale-contact-row .contact-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .finale-copy .finale-contact-row .contact-door {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    min-height: 4.55rem;
    padding: 0.62rem 0.72rem;
  }
  .finale-copy .finale-contact-row .door-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .finale-copy .finale-contact-row .contact-door small {
    grid-column: 2;
    grid-row: 1;
  }
  .finale-copy .finale-contact-row .contact-door strong {
    grid-column: 2;
    grid-row: 2;
  }
  .finale-copy .finale-contact-row .contact-door em {
    grid-column: 3;
    grid-row: 2;
    margin: 0;
    white-space: nowrap;
  }
  .finale-copy .finale-contact-row .door-arrow {
    top: 0.65rem;
    right: 0.72rem;
  }
}

@media (max-width: 59.99rem) {
  .finale-copy .finale-contact-row {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 1.1rem 0 0;
    transform: none;
  }
}

/* The final CTA now uses two direct actions instead of the old contact-card
   rail. Keep the buttons together so the finish remains compact and scannable. */
.finale-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.finale-actions .button {
  margin: 0;
}
.finale-call-button {
  color: var(--ink);
}
.finale-call-button svg {
  width: 1.2rem;
  height: 1.2rem;
}

@media (min-width: 60rem) {
  .finale-inner {
    grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
  }
  .finale-copy {
    grid-column: auto;
  }
}

@media (max-width: 59.99rem) {
  .finale-actions {
    justify-content: center;
  }
}

/* Offerings polish: keep every service card in one balanced visual system. */
.offerings-grid {
  align-items: stretch;
}

.offerings-grid .offering-card,
.offerings-grid .offering-card:nth-child(2),
.offerings-grid .offering-card:nth-child(5) {
  min-height: 0;
  height: clamp(25rem, 33vw, 29rem);
  transform: none;
  border-width: 2px;
  border-radius: 1.45rem;
  box-shadow: 4px 5px 0 var(--ink);
}

.offering-card > img {
  object-position: center;
}

.offering-party > img {
  object-position: center 56%;
}

.offering-play > img {
  object-position: center 52%;
}

.offering-school > img {
  object-position: center 46%;
}

.offering-toddler > img {
  object-position: center 52%;
}

.offering-roleplay > img {
  object-position: center 48%;
}

.offering-lounge > img {
  object-position: center 56%;
}

.offering-card-content {
  padding: 1.25rem;
}

.offering-icon {
  width: 2.85rem;
  border-radius: 0.85rem;
  box-shadow: 2px 3px 0 #fff;
}

.offering-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.offering-label {
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
}

.offering-card h3 {
  max-width: 17ch;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 1.95vw, 1.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.offering-card-content > p:last-child {
  margin-top: 0.6rem;
  font-weight: 700;
  line-height: 1.36;
}

@media (max-width: 59.99rem) {
  .offerings-grid .offering-card,
  .offerings-grid .offering-card:nth-child(2),
  .offerings-grid .offering-card:nth-child(5) {
    height: 27rem;
  }
}

@media (max-width: 42rem) {
  .offerings-grid .offering-card,
  .offerings-grid .offering-card:nth-child(2),
  .offerings-grid .offering-card:nth-child(5) {
    height: 24.5rem;
    border-radius: 1.25rem;
    box-shadow: 4px 5px 0 var(--ink);
  }

  .offering-card-content {
    padding: 1.1rem;
  }

  .offering-card h3 {
    font-size: 1.4rem;
  }
}
