:root {
  --bg: #081631;
  --bg-deep: #040d1f;
  --panel: rgba(9, 24, 53, 0.78);
  --panel-border: rgba(139, 225, 255, 0.22);
  --text: #f9fbff;
  --muted: #c8d6f4;
  --blue: #37a8ff;
  --blue-deep: #1457ad;
  --sky: #8ce2ff;
  --gold: #ffcc31;
  --orange: #ff8e24;
  --red: #ff4b47;
  --cream: #fff4de;
  --shadow: 0 26px 80px rgba(1, 7, 17, 0.38);
  --stroke: #0a1f4d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(55, 168, 255, 0.18), transparent 25%),
    radial-gradient(circle at 85% 18%, rgba(255, 204, 49, 0.16), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(255, 75, 71, 0.14), transparent 28%),
    linear-gradient(180deg, #071229 0%, #081631 40%, #0c2453 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 88%);
  opacity: 0.28;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
}

.site-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 42px;
}

.backdrop-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, rgba(255, 204, 49, 0.14), transparent 32%),
    radial-gradient(circle at 100% 0, rgba(55, 168, 255, 0.16), transparent 34%);
  filter: blur(12px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 0 22px;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: rgba(7, 19, 44, 0.72);
  box-shadow: var(--shadow);
}

.brand-mark {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 35%, #ff9183 0, #ff4b47 38%, #b61f2f 100%);
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(10, 31, 77, 0.9);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffe798 0, var(--gold) 55%, #ff9f1a 100%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  top: -7px;
  left: -11px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand-copy strong,
h1,
h2,
h3,
.badge-top,
.badge-bottom {
  font-family: "Bungee", cursive;
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.brand-copy span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(140, 225, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 19, 44, 0.62);
  box-shadow: var(--shadow);
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav a {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(140, 225, 255, 0.18);
  background: rgba(14, 36, 79, 0.82);
  color: var(--cream);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  transform: translateY(-2px);
  background: rgba(19, 50, 101, 0.88);
  border-color: rgba(255, 204, 49, 0.45);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 30px;
  align-items: center;
  padding: 26px 0 42px;
}

.kicker,
.rotator-label,
.day-label,
.card-number,
.trick-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.kicker {
  margin: 0 0 14px;
  color: var(--sky);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--cream);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.hero-text,
.moves-copy p,
.highlight-card p,
.feature-card h2,
.schedule-card p,
.booking-copy p,
.form-response {
  line-height: 1.75;
  color: var(--muted);
}

.hero-text {
  max-width: 42rem;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid var(--stroke);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(2, 10, 24, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 34px rgba(2, 10, 24, 0.34);
  filter: saturate(1.08);
}

.button-primary {
  color: #0b214d;
  background: linear-gradient(135deg, #ffe16f 0%, var(--gold) 45%, var(--orange) 100%);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(140, 225, 255, 0.35);
}

.hero-meta,
.booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.meta-chip,
.booking-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140, 225, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 600;
}

.rotator-line {
  margin: 20px 0 0;
  color: var(--cream);
  font-weight: 700;
}

.rotator-label {
  display: inline-block;
  margin-right: 10px;
  color: var(--sky);
}

#spinWord {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(255, 204, 49, 0.28);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.badge-stage {
  position: relative;
  width: min(100%, 530px);
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
  isolation: isolate;
  filter: drop-shadow(0 28px 48px rgba(2, 10, 24, 0.42));
}

.badge-stage::before,
.badge-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 2%, 86% 16%, 96% 52%, 72% 88%, 50% 99%, 28% 88%, 4% 52%, 14% 16%);
}

