/* ── NAV ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--text)
}

.nav-logo-text em {
  font-style: normal;
  color: var(--purple)
}

.nav-logo-badge {
  background: var(--purple);
  color: var(--bg);
  font-family: 'Syne', sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  cursor: pointer
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text)
}

.nav-links .has-dropdown {
  position: relative
}

.nav-links .has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--border-p);
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s;
  z-index: 200;
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0)
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-sub);
  text-decoration: none;
  transition: all 0.15s;
}

.nav-dropdown a:hover {
  background: var(--w08);
  color: var(--text)
}

.nav-dropdown a span {
  font-size: 16px
}

.nav-cta {
  background: var(--purple);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px)
}



/* ── PAGES ── */

.page {
  display: none;
  min-height: 100vh;
  background: var(--bg)
}

.page.active {
  display: block
}



/* ── ABOUT ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center
}

.about-left {
  position: relative
}

.about-card-main {
  border-radius: 24px;
  border: 1px solid var(--border-p);
  background: var(--bg3);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: 80px;
}

.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(107, 47, 217, 0.25), transparent 65%)
}

.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg2);
  border: 1px solid var(--border-p);
  border-radius: 18px;
  padding: 22px 26px;
}

.float-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1
}

.float-lbl {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4
}

.about-right p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.72;
  margin-bottom: 14px
}

.about-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-sub)
}

.feat-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pill-bg);
  border: 1px solid var(--border-p);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--purple-l);
  font-weight: 700;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px
}

.ab-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center
}

.ab-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px
}

.ab-stat-lbl {
  font-size: 11px;
  color: var(--text-dim)
}



/* ── PACKAGES ── */

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

.pkg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px 26px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.pkg:hover {
  border-color: var(--border-p);
  transform: translateY(-4px)
}

.pkg.featured {
  border-color: var(--purple);
  background: linear-gradient(160deg, rgba(107, 47, 217, 0.12), var(--bg-card))
}

.pkg.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--purple);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.pkg-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px
}

.pkg-old {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px
}

.pkg-price-row {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px
}

.pkg-sym {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px
}

.pkg-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1
}

.pkg-save {
  font-size: 12px;
  color: #22c55e;
  font-weight: 500;
  margin-bottom: 22px
}

.pkg-hr {
  height: 1px;
  background: var(--border);
  margin: 20px 0
}

.pkg-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px
}

.pkg-items li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 9px
}

.pkg-items li::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pill-bg);
  border: 1px solid var(--border-p);
  color: var(--purple-l);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pkg-btn {
  width: 100%;
  padding: 13px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.pkg-btn.solid {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 24px rgba(107, 47, 217, 0.3)
}

.pkg-btn.outline {
  background: transparent;
  color: var(--text-sub);
  border: 1px solid var(--border)
}

.pkg-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px)
}

/* ── AGE PACKAGES ── */

.age-package-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.age-package-card {
  border-radius: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
}

.age-package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.26), transparent 22%),
    radial-gradient(circle at 92% 18%, rgba(245, 194, 0, 0.22), transparent 18%);
  pointer-events: none;
}

