@font-face {
  font-family: Rabie;
  src: url("../assets/fonts/Rabie-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Rabie;
  src: url("../assets/fonts/Rabie-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Rabie;
  src: url("../assets/fonts/Rabie-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Rabie;
  src: url("../assets/fonts/Rabie-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Rabie;
  src: url("../assets/fonts/Rabie-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Rabie;
  src: url("../assets/fonts/Rabie-Extrabold.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy: #2f3c68;
  --navy-2: #2d3c6b;
  --coral: #df7a5e;
  --coral-2: #d27e64;
  --gold: #f8bf3a;
  --sky: #6b9dd0;
  --silver: #b1b1b1;
  --gray: #d9d9d9;
  --surface: #f3f4f8;
  --radius: 12px;
  --space: 24px;
  --space-sm: 16px;
  --space-lg: 32px;
  --inset: 40px;
  --hero-overlay: rgba(0, 0, 0, 0.4);
  --body-size: 16px;
  --body-weight: 300;
  --body-lh: 1.9;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Rabie, "Segoe UI", Tahoma, sans-serif;
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--coral);
}

button,
input,
select {
  font-family: inherit;
}

input::placeholder {
  color: var(--navy);
  opacity: 0.75;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space);
  align-items: stretch;
  position: relative;
  z-index: 0;
}

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

.span-all {
  grid-column: 1 / -1;
}

.card {
  border-radius: var(--radius);
}

.header-wrap {
  position: sticky;
  top: 20px;
  z-index: 10000;
}

.header-wrap.is-desk .header-mobile {
  display: none;
}

.header-wrap.is-desk .header-desk {
  display: flex;
}

.header-wrap.is-desk .mobile-menu {
  display: none !important;
}

html.menu-open .header-wrap {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space);
  z-index: 10000;
}

html.menu-open .page::before {
  content: "";
  display: block;
  height: 60px;
  flex-shrink: 0;
}

html.menu-open .header-wrap .header-mobile {
  display: flex !important;
}

html.menu-open .header-wrap .header-desk {
  display: none !important;
}

html.menu-open .mobile-menu.open {
  display: flex !important;
}

.header-wrap.measure .header-desk {
  display: flex;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  inset-inline: 0;
}

.header-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
}

.header-desk {
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(47, 60, 104, 0.12);
  padding: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.brand img {
  height: 36px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-weight: 500;
  font-size: 15px;
}

.brand-text span {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: -0.01em;
}

.logo-chip {
  height: 60px;
  background: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(47, 60, 104, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
  cursor: pointer;
  font: inherit;
}

.logo-chip img {
  height: 40px;
  width: auto;
}

.header-desk .brand img {
  height: 48px;
}

.menu-btn {
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  background: var(--coral);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0;
  flex-shrink: 0;
}

.menu-btn span {
  display: block;
  width: 30px;
  height: 5px;
  background: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 90px;
  inset-inline: var(--space);
  z-index: 10001;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(47, 60, 104, 0.25);
  padding: 10px;
  flex-direction: column;
  max-height: calc(100dvh - 110px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-menu.open {
  display: flex;
}

html.menu-open {
  overflow: hidden;
  padding-inline-end: var(--menu-gutter, 0px);
}

html.menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
}

.nav-link {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 300;
  font-size: 16px;
  color: var(--navy-2);
  padding: 12px 10px;
  border-radius: 8px;
  text-align: start;
}

.nav-link:hover {
  background: rgba(223, 122, 94, 0.12);
  color: var(--coral);
}

.header-desk .brand,
.header-desk .header-actions,
.desk-nav {
  flex-shrink: 0;
}

.desk-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center;
}

.desk-nav .nav-link {
  padding: 8px 12px;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-navy {
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--coral);
}

.btn-coral {
  background: var(--coral);
}

.btn-coral:hover {
  background: var(--navy);
}

.btn-wa {
  background: var(--gold);
}

.btn-wa:hover {
  background: var(--navy);
  color: #fff;
}

.btn-sm {
  height: 46px;
  padding: 0 20px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
}

.btn-lg {
  height: 60px;
  font-weight: 600;
  font-size: 20px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.menu-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(45, 60, 107, 0.15);
}

.menu-cta .btn {
  height: 48px;
  font-size: 16px;
}


.preloader {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease;
}

.preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.spin {
  animation: propSpin 1.4s linear infinite;
}

@keyframes propSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floaty {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes dashmove {
  to {
    stroke-dashoffset: -32;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    translate: 0 24px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes textIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes blockIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.reveal.is-in {
  animation: textIn 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

.reveal-block {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.reveal-block.is-in {
  animation: blockIn 0.95s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-in,
  .reveal-block,
  .reveal-block.is-in,
  .hero h1,
  .hero .btn-lg {
    opacity: 1;
    transform: none;
    translate: none;
    animation: none;
  }
}

@keyframes drift1 {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  25% {
    translate: 12px -9px;
    rotate: 3deg;
  }
  50% {
    translate: -5px -15px;
    rotate: -2deg;
  }
  75% {
    translate: -12px 6px;
    rotate: 2deg;
  }
}

@keyframes drift2 {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  25% {
    translate: -10px 8px;
    rotate: -3deg;
  }
  50% {
    translate: 7px 14px;
    rotate: 2deg;
  }
  75% {
    translate: 13px -6px;
    rotate: -2deg;
  }
}

@keyframes drift3 {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  30% {
    translate: 9px 11px;
    rotate: 2deg;
  }
  60% {
    translate: -13px 4px;
    rotate: -3deg;
  }
  80% {
    translate: 5px -10px;
    rotate: 1deg;
  }
}

@keyframes boatfloat {
  0%,
  100% {
    translate: 0 0;
    rotate: -2.5deg;
  }
  25% {
    translate: 0 -5px;
    rotate: 0deg;
  }
  50% {
    translate: 0 -9px;
    rotate: 2.5deg;
  }
  75% {
    translate: 0 -4px;
    rotate: 0deg;
  }
}

@keyframes confettiFall {
  from {
    transform: translateY(-6vh) rotate(0deg);
  }
  to {
    transform: translateY(108vh) rotate(720deg);
  }
}

.hero {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  gap: var(--space);
}

.hero-copy {
  flex: 0 1 auto;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 20px 20px;
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-weight: 600;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.25;
  color: #fff;
  text-align: center;
  animation: fadeUp 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) 0.15s both;
}

.hero .btn-lg {
  width: auto;
  padding: 0 32px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  animation: fadeUp 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) 0.4s both;
}

.hero .btn-lg:hover {
  background: #fff;
  color: var(--navy);
}

@media (min-width: 1000px) {
  .hero {
    min-height: min(78vh, 820px);
    padding: var(--space);
  }

  .hero-inner {
    min-height: calc(min(78vh, 820px) - 48px);
  }

  .hero-copy {
    padding: 48px 24px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(56px, 6.8vw, 96px);
  }

  .game-box {
    margin: 80px 0;
  }
}

.game-box {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 320px;
  flex: 0 0 320px;
  margin: 60px 0;
  touch-action: none;
}

html.dragging-piece {
  overflow: hidden;
  padding-inline-end: var(--drag-gutter, 0px);
}

html.dragging-piece,
html.dragging-piece body {
  overscroll-behavior: none;
  touch-action: none;
}

html.dragging-piece body {
  overflow: hidden;
}

.game-box > svg:not(.piece) path {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 6 6;
  stroke-linecap: butt;
  stroke-linejoin: miter;
}

.game-box svg.piece {
  position: absolute;
  left: 0;
  top: 0;
  overflow: visible;
  pointer-events: none;
  transform-origin: 0 0;
  touch-action: none;
}

.game-box svg.piece path {
  pointer-events: auto;
}

.replay-btn {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: var(--coral);
  z-index: 7;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.replay-btn.show {
  display: flex;
}

.replay-btn:hover {
  background: var(--navy);
}

.confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 400;
  overflow: hidden;
  display: none;
}

.confetti-layer.on {
  display: block;
}

.panel {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.panel h2 {
  margin: 32px 32px 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  color: var(--navy);
  text-align: start;
}

.float-art {
  align-self: center;
  z-index: 3;
}

.prop {
  width: 160px;
  height: 160px;
  margin: 12px 0 -72px;
  animation: floaty 5s ease-in-out infinite;
}

.boat {
  width: 170px;
  height: 130px;
  margin: 24px 0 -56px;
  animation: boatfloat 6s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.panel-bar {
  margin-top: auto;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
  width: 100%;
  border-radius: var(--radius) var(--radius) 0 0;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 84px 24px 24px;
}

.panel-bar p {
  margin: 0;
  max-width: 380px;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: #fff;
  text-align: center;
}

.bar-coral {
  background: var(--coral);
}

.bar-sky {
  background: var(--sky);
  padding-top: 70px;
}

.values {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.values svg.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.values span {
  position: absolute;
  font-weight: 500;
  font-size: clamp(14px, 5.9vw, 21.3px);
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}

.v1 { left: 9.9%; top: 11.5%; }
.v2 { left: 32.9%; top: 33.7%; transform: rotate(-45deg); transform-origin: 0 0; line-height: 1; }
.v3 { left: 66.9%; top: 52.7%; transform: rotate(-45deg); transform-origin: 0 0; }
.v4 { left: 12.5%; top: 72.5%; }
.v5 { left: 82%; top: 25.2%; transform: rotate(-45deg); transform-origin: 0 0; }
.v6 { left: 82.1%; top: 76.1%; transform: rotate(-45deg); transform-origin: 0 0; }
.v7 { left: 55.6%; top: 78.3%; color: var(--navy-2); text-align: center; white-space: pre-line; line-height: 1.25; }

.slot {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(47, 60, 104, 0.06), rgba(47, 60, 104, 0.06) 14px, rgba(47, 60, 104, 0.02) 14px, rgba(47, 60, 104, 0.02) 28px);
}

.slot::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  color: rgba(47, 60, 104, 0.45);
  text-align: center;
  padding: 16px;
}

.media-slot {
  cursor: pointer;
}

.media-slot img,
.media-slot video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-slot.pin-top {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.slideshow > img {
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.slideshow > img.slide-on {
  opacity: 1;
  z-index: 1;
}

.media-slot-hint {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(47, 60, 104, 0.55);
  text-align: center;
  padding: 16px;
  pointer-events: none;
}

.media-slot-hint small {
  font-size: 11px;
  font-weight: 300;
  opacity: 0.8;
}

.media-slot.is-filled {
  background: #1a1a1a;
}

.media-slot.is-filled::after,
.media-slot.is-filled .media-slot-hint {
  display: none;
}

.media-slot.is-drop {
  outline: 2px dashed var(--coral);
  outline-offset: -4px;
}

.media-slot.is-drop {
  outline: 2px dashed var(--coral);
  outline-offset: -4px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  min-height: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hero-bg .media-slot-hint {
  pointer-events: auto;
}

.hero-bg .media-slot-hint {
  inset: auto;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 32px);
  height: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(47, 60, 104, 0.16);
}

.hero-bg.is-filled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-bg img,
.hero-bg video {
  object-fit: cover;
  object-position: center top;
}

.pop.media-slot {
  pointer-events: none;
}

.daily-item:hover .pop.media-slot {
  pointer-events: auto;
}

.about {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space);
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-lg);
}

.video-box {
  flex: 1 1 380px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  height: 340px;
  overflow: hidden;
  min-width: 0;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy-2);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

.video-box.is-filled .play-btn {
  display: flex;
}

.video-box.is-filled video {
  pointer-events: none;
}

.video-box .video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
  pointer-events: none;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--coral);
}

.video-hint {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% + 44px);
  margin: 0;
  text-align: center;
  font-weight: 300;
  font-size: 14px;
  color: var(--navy);
  opacity: 0.6;
}

.about-copy {
  flex: 1 1 380px;
  min-width: 0;
}

.about-copy h2 {
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  text-align: start;
}

.about-copy p {
  margin: 0;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--navy);
  white-space: pre-line;
}

.section-head {
  margin: 0;
  padding: 0;
}

.section-head h2,
.section-head h3 {
  margin: 0 0 var(--space-sm);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
  text-align: start;
}

.section-head p {
  margin: 0;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  text-align: start;
  max-width: 36em;
}

.programs {
  background: var(--navy);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.programs .section-head h2,
.programs .section-head p,
.periods .section-head h2,
.periods .section-head p,
.fees .section-head h2,
.join .section-head h2,
.join .section-head p,
.gallery .section-head h2,
.gallery .section-head p {
  color: #fff;
}

.fees .section-head h2 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 12px;
}

.fees .section-head p {
  color: var(--gold);
  font-size: 15px;
  line-height: 1.75;
}

.programs .acc {
  padding: var(--space);
  box-sizing: border-box;
}

.programs .acc-btn {
  min-height: 0;
  height: auto;
  padding: 0;
}

.programs .acc-body {
  padding: 20px 0 0;
}

.acc {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}

.acc-btn {
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-family: inherit;
  gap: 12px;
}

.acc-btn span {
  flex: 1;
  text-align: start;
  font-weight: 400;
  font-size: 20px;
  color: var(--navy-2);
}

.acc-body {
  display: none;
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 28px;
}

.acc.open .acc-body {
  display: flex;
}

.acc.open .chev {
  transform: rotate(180deg);
}

.acc-body p {
  margin: 0;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--navy);
  text-align: start;
}

.chev {
  flex-shrink: 0;
  transition: transform 0.2s;
}

#progList,
#faqList {
  display: flex;
  flex-direction: column;
}

#faqList {
  flex: 1 1 auto;
  gap: var(--space);
}

#faqList > .acc {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 60px;
}