.badge-stage::before {
  background: linear-gradient(180deg, #ffd65f 0%, #ffad28 45%, #ff8920 100%);
  transform: translateY(12px) scale(1.02);
  z-index: -2;
}

.badge-stage::after {
  inset: 18px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(180deg, #1f72d7 0%, #0f3e8c 56%, #0a1f4d 100%);
  z-index: -1;
  box-shadow: inset 0 0 0 8px #0a1f4d;
}

.spark {
  position: absolute;
  background: linear-gradient(180deg, #fff7bf 0%, var(--gold) 100%);
  clip-path: polygon(50% 0, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0 50%, 35% 35%);
  animation: twinkle 2.8s ease-in-out infinite;
}

.spark-a {
  top: 20%;
  right: 13%;
  width: 42px;
  height: 42px;
}

.spark-b {
  top: 32%;
  right: 7%;
  width: 20px;
  height: 20px;
  animation-delay: 0.8s;
}

.spark-c {
  top: 18%;
  left: 16%;
  width: 28px;
  height: 28px;
  animation-delay: 1.3s;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-right-color: transparent;
  border-bottom-color: transparent;
  opacity: 0.9;
}

.orbit-a {
  top: 24%;
  left: 8%;
  width: 200px;
  height: 200px;
  transform: rotate(-30deg);
  animation: spinSlow 10s linear infinite;
}

.orbit-b {
  top: 31%;
  left: 3%;
  width: 164px;
  height: 164px;
  border-width: 3px;
  opacity: 0.55;
  transform: rotate(-12deg);
  animation: spinSlow 7s linear infinite reverse;
}

.captain-bubble {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 176px;
  height: 182px;
  transform: translateX(-50%);
  border-radius: 48% 48% 44% 44%;
  background: radial-gradient(circle at 50% 24%, #fff4e7 0 22%, #ffdcb7 23% 74%, #ffb88e 75% 100%);
  border: 7px solid var(--stroke);
  box-shadow: 0 18px 28px rgba(1, 7, 17, 0.2);
}

.cap {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 138px;
  height: 78px;
  border-radius: 78px 78px 24px 24px;
  background: linear-gradient(135deg, #3aa8ff 0%, #1c67c7 100%);
  border: 7px solid var(--stroke);
}

.cap::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 48px;
  height: 58px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #dcecff 100%);
}

.cap-brim {
  position: absolute;
  right: -4px;
  top: 58px;
  width: 88px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2f98ff 0%, #2057a6 100%);
  border: 7px solid var(--stroke);
  transform: rotate(12deg);
}

.eye {
  position: absolute;
  top: 90px;
  width: 34px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--stroke);
}

.eye::before {
  content: "";
  position: absolute;
  inset: 9px 7px 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #7fdcff 0 32%, #1b6ed0 33% 67%, #071935 68% 100%);
}

.eye-a {
  left: 38px;
}

.eye-b {
  right: 38px;
}

.cheek {
  position: absolute;
  top: 128px;
  width: 18px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 141, 150, 0.42);
}

.cheek-a {
  left: 34px;
}

.cheek-b {
  right: 34px;
}

.smile {
  position: absolute;
  left: 50%;
  bottom: 24px;
  width: 54px;
  height: 26px;
  transform: translateX(-50%);
  border-bottom: 5px solid var(--stroke);
  border-radius: 0 0 60px 60px;
}

.yoyo-wrap {
  position: absolute;
  top: 28%;
  left: 5%;
  width: 190px;
  height: 190px;
}

.string {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 124px;
  height: 124px;
  border: 5px solid rgba(255, 255, 255, 0.98);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.string::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 70px;
  width: 64px;
  height: 44px;
  border-top: 5px solid rgba(255, 147, 58, 0.95);
  border-radius: 60px 60px 0 0;
  transform: rotate(10deg);
}

.yoyo {
  position: absolute;
  top: 48px;
  left: 18px;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 35%, #ff9183 0, #ff4b47 38%, #b61f2f 100%);
  border: 7px solid var(--stroke);
  animation: floatYoyo 3.1s ease-in-out infinite;
}

.yoyo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.26);
}

.yoyo-center {
  position: absolute;
  inset: 29px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff7c0 0, #ffd74d 60%, #ffb020 100%);
}

.yoyo-star {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 34px;
  height: 34px;
  background: linear-gradient(180deg, #fff8c7 0%, var(--gold) 100%);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 94%, 50% 72%, 21% 94%, 32% 57%, 2% 35%, 39% 35%);
}

.badge-wordmark {
  position: absolute;
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);
  width: 88%;
  text-align: center;
}

.badge-top,
.badge-bottom {
  display: block;
  text-shadow:
    -4px 0 0 var(--stroke),
    4px 0 0 var(--stroke),
    0 -4px 0 var(--stroke),
    0 4px 0 var(--stroke),
    -3px -3px 0 var(--stroke),
    3px 3px 0 var(--stroke),
    0 9px 0 rgba(255, 140, 36, 0.92);
}

.badge-top {
  font-size: clamp(4.3rem, 11vw, 6.2rem);
  line-height: 0.85;
  color: #ffd539;
}

.badge-bottom {
  margin-top: 2px;
  font-size: clamp(2.8rem, 7vw, 4rem);
  color: #6fd6ff;
}