.age-package-pink {
  background: linear-gradient(150deg, #c845a7 0%, #8b2f96 48%, #491974 100%);
}

.age-package-green {
  background: linear-gradient(150deg, #9bdc18 0%, #4f9a17 42%, #176321 100%);
}

.age-package-orange {
  background: linear-gradient(150deg, #ff8a22 0%, #d63d1f 46%, #8f1d18 100%);
}

.age-package-blue {
  background: linear-gradient(150deg, #a9dbef 0%, #355fc9 42%, #1c2f8e 100%);
}

.age-package-yellow {
  background: linear-gradient(150deg, #ffe81f 0%, #b49322 42%, #69511d 100%);
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 12px);
}

.age-package-top,
.age-package-sections,
.age-package-footer {
  position: relative;
  z-index: 1;
}

.age-package-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.age-package-eyebrow,
.age-package-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.age-package-eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.age-package-age {
  font-family: 'Syne', sans-serif;
  font-size: clamp(64px, 7vw, 118px);
  font-weight: 800;
  color: #fff4d8;
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-shadow: 8px 10px 0 rgba(36, 67, 112, 0.55);
}

.age-package-years {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 800;
  color: #fff4d8;
  line-height: 0.95;
  text-shadow: 5px 7px 0 rgba(36, 67, 112, 0.55);
}

.age-package-badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  padding: 8px 14px;
  white-space: nowrap;
}

.age-package-sections {
  display: grid;
  gap: 18px;
  flex: 1;
}

.age-package-section {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.age-package-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 244, 216, 0.16);
  border: 1px solid rgba(255, 244, 216, 0.24);
  font-size: 28px;
}

.age-package-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.3vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.age-package-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.age-package-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 28px;
}

.age-package-footer .btn-primary {
  width: 100%;
  justify-content: center;
}



/* ── FOOTER ── */

footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 60px 60px 36px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px
}

.f-brand {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px
}

.f-brand em {
  font-style: normal;
  color: var(--purple)
}

.f-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 22px
}

.f-socials {
  display: flex;
  gap: 8px
}

.f-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s;
}

.f-soc:hover {
  border-color: var(--purple);
  background: rgba(107, 47, 217, 0.2);
  color: #fff
}

.f-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.906);
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer
}

.f-links a:hover {
  color: #fff
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25)
}

.f-made {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2)
}

.f-made span {
  color: var(--purple);
  opacity: 0.7
}



/* ── BUTTONS ── */

.btn-primary {
  background: var(--purple);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 40px rgba(107, 47, 217, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 50px rgba(107, 47, 217, 0.45)
}

.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--w20);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--w50);
  color: var(--text)
}



/* ── PAGE HERO (inner pages) ── */

.page-hero {
  min-height: 50vh;
  padding: 140px 60px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--hero-glow1) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--hero-glow2) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px
}

.page-hero-icon {
  font-size: 56px;
  margin-bottom: 24px;
  display: block
}

.page-hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px
}

.page-hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 22px;
}

.page-hero-h1 em {
  font-style: normal;
  color: var(--purple)
}

.page-hero-h1 mark {
  background: none;
  color: var(--gold)
}

.page-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 36px
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}



/* ── ACTIVITY CARDS ── */

.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 20px;
  overflow: hidden
}

.act-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 30px 26px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s;
}

.act-card:hover {
  background: var(--bg2);
  border-color: var(--border-p)
}

.act-card:hover .act-arrow {
  opacity: 1;
  transform: translate(0, 0)
}

.act-icon {
  font-size: 38px;
  margin-bottom: 16px
}

.act-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px
}

.act-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.55
}

.act-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 194, 0, 0.1);
  border: 1px solid rgba(245, 194, 0, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 12px
}

.act-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(6px, -6px);
  transition: all 0.25s;
}

.act-arrow svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}



/* ── ACTIVITY DETAIL CARDS ── */

.act-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px
}

.act-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.act-detail-card:hover {
  border-color: var(--border-p);
  transform: translateY(-4px)
}

.act-detail-img {
  height: 220px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}

.act-detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, var(--hero-glow1) 0%, transparent 60%)
}

.act-detail-body {
  padding: 24px 26px 28px
}

.act-detail-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px
}

.act-detail-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em
}

.act-detail-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 18px
}

.act-detail-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px
}

.act-feat-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  padding: 4px 12px;
  border-radius: 100px
}

.act-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-l);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.2s;
  cursor: pointer;
}

.act-detail-link:hover {
  gap: 12px
}



/* ── PARTY CARDS ── */

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

.party-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
}

.party-card:hover {
  border-color: var(--border-p);
  transform: translateY(-4px)
}

.party-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  background: var(--bg3);
  overflow: hidden;
}

.party-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, var(--hero-glow1) 0%, transparent 65%)
}

.party-body {
  padding: 22px 24px 26px
}

