:root {
  --purple: #264bbf;
  --purple-bright: #a157ff;
  --purple-deep: #342064;
  --purple-soft: #f5f1ff;
  --yellow: #e7f945;
  --yellow-soft: #fffae5;
  --ink: #1e3b85;
  --body: #626477;
  --white: #ffffff;
  --line: #e5dcff;
  --shadow: 0 18px 45px rgb(43 22 82 / 9%);
  --font-body: "Inter", Arial, sans-serif;
  --font-heading: "Nunito", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
p,
ul,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
  clip-path: inset(50%);
}

.skip-link {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -60px;
  z-index: 100;
}

.skip-link:focus {
  top: 16px;
}

.container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 24px;
  width: 100%;
}

.button {
  align-items: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-bottom-width: 5px;
  border-radius: 48px;
  color: var(--ink);
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 56px;
  padding: 16px 30px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.button--small {
  font-size: 18px;
  min-height: 48px;
  padding: 12px 25px;
}

.button--purple {
  background: var(--purple);
  border-color: var(--ink);
  color: var(--white);
}

.button--purple:hover,
.button--purple:focus-visible {
  background: var(--purple-deep);
}

.text-button {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
}

.text-button span {
  font-size: 26px;
  transition: transform 180ms ease;
}

.text-button:hover span,
.text-button:focus-visible span {
  transform: translateX(5px);
}

.eyebrow {
  align-items: center;
  color: var(--purple);
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  gap: 8px;
  margin-bottom: 13px;
}

.eyebrow::before {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  height: 11px;
  width: 11px;
}

.eyebrow--light {
  color: var(--white);
}

.site-header {
  left: 0;
  padding-top: 28px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.navigation {
  align-items: center;
  background: #ffffff;
  border: 2px solid #1e3b85;
  border-bottom-width: 5px;
  border-radius: 80px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 18px 0 30px;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
}

.brand-logo {
  aspect-ratio: 2250 / 1169;
  height: auto;
  width: 200px;
}

.primary-nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: clamp(18px, 3vw, 38px);
  justify-content: center;
}

.primary-nav a {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.primary-nav a::after {
  background: var(--yellow);
  bottom: -7px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  border-radius: 4px;
  height: 3px;
  width: 25px;
}

.hero {
  background: linear-gradient(180deg, var(--purple-bright) 0%, var(--purple) 100%);
  color: var(--white);
  min-height: 760px;
  overflow: hidden;
  padding: 185px 0 280px;
  position: relative;
}

.hero-grid {
  background-image: url("/assets/images/hero-grid.png");
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0.38;
  position: absolute;
}

.hero-layout {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 1fr minmax(395px, 0.9fr);
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(46px, 5vw, 67px);
  letter-spacing: -2px;
  margin-bottom: 22px;
  max-width: 650px;
  position: relative;
}

.hero-content h1 span {
  color: var(--yellow);
  display: inline-block;
  position: relative;
}

.title-shape {
  left: -37px;
  position: absolute;
  top: -30px;
  width: 39px;
}

.hero-description {
  color: rgb(255 255 255 / 92%);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 575px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 27px;
  margin-bottom: 43px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.hero-notes li {
  background: rgb(255 255 255 / 13%);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 30px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
}

.hero-art {
  align-self: end;
  min-height: 530px;
  position: relative;
}

.hero-character {
  border-radius: 28px;
  bottom: -128px;
  box-shadow: 0 24px 55px rgb(28 14 55 / 20%);
  height: 635px;
  left: 46%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: translateX(-50%);
  width: min(100%, 540px);
}

.floating-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-bottom-width: 5px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-family: var(--font-heading);
  line-height: 1.25;
  padding: 16px 19px;
  position: absolute;
}

.floating-card strong {
  color: var(--purple);
  display: block;
  font-size: 24px;
}

.floating-card span {
  font-size: 14px;
  font-weight: 700;
}

.floating-card--duration {
  left: 12px;
  top: 110px;
}

.floating-card--party {
  bottom: 86px;
  right: 0;
}

.floating-card--party strong {
  font-size: 20px;
}

.hero-wave {
  bottom: -1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.section {
  padding: 86px 0;
}

.section--lavender {
  background: var(--purple-soft);
}

.section--yellow {
  background: var(--yellow-soft);
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.section-heading > p:not(.eyebrow) {
  font-size: 17px;
  margin: 0 auto;
  max-width: 640px;
}

.section-heading--center {
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: var(--shadow);
  padding: 32px;
  position: relative;
}

.price-card--featured {
  border: 3px solid var(--purple);
  transform: translateY(-9px);
}

.price-card--featured::after {
  background: var(--yellow);
  border-radius: 20px;
  color: var(--ink);
  content: "Popular";
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 13px;
  position: absolute;
  right: 22px;
  top: 21px;
}

.price-label {
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 13px;
}

.price-card h3 {
  font-size: 23px;
  margin-bottom: 22px;
}

.price {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(35px, 4vw, 43px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.price small {
  color: var(--body);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.card-note {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.purchase-note {
  color: var(--body);
  font-size: 14px;
  margin-top: 26px;
  text-align: center;
}

.two-column-heading {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.two-column-heading .section-heading {
  margin: 0;
}

.heading-description {
  max-width: 410px;
}

.slot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 45px;
}

.time-slot {
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  color: var(--ink);
  display: flex;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  gap: 14px;
  padding: 22px 19px;
}

.time-slot span {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.rules-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.rule-card {
  background: var(--white);
  border-radius: 22px;
  padding: 27px 27px 30px;
}

.rule-icon {
  align-items: center;
  background: var(--purple);
  border-radius: 50%;
  color: var(--yellow);
  display: flex;
  font-weight: 800;
  height: 43px;
  justify-content: center;
  margin-bottom: 19px;
  width: 43px;
}

.rule-card h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.party-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.party-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 36px 38px;
}

.party-card--custom {
  background: var(--purple);
  border-color: var(--purple);
  color: rgb(255 255 255 / 88%);
}

.party-card-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 25px;
  padding-bottom: 23px;
}

.party-card--custom .party-card-header {
  border-color: rgb(255 255 255 / 25%);
}

.package-type {
  color: var(--purple);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.party-card--custom .package-type {
  color: var(--yellow);
}

.package-price {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(33px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}

.party-card--custom .package-price {
  color: var(--white);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 13px;
  padding-left: 31px;
  position: relative;
}

.feature-list li::before {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--ink);
  content: "\2713";
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 3px;
  width: 20px;
}

.consultation-note {
  background: rgb(255 255 255 / 12%);
  border-radius: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  padding: 14px 16px;
}

.visit-layout {
  align-items: center;
  display: grid;
  gap: clamp(38px, 8vw, 105px);
  grid-template-columns: 1fr 1fr;
}

.visit-intro h2 {
  font-size: clamp(37px, 4vw, 50px);
  margin-bottom: 13px;
}

.address {
  color: var(--ink);
  font-style: normal;
  line-height: 1.75;
  margin: 27px 0 31px;
}

.address strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 25px;
  margin-bottom: 5px;
}

.visit-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.visit-contact-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 600;
  gap: 8px;
}

.visit-contact-link:hover {
  text-decoration: underline;
}

.visit-contact-icon {
  font-size: 18px;
}

.hours-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-bottom-width: 6px;
  border-radius: 26px;
  padding: clamp(29px, 4vw, 43px);
}

.hours-card h3 {
  font-size: 29px;
  margin-bottom: 25px;
}

.hours-list div {
  border-bottom: 1px dashed #d9d3bb;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 14px 0;
}

.hours-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list dt {
  color: var(--ink);
  font-weight: 600;
}

.hours-list dd {
  color: var(--purple);
  font-weight: 700;
  text-align: right;
}

.site-footer {
  background: #102c6f;
  color: rgb(255 255 255 / 75%);
  padding: 44px 0;
}

.footer-layout {
  align-items: center;
  display: flex;
  gap: 32px;
}

.brand--footer {
}

.brand--footer .brand-logo {
  width: 160px;
}

.footer-nav {
  display: flex;
  gap: 25px;
  margin-left: auto;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--yellow);
}

.copyright {
  border-left: 1px solid rgb(255 255 255 / 22%);
  padding-left: 28px;
}

.legal-header {
  background: var(--purple);
  padding: 24px 0;
}

.legal-navigation {
  align-items: center;
  background: var(--white);
  border: 2px solid var(--ink);
  border-bottom-width: 5px;
  border-radius: 80px;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 10px 18px 10px 30px;
}

.legal-page {
  background: var(--purple-soft);
  min-height: calc(100vh - 195px);
}

.legal-container {
  max-width: 880px;
}

.legal-hero {
  background: linear-gradient(180deg, var(--purple-bright), var(--purple));
  color: var(--white);
  padding: 72px 0 82px;
}

.legal-hero .eyebrow {
  color: var(--white);
}

.legal-hero h1 {
  color: var(--white);
  font-size: clamp(42px, 6vw, 58px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.legal-intro {
  color: rgb(255 255 255 / 90%);
  font-size: 18px;
  margin-top: 20px;
  max-width: 725px;
}

.legal-updated {
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 600;
}

.legal-content {
  padding: 54px 0 76px;
}

.legal-summary {
  background: var(--yellow-soft);
  border-radius: 18px;
  color: var(--ink);
  margin-bottom: 34px;
  padding: 23px 27px;
}

.legal-summary strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 7px;
}

.legal-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: clamp(27px, 6vw, 50px);
}

.legal-article h2 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin: 37px 0 11px;
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p {
  margin-bottom: 14px;
}

.legal-article ul {
  margin: 0 0 17px;
  padding-left: 22px;
}

.legal-article li {
  margin-bottom: 9px;
}

.legal-address {
  color: var(--ink);
  font-style: normal;
  line-height: 1.75;
  margin-top: 9px;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 1030px) {
  .navigation {
    gap: 18px;
    padding-left: 21px;
  }

  .brand-logo {
    height: auto;
    width: 155px;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: 1fr 420px;
  }

  .slot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-top: 18px;
  }

  .navigation {
    min-height: 72px;
    padding: 9px 16px 9px 20px;
    position: relative;
  }

  .brand-logo {
    height: auto;
    width: 140px;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
    order: 3;
  }

  .header-action {
    display: none;
  }

  .primary-nav {
    align-items: stretch;
    background: var(--white);
    border: 2px solid var(--ink);
    border-bottom-width: 5px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    border-radius: 10px;
    padding: 11px 14px;
  }

  .primary-nav a:hover,
  .primary-nav a:focus-visible {
    background: var(--yellow-soft);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding: 135px 0 112px;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-art {
    height: 465px;
    min-height: 465px;
    width: min(530px, 100%);
  }

  .hero-character {
    bottom: -75px;
    height: 530px;
  }

  .price-card--featured {
    transform: none;
  }

  .pricing-grid,
  .rules-grid,
  .party-grid,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .two-column-heading {
    align-items: start;
    flex-direction: column;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-nav {
    margin-left: 0;
  }

  .copyright {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 580px) {
  .container {
    padding: 0 18px;
  }

  .navigation {
    padding-left: 14px;
  }

  .brand-logo {
    height: auto;
    width: 120px;
  }

  .brand--footer .brand-logo {
    width: 155px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 48px);
    letter-spacing: -1px;
  }

  .title-shape {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 34px;
  }

  .hero-art {
    height: 390px;
    min-height: 390px;
  }

  .hero-character {
    height: 440px;
  }

  .floating-card {
    padding: 12px 14px;
  }

  .floating-card strong {
    font-size: 19px;
  }

  .floating-card--duration {
    left: 0;
    top: 65px;
  }

  .floating-card--party {
    bottom: 40px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .slot-grid {
    grid-template-columns: 1fr;
  }

  .legal-header {
    padding: 16px 0;
  }

  .legal-navigation {
    min-height: 68px;
    padding: 8px 12px 8px 15px;
  }

  .legal-navigation .button {
    font-size: 13px;
    min-height: 43px;
    padding: 11px 17px;
  }

  .legal-hero {
    padding: 54px 0 62px;
  }

  .legal-content {
    padding: 38px 0 56px;
  }

  .legal-summary {
    padding: 20px;
  }

  .party-card,
  .price-card {
    padding: 27px 23px;
  }

  .hours-card {
    padding: 25px 21px;
  }

  .hours-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
}

/* ── Floating card bob ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.floating-card--duration {
  animation: float 3.5s ease-in-out infinite;
}

.floating-card--party {
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 1.75s;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card--featured.reveal.is-visible {
  transform: translateY(-9px);
}

@media (max-width: 860px) {
  .price-card--featured.reveal.is-visible {
    transform: none;
  }
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.22s; }
.reveal--delay-3 { transition-delay: 0.35s; }
.reveal--delay-4 { transition-delay: 0.5s; }

/* ── Card hover lift ── */
.time-slot,
.rule-card,
.price-card:not(.price-card--featured),
.party-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.time-slot:hover,
.rule-card:hover,
.price-card:not(.price-card--featured):hover,
.party-card:hover {
  box-shadow: 0 24px 55px rgb(43 22 82 / 15%);
  transform: translateY(-5px);
}