#progList > .acc + .acc {
  margin-top: var(--space);
}

.faq .section-head {
  margin: 0;
}

.faq .acc-btn {
  flex: 1 0 auto;
  height: auto;
  min-height: 60px;
  padding: 0 20px;
}

.faq .acc-btn span {
  font-weight: 400;
  font-size: 20px;
}

.faq .acc-body {
  padding: 12px 20px 20px;
  flex-shrink: 0;
}

.periods {
  background: var(--coral);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.period {
  position: relative;
  flex: 1;
  border-radius: var(--radius);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space);
  padding: var(--space);
}

.period svg.dash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.period svg.dash rect {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 8 8;
  animation: dashmove 1.4s linear infinite;
}

.period h3 {
  margin: 0;
  font-weight: 600;
  font-size: 32px;
  color: #fff;
}

.period p {
  margin: 6px 0 0;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: #fff;
  text-align: start;
  white-space: pre-line;
}

.period-icon {
  width: 120px;
  align-self: stretch;
  flex-shrink: 0;
  min-height: 120px;
}

.period-icon.slot,
.period-icon.media-slot.is-filled {
  min-height: 120px;
  background: none;
}

.period-icon img,
.period-icon video {
  object-fit: contain;
  object-position: center;
  padding: 10px;
}

.daily {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.daily-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space);
  padding: 0;
}