.party-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.party-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.55
}

.party-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px
}

.party-perk {
  font-size: 10px;
  font-weight: 600;
  color: var(--pill-text);
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em
}

.party-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-l);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: gap 0.2s
}

.party-card:hover .party-cta {
  gap: 12px
}



/* ── TEAM GRID ── */

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

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s
}

.team-card:hover {
  border-color: var(--border-p);
  transform: translateY(-4px)
}

.team-avatar {
  height: 180px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(107, 47, 217, 0.3) 100%)
}

.team-body {
  padding: 18px 16px 22px
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.team-role {
  font-size: 12px;
  color: var(--text-dim)
}



/* ── INFO BLOCKS ── */

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.info-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px
}

.info-block-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border)
}

.info-item:last-child {
  border-bottom: none
}

.info-item-icon {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0
}

.info-item-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px
}

.info-item-val {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.5
}



/* ── POOL/ADVENTURE SPECIFIC ── */

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px
}

.safety-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 18px;
  text-align: center
}

.safety-icon {
  font-size: 28px;
  margin-bottom: 10px
}

.safety-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.safety-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.5
}



/* ── PRICING TABLE ── */

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px
}

.price-table th {
  text-align: left;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border)
}

.price-table td {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-sub);
  border-bottom: 1px solid var(--border)
}

.price-table tr:last-child td {
  border-bottom: none
}

.price-table .price {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold)
}



/* ── SECTION DIVIDER ── */

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0 60px
}



/* ── BREADCRUMB ── */

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

.breadcrumb span {
  font-size: 12px;
  color: var(--text-dim)
}

.breadcrumb a {
  font-size: 12px;
  color: var(--purple-l);
  cursor: pointer;
  text-decoration: none
}

.breadcrumb a:hover {
  color: var(--text)
}



/* ── HIGHLIGHT BOX ── */

.highlight-box {
  background: linear-gradient(135deg, rgba(107, 47, 217, 0.15), rgba(245, 194, 0, 0.06));
  border: 1px solid var(--border-p);
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
}

.highlight-box-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px
}

.highlight-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.65
}



/* ── TIMELINE ── */

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

.tl-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative
}

.tl-item:last-child {
  border-bottom: none
}

.tl-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--border-p);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  margin-top: 4px
}

.tl-body {}

.tl-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px
}

.tl-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-sub);
  line-height: 1.6
}

.tl-item .tl-num {
  transition: all 0.3s ease;
}

.tl-item .tl-num:hover {
  border-color: var(--primary);
  color: white;
  transition: all 0.3s ease;
}

/* ── SCHOOL OFFER ── */

.school-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 24px;
  max-width: 1120px;
  margin: 36px auto 0;
  align-items: stretch;
}

.school-offer-main,
.school-offer-side {
  min-width: 0;
}

.school-offer-main {
  background: linear-gradient(160deg, rgba(107, 47, 217, 0.18), var(--bg-card));
  border: 1px solid var(--border-p);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.school-offer-kicker,
.school-activity-title,
.school-package-label,
.school-package-title,
.school-meal-title,
.school-pool-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.school-offer-kicker {
  font-size: 13px;
  color: var(--gold);
}

.school-offer-price-row {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.school-offer-price {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.9;
  color: var(--text);
  letter-spacing: -0.04em;
}

.school-offer-note {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.school-offer-feature {
  width: fit-content;
  max-width: 100%;
  background: rgba(245, 194, 0, 0.1);
  border: 1px solid rgba(245, 194, 0, 0.32);
  border-radius: 100px;
  color: var(--gold);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
}

.school-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.school-package-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.school-package-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-p);
  background: rgba(255, 255, 255, 0.065);
}

.school-package-label {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 8px;
}

.school-package-title {
  color: var(--text);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 14px;
}

.school-meal-grid {
  display: grid;
  gap: 12px;
}

.school-meal-card,
.school-pool-card,
.school-activity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.school-meal-card {
  padding: 16px 18px;
}

.school-meal-title {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 6px;
}

.school-meal-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-sub);
  margin: 0;
}