.badge-tag {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(6, 16, 36, 0.74);
  border: 1px solid rgba(140, 225, 255, 0.2);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-strip,
.highlight-grid,
.profiles-grid,
.moves-grid,
.schedule-grid,
.shop-grid {
  display: grid;
  gap: 18px;
}

.feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.feature-card,
.highlight-card,
.trick-card,
.schedule-card,
.booking-form,
.panel {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-card {
  padding: 24px;
  border-radius: 28px;
}

.feature-card p,
.day-label,
.card-number,
.trick-tag {
  margin: 0 0 12px;
  color: var(--gold);
}

.feature-card h2 {
  font-family: "Sora", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.panel,
.section-block,
.schedule-block {
  border-radius: 32px;
}

.section-block,
.schedule-block {
  padding: 28px;
  margin-top: 22px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-heading h2,
.moves-copy h2,
.booking-copy h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.about-copy p {
  margin: 0 0 18px;
  line-height: 1.8;
  color: var(--muted);
}

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

.about-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.06);
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  color: var(--text);
}

.about-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-card {
  padding: 22px;
  border-radius: 26px;
}

.profiles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card {
  padding: 22px;
  border-radius: 26px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.profile-role {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 204, 49, 0.1);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
}

.profile-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--text);
}

.profile-card p:last-child {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

.card-number {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 204, 49, 0.1);
}

.highlight-card h3,
.trick-card h3,
.schedule-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--text);
}

.moves-layout,
.shop-layout,
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.moves-copy,
.shop-copy,
.booking-copy {
  padding: 18px 4px 0;
}

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

.trick-card {
  padding: 24px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.trick-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
}

.schedule-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.schedule-card {
  padding: 22px;
  border-radius: 26px;
}

.shop-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 20px;
}

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

.shop-card,
.cart-panel,
.shop-order-form {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.shop-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 28px;
}

.shop-card-copy {
  min-width: 0;
}

.shop-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.shop-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.shop-card h3 {
  font-size: 1.25rem;
  color: var(--text);
}

.shop-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.shop-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 132px;
}

.shop-footer strong {
  font-size: 1.6rem;
  color: var(--cream);
}

.add-cart-button {
  min-height: 48px;
  padding-inline: 18px;
}

.cart-panel {
  padding: 22px;
  border-radius: 30px;
}

.cart-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cart-heading .kicker {
  margin-bottom: 8px;
}

.cart-heading h3 {
  font-size: 1.5rem;
  color: var(--cream);
}

.cart-clear {
  min-height: 46px;
  padding-inline: 16px;
}

.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.cart-item,
.cart-empty {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(140, 225, 255, 0.12);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cart-item-name {
  margin: 0 0 6px;
  color: var(--cream);
  font-weight: 700;
}

.cart-item-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item-price {
  color: var(--gold);
  font-weight: 800;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(140, 225, 255, 0.14);
  border-bottom: 1px solid rgba(140, 225, 255, 0.14);
  color: var(--cream);
}

.cart-total-row strong {
  font-size: 1.6rem;
  color: var(--gold);
}

.shop-order-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 26px;
}

.shop-order-form label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
}

.shop-order-form input,
.shop-order-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(140, 225, 255, 0.2);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  resize: vertical;
}

.shop-order-form input::placeholder,
.shop-order-form textarea::placeholder {
  color: rgba(200, 214, 244, 0.62);
}

.day-label {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(140, 225, 255, 0.08);
  color: var(--sky);
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 30px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(140, 225, 255, 0.2);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  resize: vertical;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(200, 214, 244, 0.62);
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(255, 204, 49, 0.45);
  border-color: rgba(255, 204, 49, 0.45);
}

.form-button {
  width: fit-content;
  margin-top: 4px;
}

.form-response {
  margin: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(-30deg);
  }

  to {
    transform: rotate(330deg);
  }
}

@keyframes floatYoyo {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(8deg);
  }
}

@media (max-width: 1080px) {
  .about-layout,
  .profiles-grid,
  .highlight-grid,
  .schedule-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip,
  .hero,
  .moves-layout,
  .shop-layout,
  .shop-panel,
  .booking {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav {
    width: 100%;
    justify-content: flex-start;
    border-radius: 22px;
  }

  .nav a {
    flex: 0 0 auto;
    text-align: center;
  }

  .feature-strip,
  .about-layout,
  .about-points,
  .profiles-grid,
  .moves-grid,
  .highlight-grid,
  .schedule-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shop-footer {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .section-block,
  .schedule-block,
  .feature-card,
  .highlight-card,
  .trick-card,
  .schedule-card,
  .booking-form,
  .shop-card,
  .cart-panel,
  .shop-order-form {
    padding: 20px;
  }

  .badge-stage {
    width: min(100%, 420px);
  }

  .captain-bubble {
    width: 150px;
    height: 158px;
  }

  .cap {
    width: 120px;
    left: 9px;
  }

  .cap-brim {
    width: 74px;
  }

  .eye {
    top: 78px;
  }

  .yoyo-wrap {
    width: 150px;
    height: 150px;
  }

  .yoyo {
    width: 82px;
    height: 82px;
  }

  .yoyo-center {
    inset: 23px;
  }

  .yoyo-star {
    top: 26px;
    left: 26px;
    width: 28px;
    height: 28px;
  }
}