.daily-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.daily-item p {
  margin: 0;
  color: var(--navy-2);
}

.daily-item .k {
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
}

.daily-item .v {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
}

.pop {
  position: absolute;
  inset-inline-end: 60px;
  bottom: 75%;
  width: 230px;
  height: 160px;
  z-index: 30;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(47, 60, 104, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.daily-item:hover .pop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pop.slot {
  min-height: 160px;
}

.fees {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius);
  padding: var(--space);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.fees-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--space) var(--space-lg);
}

.fees-col {
  flex: 1 1 340px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.fees-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  flex: 1;
}

.fees-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}

.fees-features svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.fees-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0;
  width: 100%;
}

.fees-cta a {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  background: #fff;
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 400;
  font-size: 15px;
}

.fees-cta a:hover {
  background: var(--gold);
  color: var(--navy);
}

.wizard {
  flex: 1 1 340px;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.segs {
  display: flex;
  gap: 8px;
  height: 14px;
}

.seg {
  flex: 1;
  height: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s;
}

.seg.on {
  background: #fff;
}

.step {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.step.on {
  display: flex;
}

.step > p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.opt {
  cursor: pointer;
  min-height: 48px;
  border-radius: var(--radius);
  text-align: start;
  padding: 10px 16px;
  font-family: inherit;
  font-weight: 300;
  font-size: 15px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.opt.sel {
  border-color: transparent;
  background: #fff;
  color: var(--navy);
}

.wizard input,
.booking input,
.join input {
  height: 52px;
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 15px;
  color: var(--navy);
}

.summary {
  background: rgba(255, 255, 255, 0.12);
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary p {
  margin: 0;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: #fff;
}

.err {
  display: none;
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.err.show {
  display: block;
}

.wiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.wiz-nav .btn {
  width: 90px;
  height: 48px;
  font-size: 16px;
  font-weight: 400;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-ghost:hover {
  background: var(--navy);
}

.fees .btn-navy {
  background: #fff;
  color: var(--navy);
}

.fees .btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
}

.quotes {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.t-mobile {
  overflow: hidden;
  touch-action: pan-y;
  width: 100%;
  --t-gap: 16px;
  --t-card-w: 88%;
}

.t-strip {
  display: flex;
  gap: var(--t-gap);
  width: max-content;
  cursor: grab;
  user-select: none;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.3, 0.8, 0.3, 1);
}

.t-strip:active {
  cursor: grabbing;
}

.t-card {
  background: #fff;
  border-radius: var(--radius);
  min-height: 220px;
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 var(--t-card-w);
  width: var(--t-card-w);
  box-sizing: border-box;
}

.t-card p {
  margin: 0;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--navy);
}

.t-card .who {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
}

.stars {
  display: flex;
  gap: 10px;
}

@media (min-width: 1000px) {
  .t-mobile {
    --t-gap: 24px;
  }

  .t-card {
    min-height: 260px;
  }
}

.gallery {
  background: var(--navy);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 150px;
  gap: var(--space);
}

@media (min-width: 1000px) {
  .gal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }
}

.gal-cell {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.gal-cell.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gal-cell.slot {
  min-height: 0;
  height: 100%;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 60, 107, 0.95);
  z-index: 600;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 72px 64px 32px;
}

.lightbox.open {
  display: flex;
}

.lb-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.lb-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev {
  inset-inline-end: 12px;
}

.lb-next {
  inset-inline-start: 12px;
}

.lb-close:hover,
.lb-arrow:hover {
  background: var(--coral);
}

.lb-empty {
  width: 280px;
  height: 280px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}

#lbPhoto {
  display: none;
  max-width: min(92vw, 920px);
  max-height: 68vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox.has-photo .lb-empty {
  display: none;
}

.lightbox.has-photo #lbPhoto {
  display: block;
}

#lbVideo {
  display: none;
  max-width: min(92vw, 1080px);
  max-height: 80vh;
  width: auto;
  border-radius: var(--radius);
  background: #000;
}

.lightbox.has-video .lb-empty,
.lightbox.has-video #lbPhoto,
.lightbox.has-video .lb-arrow,
.lightbox.has-video .lb-count,
.lightbox.has-video p {
  display: none;
}

.lightbox.has-video #lbVideo {
  display: block;
}