.school-offer-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.school-pool-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
}

.school-pool-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--pill-bg);
  border: 1px solid var(--border-p);
  font-size: 28px;
  flex-shrink: 0;
}

.school-pool-title {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 2px;
}

.school-pool-price {
  font-family: 'Syne', sans-serif;
  color: var(--gold);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.school-pool-sub {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 3px;
}

.school-add-on-note {
  background: rgba(245, 194, 0, 0.08);
  border: 1px solid rgba(245, 194, 0, 0.22);
  border-radius: 18px;
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.55;
  padding: 18px;
}

.school-activity-card {
  padding: 22px;
}

.school-activity-title {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 16px;
}

.school-activity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.school-activity-list span {
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-sub);
  font-size: 13px;
  line-height: 1.25;
}

/* ── CONTACT PAGE ── */

.contact-hero {
  position: relative;
}

.contact-hero-card {
  position: absolute;
  right: 60px;
  bottom: 54px;
  width: min(320px, calc(100% - 120px));
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(20, 12, 34, 0.82);
  border: 1px solid var(--border-p);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.contact-hero-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.contact-hero-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 4px;
}

.contact-hero-card-sub {
  font-size: 13px;
  color: var(--gold);
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-method {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  border-color: var(--border-p);
  background: linear-gradient(160deg, rgba(107, 47, 217, 0.12), var(--bg-card));
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--pill-bg);
  border: 1px solid var(--border-p);
  color: var(--gold);
  font-size: 21px;
}

.contact-method-label {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-top: 22px;
}

.contact-method-value {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.contact-copy {
  max-width: 620px;
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.7;
  margin: -28px 0 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple-l);
  box-shadow: 0 0 0 4px rgba(107, 47, 217, 0.14);
}

.contact-form ::placeholder {
  color: var(--text-dim);
}

.visit-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.visit-map {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107, 47, 217, 0.32), rgba(245, 194, 0, 0.12)), var(--bg2);
  color: var(--gold);
  font-size: 64px;
}

.visit-info {
  padding: 26px;
}

.visit-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.visit-info p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.visit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}



/* ── CONTACT ROW ── */

.contact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px
}

.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  transition: border-color 0.2s
}

.contact-item:hover {
  border-color: var(--border-p)
}

.contact-icon {
  font-size: 28px;
  margin-bottom: 10px
}

.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 5px
}

.contact-val {
  font-size: 14px;
  color: var(--text-sub)
}


/* ══════════════════════════════════════════
   RESPONSIVE — Page-Level Components
   Desktop styles above are UNTOUCHED.
   ══════════════════════════════════════════ */

/* ── Hamburger Button (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 201;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger → X animation when open */
.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── TABLET ≤ 1024px ── */
@media (max-width: 1024px) {

  /* ── NAV ── */
  nav {
    padding: 0 24px;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border-p);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    z-index: 199;
  }

  .nav-open .nav-links {
    max-height: 80vh;
    padding: 16px 0;
    overflow-y: auto;
  }

  .nav-links a,
  .nav-links .nav-link-btn {
    padding: 14px 24px;
    font-size: 15px;
    display: block;
    border-bottom: 1px solid var(--border);
  }

  .nav-links .has-dropdown>a {
    padding: 14px 24px;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    border-radius: 0;
    background: var(--bg3);
    padding: 0;
    min-width: unset;
    display: none;
  }

  .has-dropdown:hover .nav-dropdown,
  .has-dropdown.dropdown-open .nav-dropdown {
    display: block;
    transform: none;
  }

  .nav-dropdown a {
    padding: 12px 24px 12px 40px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-cta {
    margin: 12px 24px;
    justify-content: center;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 120px 36px 60px;
    min-height: 40vh;
  }

  .page-hero-h1 {
    font-size: clamp(36px, 5vw, 56px);
  }

  .page-hero-sub {
    font-size: 16px;
  }

  /* ── ABOUT ── */
  .about-grid {
    gap: 48px;
  }

  /* ── ACT DETAIL GRID ── */
  .act-detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* ── PACKAGE GRID ── */
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .age-package-grid {
    grid-template-columns: 1fr;
  }

  .age-package-yellow {
    display: flex;
    grid-column: auto;
  }

  .age-package-yellow .age-package-top {
    margin-bottom: 30px;
  }

  .age-package-yellow .age-package-sections {
    grid-template-columns: 1fr;
  }

  .school-offer {
    grid-template-columns: 1fr;
  }

  /* ── PARTY GRID ── */
  .party-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* ── TEAM GRID ── */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── SAFETY GRID ── */
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── CONTACT ROW ── */
  .contact-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-hero-card {
    right: 36px;
    bottom: 36px;
  }

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

  .contact-split {
    grid-template-columns: 1fr;
  }

  /* ── FOOTER GRID ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  footer {
    padding: 48px 36px 28px;
  }

  /* ── ABOUT STATS ROW (inline 6-col override) ── */
  .about-stats-row[style*="repeat(6"] {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* ── BUTTONS ── */
  .hero-btns {
    gap: 12px;
  }

  /* ── INFO GRID ── */
  .info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ── SECTION DIVIDER ── */
  .section-divider {
    margin: 0 36px;
  }

}


/* ── SMALL TABLET / LARGE PHONE ≤ 768px ── */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav {
    padding: 0 20px;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 100px 24px 48px;
    min-height: auto;
  }

  .page-hero-h1 {
    font-size: clamp(30px, 6vw, 44px);
    margin-bottom: 16px;
  }

  .page-hero-sub {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .page-hero-icon {
    font-size: 42px;
    margin-bottom: 16px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* ── ABOUT ── */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-card-main {
    aspect-ratio: 16/10;
  }

  .about-float {
    bottom: -12px;
    right: -8px;
    padding: 16px 18px;
  }

  .float-num {
    font-size: 32px;
  }

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

  .about-stats-row[style*="repeat(6"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── ACT GRID ── */
  .act-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── PACKAGE GRID ── */
  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pkg-num {
    font-size: 42px;
  }

  /* ── PARTY GRID ── */
  .party-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── TEAM GRID ── */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* ── FOOTER ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    padding: 40px 24px 24px;
  }

  .f-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ── HIGHLIGHT BOX ── */
  .highlight-box {
    padding: 24px 20px;
    margin-top: 28px;
  }

  .highlight-box-title {
    font-size: 16px;
  }

  /* ── PRICE TABLE ── */
  .price-table th,
  .price-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .price-table .price {
    font-size: 16px;
  }

  /* ── TIMELINE ── */
  .tl-item {
    gap: 18px;
    padding: 20px 0;
  }

  .tl-num {
    font-size: 36px;
    width: 48px;
  }

  .tl-title {
    font-size: 16px;
  }

  .tl-desc {
    font-size: 13px;
  }

  .school-offer-main,
  .school-package-card,
  .school-activity-card,
  .school-pool-card {
    padding: 22px;
  }

  .school-package-grid {
    grid-template-columns: 1fr;
  }

  .school-offer-price {
    font-size: 56px;
  }

  /* ── SECTION DIVIDER ── */
  .section-divider {
    margin: 0 24px;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    font-size: 13px;
    padding: 12px 24px;
  }

  .btn-ghost {
    font-size: 13px;
    padding: 12px 20px;
  }

}


/* ── PHONE ≤ 480px ── */
@media (max-width: 480px) {

  /* ── NAV ── */
  nav {
    padding: 0 16px;
    height: 64px;
  }

  .nav-links {
    top: 64px;
  }

  .nav-logo-text {
    font-size: 18px;
  }

  .nav-logo-badge {
    font-size: 7px;
    padding: 2px 6px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 8px 16px;
    margin: 10px 16px;
  }

  .nav-links a,
  .nav-links .nav-link-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .nav-dropdown a {
    padding: 10px 16px 10px 32px;
    font-size: 13px;
  }

  /* ── PAGE HERO ── */
  .page-hero {
    padding: 84px 16px 36px;
  }

  .page-hero-h1 {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .page-hero-sub {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  .page-hero-tag {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .page-hero-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .page-hero::before {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -60px;
  }

  .page-hero::after {
    width: 200px;
    height: 200px;
  }

  /* ── ABOUT ── */
  .about-card-main {
    aspect-ratio: 4/3;
    font-size: 56px;
  }

  .about-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 12px;
    display: inline-block;
  }

  .about-right p {
    font-size: 14px;
  }

  .feat-row {
    font-size: 13px;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ab-stat {
    padding: 14px 12px;
  }

  .ab-stat-num {
    font-size: 26px;
  }

  /* ── ACT GRID ── */
  .act-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .act-card {
    padding: 22px 18px;
  }

  .act-icon {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .act-title {
    font-size: 16px;
  }

  /* ── ACT DETAIL ── */
  .act-detail-img {
    height: 160px;
    font-size: 56px;
  }

  .act-detail-body {
    padding: 18px 18px 22px;
  }

  .act-detail-title {
    font-size: 18px;
  }

  .act-detail-desc {
    font-size: 13px;
  }

  /* ── PACKAGES ── */
  .pkg {
    padding: 22px 18px;
  }

  .pkg-num {
    font-size: 36px;
  }

  .pkg.featured::before {
    right: 16px;
  }

  .age-package-card {
    padding: 22px;
    border-radius: 22px;
  }

  .age-package-top {
    flex-direction: column;
  }

  .age-package-yellow .age-package-top {
    padding: 22px;
  }

  .age-package-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .age-package-icon {
    width: 52px;
    height: 52px;
  }

  .school-offer-main,
  .school-package-card,
  .school-activity-card,
  .school-pool-card {
    padding: 18px;
    border-radius: 18px;
  }

  .school-offer-price {
    font-size: 44px;
  }

  .school-activity-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .school-activity-list span {
    min-height: 34px;
    font-size: 12px;
  }

  .school-pool-card {
    align-items: flex-start;
  }

  /* ── PARTY CARDS ── */
  .party-img {
    height: 180px;
    font-size: 48px;
  }

  .party-body {
    padding: 18px 18px 22px;
  }

  /* ── TEAM GRID ── */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-avatar {
    height: 150px;
    font-size: 48px;
  }

  /* ── SAFETY GRID ── */
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* ── CONTACT ROW ── */
  .contact-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-hero {
    display: block;
  }

  .contact-hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 28px;
  }

  .contact-method-grid,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 150px;
    padding: 20px;
  }

  .visit-actions {
    grid-template-columns: 1fr;
  }

  .contact-item {
    padding: 16px 14px;
  }

  /* ── PRICE TABLE ── */
  .price-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .price-table th,
  .price-table td {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .price-table .price {
    font-size: 14px;
  }

  /* ── TIMELINE ── */
  .tl-item {
    gap: 14px;
    padding: 16px 0;
  }

  .tl-num {
    font-size: 28px;
    width: 36px;
  }

  .tl-title {
    font-size: 15px;
  }

  /* ── INFO BLOCKS ── */
  .info-block {
    padding: 20px 16px;
  }

  .info-block-title {
    font-size: 14px;
  }

  /* ── FOOTER ── */
  footer {
    padding: 32px 16px 20px;
  }

  .f-brand {
    font-size: 18px;
  }

  /* ── SECTION DIVIDER ── */
  .section-divider {
    margin: 0 16px;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    margin-bottom: 14px;
  }

  .breadcrumb span,
  .breadcrumb a {
    font-size: 11px;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    font-size: 13px;
    padding: 12px 20px;
    gap: 8px;
  }

  .btn-ghost {
    font-size: 13px;
    padding: 12px 18px;
  }

}