.lightbox p {
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.lb-count {
  color: #fff;
  font-weight: 300;
}

.faq {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
  justify-content: stretch;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  width: 100%;
}

.join {
  background: var(--coral);
  border-radius: var(--radius);
  padding: var(--space);
  display: flex;
  flex-direction: column;
  gap: var(--space);
  align-self: stretch;
  height: 100%;
}

.join .segs {
  height: 20px;
}

.join .seg {
  height: 20px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
}

.join .seg.on {
  background: #fff;
}

.join .opt {
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  border-color: #fff;
  background: rgba(0, 0, 0, 0.1);
}

.join .opt.sel {
  background: #fff;
  color: var(--navy);
  border-color: transparent;
}

.join input {
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
}

.join-q {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.join-q > span {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.join .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.join .chips .opt {
  flex: 1 1 calc(50% - 8px);
  height: auto;
  min-height: 40px;
  padding: 8px 10px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

.join .chips-3 .opt {
  flex: 1 1 calc(33.333% - 8px);
}

.join select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  cursor: pointer;
}

.join .summary {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.join .wiz-nav .btn {
  width: 140px;
  height: 60px;
  font-size: 20px;
}

.join .btn-next {
  background: #fff;
  color: var(--navy);
}

.join .btn-next:hover {
  background: var(--navy);
  color: #fff;
}

.join .btn-ghost {
  background: rgba(0, 0, 0, 0.2);
}

.send-white {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: #fff;
  border-radius: var(--radius);
  color: var(--coral);
  font-weight: 600;
  font-size: 20px;
}

.send-white:hover {
  background: var(--navy);
  color: #fff;
}

.booking {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--space);
}

.book-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space) var(--space-lg);
  align-items: stretch;
}

.book-col {
  flex: 1 1 380px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#roles,
#feeProgs,
#feePers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#roles {
  gap: 20px;
}

.join .step > p,
.wizard .step > p {
  font-size: 20px;
}

.booking input {
  height: 60px;
  background: var(--gray);
  border: 1px solid var(--navy);
  padding: 0 20px;
  font-size: 16px;
}

.slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.slot-pick {
  cursor: pointer;
  height: 60px;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 300;
  font-size: 14px;
  background: var(--gray);
  color: var(--navy);
  border: 1px solid var(--navy);
}

.slot-pick.sel {
  font-weight: 500;
  background: var(--navy);
  color: #fff;
}

.thanks {
  display: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.thanks.show {
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.thanks p {
  margin: 0;
  text-align: center;
}

.map-wrap {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  min-height: 220px;
  overflow: hidden;
}

.map-wrap iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: var(--radius);
}

.footer {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
}

.footer-brand {
  flex: 2 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  max-width: 320px;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials a:hover {
  background: var(--coral);
}

.footer-col {
  flex: 1 1 160px;
  min-width: 0;
}

.footer-col.contact {
  flex: 1 1 220px;
}

.footer-col > p {
  margin: 0 0 14px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}

.footer-col button,
.footer-col a.fl {
  border: none;
  background: none;
  cursor: pointer;
  padding: 3px 0;
  text-align: start;
  font-family: inherit;
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: #fff;
  display: block;
}

.footer-col button:hover,
.footer-col a.fl:hover {
  color: var(--gold);
}

.soon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.soon-row span {
  font-weight: 300;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.badge {
  font-weight: 300;
  font-size: 10px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  padding: 3px 8px;
}

.soon-row .badge {
  color: var(--navy);
}

.contact-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 14px;
}

.contact-list a:hover {
  color: var(--gold);
}

.copy {
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.copy p {
  margin: 0;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: start;
}

.copy-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.copy-text p,
.copy-text .legal-name {
  margin: 0;
  line-height: 1.4;
}

.copy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.copy-links a {
  font-weight: 300;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.copy-links a:hover {
  color: var(--gold);
}

.lang-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lang-label {
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.lang-btn {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 8px;
  border-radius: 6px;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  color: var(--gold);
  background: rgba(248, 191, 58, 0.12);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
}

.phone-hint {
  margin: 6px 0 0;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  display: none;
}

.phone-hint.show-hint {
  display: block;
}

.phone-hint.show-err {
  display: block;
  color: #ffb4a8;
}

.booking .phone-hint {
  color: rgba(47, 60, 104, 0.7);
}

.booking .phone-hint.show-err {
  color: #c44;
}

input.invalid {
  outline: 2px solid #ffb4a8;
  outline-offset: 1px;
}

.booking input.invalid {
  outline-color: #c44;
}

[dir="ltr"] .header-mobile {
  direction: ltr;
}

[dir="rtl"] .header-mobile {
  direction: rtl;
}

[dir="ltr"] .nav-link,
[dir="ltr"] .panel h2,
[dir="ltr"] .about-copy h2,
[dir="ltr"] .section-head h2,
[dir="ltr"] .section-head h3,
[dir="ltr"] .section-head p,
[dir="ltr"] .acc-btn span,
[dir="ltr"] .acc-body p,
[dir="ltr"] .period p,
[dir="ltr"] .opt,
[dir="ltr"] .footer-col button,
[dir="ltr"] .footer-col a.fl,
[dir="ltr"] .copy p,
[dir="ltr"] .phone-hint,
[dir="ltr"] .join-q > span,
[dir="ltr"] .step > p,
[dir="ltr"] .summary p,
[dir="ltr"] .fees-features li,
[dir="ltr"] .legal h1,
[dir="ltr"] .legal h2,
[dir="ltr"] .legal p,
[dir="ltr"] .legal li,
[dir="ltr"] .legal .lede {
  text-align: left;
}

[dir="ltr"] .section-head p {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

[dir="ltr"] .contact-list {
  align-items: flex-start;
}

[dir="ltr"] .wiz-nav {
  flex-direction: row;
}

[dir="ltr"] .copy {
  flex-direction: row;
}

.legal-name,
[dir="rtl"] .legal-name,
[dir="ltr"] .legal-name {
  text-align: left;
  direction: ltr;
}

.hero,
.about,
.programs,
.periods,
.daily,
.fees,
.quotes,
.gallery,
.faq,
.join,
.booking,
.footer {
  padding: var(--inset);
}

.panel,
#vision,
#mission {
  padding: 0;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(47, 60, 104, 0.12);
  padding: 12px;
}

.legal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: var(--inset);
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  color: var(--navy);
}

.legal .lede {
  margin: 0 0 32px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
}

.legal h2 {
  margin: 28px 0 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--navy);
}

.legal p,
.legal li {
  font-weight: var(--body-weight);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  color: var(--navy);
}

.legal p {
  margin: 0 0 14px;
}

.legal ul {
  margin: 0 0 14px;
  padding: 0;
  padding-inline-start: 22px;
}

.legal li + li {
  margin-top: 8px;
}

[hidden] {
  display: none !important;
}
