:root {
  --navy: #0B2545;
  --navy-light: #13315C;
  --blue: #1B6B93;
  --aqua: #4FC0D0;
  --aqua-light: #A0E4ED;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --grey-100: #F5F5F3;
  --grey-200: #E8E8E4;
  --grey-400: #999;
  --grey-600: #666;
  --grey-800: #333;
  --text: #1a1a1a;
  --text-muted: #3f4650;
  --gold: #D4A853;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1120px;
  --section-py: clamp(60px, 8vw, 100px);
  --section-px: clamp(20px, 5vw, 40px);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(11,37,69,0.08);
  --shadow-lg: 0 12px 48px rgba(11,37,69,0.12);
}
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
    body {
      font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,37,69,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  height: 64px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}
.nav-logo {
  width: 146px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
}
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.94);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--aqua) !important;
  color: var(--navy) !important;
  padding: 8px 12px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--aqua-light) !important; transform: scale(1.03); }
.nav-cta-secondary {
  background: var(--white) !important;
}
.nav-cta-secondary:hover {
  background: var(--grey-100) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .nav-inner { justify-content: space-between; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(100px, 14vw, 160px) var(--section-px) clamp(60px, 10vw, 100px);
  overflow: hidden;
  text-align: center;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,37,69,0.82) 0%,
    rgba(11,37,69,0.70) 40%,
    rgba(11,37,69,0.85) 100%
  );
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 80vw; height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,192,208,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 2;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--aqua);
  font-size: 0.85em;
  margin-top: 4px;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 16px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--aqua);
  color: var(--navy);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(79,192,208,0.3); }
.btn-book {
  background: var(--white);
  color: var(--navy);
}
.btn-book:hover { box-shadow: 0 8px 24px rgba(255,255,255,0.25); }
.btn-outline-ring {
  border: 2px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(79,192,208,0.18);
}
.btn-outline-ring:hover {
  box-shadow: 0 0 0 4px rgba(79,192,208,0.28), 0 8px 24px rgba(11,37,69,0.14);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.3); }

.section {
  position: relative;
  padding: var(--section-py) var(--section-px);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero + .section,
.section + .section {
  border-top: 2px solid rgba(127,226,241,0.72);
  box-shadow: inset 0 10px 18px -18px rgba(127,226,241,0.9);
}
.section::before,
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section::before {
  opacity: 0.54;
  filter: saturate(1.45) brightness(0.84) contrast(1.16);
  background:
    url("images/bubble.png") left -18px top 12% / 72px 72px no-repeat,
    url("images/bubble.png") right -24px top 18% / 92px 92px no-repeat,
    url("images/bubble.png") left 20% top 18px / 46px 46px no-repeat,
    url("images/bubble.png") right 24% top 28px / 58px 58px no-repeat,
    url("images/bubble.png") left -14px bottom 18% / 58px 58px no-repeat,
    url("images/bubble.png") right -16px bottom 20% / 64px 64px no-repeat;
}
.section::after {
  opacity: 0.48;
  filter: saturate(1.45) brightness(0.84) contrast(1.16);
  background:
    url("images/bubble.png") left 8% top 30% / 46px 46px no-repeat,
    url("images/bubble.png") right 8% top 52% / 52px 52px no-repeat,
    url("images/bubble.png") left 26% bottom 24px / 42px 42px no-repeat,
    url("images/bubble.png") right 30% bottom 18px / 50px 50px no-repeat,
    url("images/bubble.png") right 12% bottom 8% / 40px 40px no-repeat;
}
.section-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.6;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark::before {
  opacity: 0.56;
  filter: none;
  background:
    url("images/bubble.png") left -18px top 12% / 72px 72px no-repeat,
    url("images/bubble.png") right -24px top 18% / 92px 92px no-repeat,
    url("images/bubble.png") left 20% top 18px / 46px 46px no-repeat,
    url("images/bubble.png") right 24% top 28px / 58px 58px no-repeat,
    url("images/bubble.png") left -14px bottom 18% / 58px 58px no-repeat,
    url("images/bubble.png") right -16px bottom 20% / 64px 64px no-repeat;
}
.section--dark::after {
  opacity: 0.48;
  filter: none;
  background:
    url("images/bubble.png") left 8% top 30% / 46px 46px no-repeat,
    url("images/bubble.png") right 8% top 52% / 52px 52px no-repeat,
    url("images/bubble.png") left 26% bottom 24px / 42px 42px no-repeat,
    url("images/bubble.png") right 30% bottom 18px / 50px 50px no-repeat,
    url("images/bubble.png") right 12% bottom 8% / 40px 40px no-repeat;
}
.section--dark .section-label { color: var(--aqua); }
.section--dark .section-title { color: var(--white); }
.section--dark .section-sub {
  color: rgba(255,255,255,0.94);
  font-weight: 600;
}
#pricing {
  align-items: flex-start;
  padding-top: clamp(48px, 5vw, 72px);
}
#pricing::before,
#pricing::after {
  opacity: 0.62;
}
#group-lessons::before,
#group-lessons::after,
#pricing::before,
#pricing::after {
  display: none;
}
#pricing .section-header {
  margin-bottom: clamp(22px, 3vw, 34px);
}

#about {
  align-items: flex-start;
  padding-top: clamp(44px, 6vw, 72px);
}
#about .section-header {
  margin-bottom: clamp(24px, 4vw, 36px);
}
.coach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.coach-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.coach-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.coach-copy {
  padding: 18px 20px 20px;
}
.coach-copy h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.coach-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}
.instagram-icon {
  flex-shrink: 0;
  border-radius: 5px;
}
.coach-social:hover {
  color: var(--navy);
}
.coach-copy p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.why-choose {
  margin-top: clamp(32px, 5vw, 48px);
}
.why-choose > h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(27,107,147,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.feature-card h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.lesson-quick-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 860px;
  margin: -8px auto 20px;
  padding: 12px 16px;
  border: 1px solid rgba(79,192,208,0.22);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-muted);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.lesson-quick-note p {
  flex: 1 1 0;
  margin: 0;
  padding: 0 14px;
}
.lesson-quick-note p + p {
  border-left: 1px solid rgba(11,37,69,0.32);
}
.lesson-quick-note strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  font-weight: 900;
  line-height: 1.25;
}
.lesson-quick-note span {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.lesson-quick-note a {
  flex-shrink: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s;
}
.lesson-quick-note a:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}
.booking-modal-card a:not(.btn),
.form-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.price-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(79,192,208,0.16);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow:
    inset 6px 0 0 rgba(127,226,241,0.88),
    inset -6px 0 0 rgba(79,192,208,0.72),
    var(--shadow);
  transition: transform 0.3s, border-color 0.3s;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--aqua-light), var(--aqua));
}
.price-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-light));
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79,192,208,0.38);
}
.price-card h3 {
  font-family: var(--ff-body);
  font-size: clamp(1.14rem, 2.4vw, 1.32rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin: 6px auto 12px;
  padding-bottom: 10px;
  width: fit-content;
  border-bottom: 2px solid rgba(127,226,241,0.72);
}
.price-card .price-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--aqua);
}
.price-amount span {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
}
.price-pay-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
  border: 2px solid var(--navy);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 3px 0 rgba(11,37,69,0.12);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.price-pay-btn:hover {
  transform: translateY(-2px);
  background: var(--aqua);
  border-color: var(--navy);
}
.price-booking-options {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.price-payment-option {
  padding: 12px;
  border: 1px solid rgba(79,192,208,0.32);
  border-radius: var(--radius-sm);
  background: #edf7f9;
}
.price-booking-options .price-pay-btn {
  margin-top: 0;
}
.price-payment-option > span {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.4;
}
.price-pay-btn > span {
  display: block;
  text-align: center;
}
.price-pay-btn--package {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 76px;
  padding: 12px 16px 10px;
}
.price-pay-btn--package > span {
  align-self: center;
}
.price-pay-btn small {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.price-pay-btn--package small {
  margin-top: 0;
}
.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 8px;
}
.group-section-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.group-section-grid--single {
  display: block;
  max-width: 780px;
}
.group-info-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(79,192,208,0.16);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 38px);
  text-align: center;
  box-shadow:
    inset 6px 0 0 rgba(127,226,241,0.88),
    inset -6px 0 0 rgba(79,192,208,0.72),
    var(--shadow);
}
.group-info-card::before,
.group-info-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--aqua-light), var(--aqua));
}
.group-info-card::before {
  top: 0;
}
.group-info-card::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--aqua), var(--aqua-light));
}
.group-info-card h2,
.group-info-card h3 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.new-venue-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 6px 12px;
  border: 1px solid rgba(27,107,147,0.32);
  border-radius: 999px;
  background: rgba(79,192,208,0.18);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.new-venue-badge--light {
  border-color: rgba(27,107,147,0.26);
  background: rgba(127,226,241,0.22);
  color: var(--navy);
}
.new-venue-badge--spacer {
  visibility: hidden;
}
.group-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(79,192,208,0.2);
  border-radius: 999px;
  background: rgba(79,192,208,0.1);
}
.group-price span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.group-price strong {
  color: var(--navy);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.2;
}
.group-info-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 18px 0;
}
.group-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.group-list li + li {
  margin-top: 10px;
}
.group-term-note {
  display: grid;
  gap: 10px;
  max-width: 580px;
  margin: 14px auto 18px;
}
.group-term-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(79,192,208,0.18);
  border-radius: var(--radius-sm);
  background: rgba(79,192,208,0.07);
  color: var(--navy);
  text-align: left;
}
.group-term-row strong {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}
.group-term-row span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}
.group-term-row b {
  color: var(--blue);
  font-weight: 900;
}
.group-term-row small {
  grid-column: 2;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.group-booking-note {
  display: inline-block;
  max-width: 620px;
  padding: 14px 18px;
  border: 1px solid rgba(79,192,208,0.24);
  border-radius: var(--radius-sm);
  background: rgba(79,192,208,0.1);
  color: var(--navy) !important;
  font-size: clamp(1rem, 2.4vw, 1.16rem) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}
.group-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}
.private-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.timetable-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: -20px auto 22px;
  line-height: 1.55;
}
.timetable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.timetable-day {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.time-day-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 4px;
}
.time-day-location {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.timetable-day > .new-venue-badge {
  margin-bottom: 8px;
}
.time-card {
  background: var(--white);
  border-radius: var(--radius);
  display: block;
  flex: 1;
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
}
.time-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.time-card-icon {
  color: var(--blue);
  margin-bottom: 8px;
}
.time-card-time {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  color: var(--navy);
}
.time-card-note {
  max-width: 300px;
  margin: 10px auto 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
}
.time-card-list {
  list-style: disc;
  max-width: 300px;
  margin: 12px auto 0;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: left;
}
.time-card-list li + li {
  margin-top: 5px;
}
.timetable-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.faq-q:hover { background: var(--grey-100); }
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#register {
  min-height: auto;
  align-items: flex-start;
  padding-top: clamp(44px, 6vw, 72px);
}
#register .section-header {
  margin-bottom: clamp(16px, 3vw, 26px);
}
.register-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  justify-content: center;
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .register-grid { grid-template-columns: 1fr; }
}
.register-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.register-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.register-direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-social-follow {
  flex-basis: 100%;
  text-align: center;
  margin-top: 2px;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 18px;
  border: 1px solid rgba(14, 150, 214, 0.45);
  border-radius: 999px;
  background: rgba(14, 150, 214, 0.08);
  color: #073763;
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.contact-social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(14, 150, 214, 0.8);
  background: rgba(14, 150, 214, 0.14);
}
.contact-social-follow p {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--grey-100);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,107,147,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-light); }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-400);
  margin-top: 12px;
}

.venue-section {
  background: var(--white);
}
.venue-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}
.venue-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.venue-card > img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.02) saturate(1.04);
}
.venue-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
.venue-card-copy span,
.venue-detail-label {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.venue-card-copy .new-venue-badge {
  display: inline-flex;
  margin: 0 0 10px;
}
.venue-card-copy h3 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.15;
  margin-bottom: 10px;
}
.venue-card-copy p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}
.venue-card-copy p + p {
  margin-top: 8px;
}
.venue-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 18px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.2s, background 0.2s;
}
.venue-detail-link:hover {
  transform: translateY(-2px);
  background: var(--navy-light);
}
.venue-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.venue-panel {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.venue-panel-head {
  margin-bottom: 14px;
}
.venue-panel-head span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.venue-panel-head h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--navy);
}
.venue-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--white);
}
.venue-track {
  display: grid;
}
.venue-slide {
  display: none;
  grid-area: 1 / 1;
  margin: 0;
}
.venue-slide.is-active {
  display: block;
}
.venue-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 340px;
  object-fit: cover;
  filter: brightness(1.26) contrast(1.03) saturate(1.06);
}
.venue-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(11,37,69,0.14);
  background: rgba(255,255,255,0.96);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.venue-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,0.34);
}
.venue-arrow-prev {
  left: 14px;
}
.venue-arrow-next {
  right: 14px;
}
.venue-parking-panel {
  display: flex;
  flex-direction: column;
}
.parking-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 285px;
  padding: 30px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy);
}
.pool-specs,
.parking-photo-card figcaption {
  color: var(--text);
  line-height: 1.6;
  font-size: 0.9rem;
}
.pool-specs {
  margin-top: 14px;
  margin-bottom: 0;
}
.venue-panel-specs {
  margin-top: 14px;
}
.parking-photo-card {
  margin: 0 0 18px;
}
.parking-photo-card img {
  width: 100%;
  max-height: 245px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  border-radius: var(--radius-sm);
}
.parking-photo-card figcaption {
  margin-top: 10px;
  margin-bottom: 18px;
}
.parking-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 24px 28px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.location-details {
  display: grid;
  gap: 16px;
  width: 100%;
}
.location-address-card {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.location-address-card svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--blue);
  margin-top: 4px;
}
.location-address-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.location-address-card .location-extra {
  margin-top: 22px;
}
.location-address-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.location-address-card p {
  color: var(--text);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
}
.location-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.location-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
}
.location-item svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.location-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.location-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-info-list { grid-template-columns: 1fr; }
  .location-address-card {
    flex-direction: column;
    padding: 20px;
  }
  .map-frame { justify-self: center; max-width: 420px; }
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1/1;
  max-width: 360px;
  width: 100%;
  justify-self: end;
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0;
}

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 40px var(--section-px) 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand span { color: var(--aqua); }
.footer-tagline {
  font-size: 0.82rem;
  margin-top: 4px;
  color: rgba(255,255,255,0.78);
}
.footer-website {
  font-size: 0.8rem;
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 0.2s, transform 0.2s;
}
.footer-social:hover {
  color: var(--aqua-light);
  transform: translateY(-1px);
}
.instagram-mark {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 105%, #fdf497 0 18%, #fd5949 40%, #d6249f 62%, #285AEB 100%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.16);
}
.instagram-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid var(--white);
  border-radius: 4px;
}
.instagram-mark::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 4px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: -4px 4px 0 1px transparent;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  text-align: center;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.wa-float-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 90;
}
.wa-bubble {
  background: var(--white);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 12px 12px 0 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 220px;
  line-height: 1.4;
  animation: bubbleFadeIn 0.5s ease 1.5s both;
  pointer-events: none;
}
@keyframes bubbleFadeIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.wa-float {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.rv.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .coach-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .group-section-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .venue-showcase { grid-template-columns: 1fr; }
  .parking-info { min-height: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .register-grid { grid-template-columns: 1fr; gap: 32px; }
  .timetable-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 34px;
  }
}

@media (max-width: 600px) {
  :root {
    --section-py: clamp(48px, 10vw, 80px);
    --section-px: 20px;
  }
  .hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; padding: 14px 24px; }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 1.8rem); }
  .section-sub { font-size: 0.9rem; }
  .coach-copy { padding: 20px; }
  .feature-card { padding: 22px 20px; }
  .price-card { padding: 24px 20px; }
  .price-amount { font-size: 2rem; }
  .group-price {
    flex-direction: column;
    gap: 4px;
    border-radius: var(--radius-sm);
  }
  .group-term-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .group-term-row small {
    grid-column: auto;
  }
  .lesson-quick-note {
    flex-direction: column;
    gap: 10px;
    max-width: 340px;
    margin-bottom: 18px;
  }
  .lesson-quick-note p {
    width: 100%;
    padding: 0;
  }
  .lesson-quick-note p + p {
    border-left: 0;
  }
  .timetable-grid { gap: 36px; }
  .timetable-day { width: 100%; }
  .time-day-heading { margin-bottom: 6px; }
  .time-day-location { margin-bottom: 14px; }
  .time-card {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .faq-q { padding: 16px 18px; font-size: 0.88rem; }
  .faq-a-inner { padding: 0 18px 16px; font-size: 0.85rem; }
  .form-card { padding: 24px 20px; }
  .register-wa { width: 100%; max-width: 300px; justify-content: center; }
  .venue-panel { padding: 14px; }
  .venue-slide img { max-height: 285px; }
  .venue-arrow { width: 34px; height: 34px; }
  .parking-info { padding: 20px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .map-frame { aspect-ratio: 1/1; }
  .nav-brand { min-width: 96px; }
  .nav-logo { width: 118px; max-height: 44px; }
  .wa-float-wrap {
    bottom: 12px;
    right: 12px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 4px;
  }
  .wa-float {
    width: 50px;
    height: 50px;
  }
  .wa-bubble {
    max-width: none;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(11,37,69,0.92);
    color: var(--white);
    font-size: 0;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.16);
    animation: none;
  }
  .wa-bubble::after {
    content: "WhatsApp us!";
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  :root { --section-px: 16px; }
  .hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.3rem; }
  .price-amount { font-size: 1.75rem; }
}

.hero-logo {
  max-width: 360px;
  margin: 0 auto 20px;
}
.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  margin: 10px auto 28px;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}
.hero-highlights li {
  display: inline-flex;
  align-items: center;
}
.hero-highlights li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.thanks-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--section-px);
  background:
    linear-gradient(180deg, rgba(11,37,69,0.82), rgba(11,37,69,0.88)),
    url("images/swimpool.jpg") center / cover;
}
.thanks-shell {
  width: min(100%, 620px);
  padding: clamp(32px, 6vw, 56px);
  border-radius: var(--radius);
  background: rgba(250,250,247,0.96);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.thanks-logo {
  max-width: 220px;
  margin: 0 auto 24px;
  border-radius: var(--radius-sm);
}
.thanks-shell .section-sub {
  margin-bottom: 28px;
}

.terms-page {
  position: relative;
  min-height: 100vh;
  padding: clamp(28px, 6vw, 64px) var(--section-px);
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}
.terms-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background:
    url("images/bubble.png") left -18px top 10% / 70px 70px no-repeat,
    url("images/bubble.png") right -22px top 14% / 86px 86px no-repeat,
    url("images/bubble.png") left 20% top 18px / 44px 44px no-repeat,
    url("images/bubble.png") right 24% top 28px / 56px 56px no-repeat,
    url("images/bubble.png") left -12px bottom 18% / 54px 54px no-repeat,
    url("images/bubble.png") right -16px bottom 18% / 64px 64px no-repeat,
    url("images/bubble.png") left 7% top 38% / 42px 42px no-repeat,
    url("images/bubble.png") right 7% top 58% / 50px 50px no-repeat,
    url("images/bubble.png") left 26% bottom 20px / 40px 40px no-repeat,
    url("images/bubble.png") right 30% bottom 18px / 48px 48px no-repeat,
    url("images/bubble.png") right 14% bottom 6% / 38px 38px no-repeat;
}
.terms-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.terms-shell .section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.terms-logo-link {
  display: block;
}
.terms-updated {
  margin: 8px 0 24px;
  color: var(--text-muted);
  text-align: center;
  font-size: 0.82rem;
}
.terms-block {
  padding: 18px 0;
  border-top: 1px solid var(--grey-200);
}
.terms-block h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 10px;
}
.terms-block p,
.terms-block li {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.terms-block ul {
  list-style: disc;
  padding-left: 20px;
}
.terms-block li + li {
  margin-top: 7px;
}
.terms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.enrolment-shell {
  width: min(100%, 920px);
}
.enrolment-intro {
  max-width: 620px;
  margin: 8px auto 28px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 700;
}
.enrolment-print-note {
  max-width: 620px;
  margin: -16px auto 30px;
  padding: 12px 14px;
  border: 1px solid rgba(79,192,208,0.45);
  border-radius: var(--radius-sm);
  background: #edf7f9;
  color: var(--navy);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
}
.enrolment-block {
  padding: 22px 0;
  border-top: 1px solid var(--grey-200);
}
.enrolment-block h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  margin-bottom: 14px;
}
.enrolment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.enrolment-wide {
  grid-column: 1 / -1;
}
.enrolment-form label,
.enrolment-form legend {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}
.enrolment-form label span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}
.enrolment-form input,
.enrolment-form select,
.enrolment-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 12px 13px;
  background: var(--grey-100);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.enrolment-form input:focus,
.enrolment-form select:focus,
.enrolment-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(79,192,208,0.22);
  background: var(--white);
}
.enrolment-form input[readonly] {
  color: var(--text-muted);
  background: #edf7f9;
}
.enrolment-form fieldset {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 13px;
}
.enrolment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 9px;
}
.enrolment-options--stacked {
  flex-direction: column;
  gap: 8px;
}
.enrolment-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 800;
}
.enrolment-options input {
  width: auto;
  margin: 0;
}
.enrolment-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-left: 4px solid var(--aqua);
  border-radius: var(--radius-sm);
  background: #edf7f9;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}
.enrolment-consent input {
  width: auto;
  flex: 0 0 auto;
  margin-top: 4px;
}
.enrolment-consent span {
  display: block;
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 720px) {
  .enrolment-grid {
    grid-template-columns: 1fr;
  }
  .enrolment-actions {
    flex-direction: column-reverse;
  }
  .enrolment-actions .btn {
    width: 100%;
  }
}

.service-page {
  background: var(--cream);
  color: var(--text);
}
.service-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 120px var(--section-px) 70px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.58;
  background:
    url("images/bubble.png") left -18px top 14% / 70px 70px no-repeat,
    url("images/bubble.png") right -22px top 18% / 88px 88px no-repeat,
    url("images/bubble.png") left 20% top 18px / 44px 44px no-repeat,
    url("images/bubble.png") right 24% top 28px / 56px 56px no-repeat,
    url("images/bubble.png") left -12px bottom 16% / 56px 56px no-repeat,
    url("images/bubble.png") right -16px bottom 18% / 62px 62px no-repeat,
    url("images/bubble.png") left 8% top 44% / 44px 44px no-repeat,
    url("images/bubble.png") right 8% top 56% / 50px 50px no-repeat,
    url("images/bubble.png") left 26% bottom 20px / 40px 40px no-repeat,
    url("images/bubble.png") right 30% bottom 18px / 48px 48px no-repeat,
    url("images/bubble.png") right 14% bottom 8% / 38px 38px no-repeat;
}
.service-hero-bg {
  position: absolute;
  inset: 0;
}
.service-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,37,69,0.76), rgba(11,37,69,0.9));
}
.service-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.service-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}
.service-hero p:not(.section-label) {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,0.94);
  font-weight: 600;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.7;
}
.service-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.venue-bottom-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.service-scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.24);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.service-scroll-cue:hover {
  transform: translateY(2px);
  border-color: var(--white);
  background: rgba(255,255,255,0.2);
}
.service-scroll-cue span {
  font-size: 1.35rem;
  line-height: 1;
}
.service-section {
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
}
.service-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.service-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.service-rate {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
}
.service-rate span {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}
.service-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
}
.service-list li + li {
  margin-top: 10px;
}
.service-note {
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.service-wa {
  justify-content: center;
  width: 100%;
}
.service-book-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.venue-detail-page .service-hero {
  min-height: 66vh;
}
.venue-detail-page .service-hero-bg::after {
  background: linear-gradient(180deg, rgba(11,37,69,0.58), rgba(11,37,69,0.9));
}
.venue-detail-section {
  position: relative;
  background: var(--grey-100);
  padding-bottom: clamp(36px, 6vw, 58px);
}
.venue-detail-section::before,
.venue-detail-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.venue-detail-section::before {
  opacity: 0.5;
  filter: saturate(1.45) brightness(0.84) contrast(1.16);
  background:
    url("images/bubble.png") left -18px top 12% / 72px 72px no-repeat,
    url("images/bubble.png") right -22px top 18% / 86px 86px no-repeat,
    url("images/bubble.png") left -12px bottom 18% / 56px 56px no-repeat,
    url("images/bubble.png") right -16px bottom 20% / 64px 64px no-repeat;
}
.venue-detail-section::after {
  opacity: 0.44;
  filter: saturate(1.45) brightness(0.84) contrast(1.16);
  background:
    url("images/bubble.png") left 7% top 46% / 42px 42px no-repeat,
    url("images/bubble.png") right 7% top 54% / 48px 48px no-repeat;
}
.venue-detail-section .section-inner {
  position: relative;
  z-index: 1;
}
.venue-media-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.venue-media-layout .venue-panel {
  height: 100%;
}
.venue-media-layout .venue-panel-head h2 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--navy);
}
.venue-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto 28px;
}
.venue-detail-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.venue-detail-card h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.15;
  margin-bottom: 12px;
}
.venue-detail-card p {
  color: var(--text-muted);
  line-height: 1.7;
}
.venue-detail-card p + p {
  margin-top: 12px;
}
.venue-spec-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
}
.venue-spec-list li + li {
  margin-top: 8px;
}
.venue-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
.venue-detail-gallery figure {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow);
}
.venue-detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.02) saturate(1.04);
}
.venue-detail-gallery figure:has(figcaption) img {
  height: auto;
}
.venue-detail-gallery figcaption {
  padding: 16px 18px 18px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.venue-detail-gallery figcaption h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.venue-photo-specs {
  margin-top: 0;
}
.venue-detail-feature {
  grid-column: span 2;
}
.venue-detail-gallery.single-photo {
  display: block;
}
.venue-detail-gallery.single-photo figure {
  max-width: 820px;
  margin: 0 auto;
}
.venue-detail-gallery.single-photo img {
  aspect-ratio: 16 / 9;
}
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .venue-card-grid,
  .venue-detail-grid,
  .venue-media-layout {
    grid-template-columns: 1fr;
  }
  .venue-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .venue-detail-feature {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .service-hero {
    min-height: auto;
    padding-top: 110px;
  }
  .venue-detail-page .service-hero {
    padding-bottom: 26px;
  }
  .service-hero-actions .btn,
  .venue-bottom-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .service-info-card {
    padding: 24px 20px;
  }
  .venue-card-copy,
  .venue-detail-card {
    padding: 22px 18px;
  }
  .venue-detail-gallery {
    grid-template-columns: 1fr;
  }
  .venue-detail-feature {
    grid-column: auto;
  }
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(11,37,69,0.72);
}
.booking-modal.open {
  display: grid;
}
.booking-modal-card {
  position: relative;
  width: min(100%, 480px);
  padding: 36px 30px 32px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.booking-modal-card h2 {
  font-family: var(--ff-display);
  color: var(--navy);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 12px;
}
.booking-modal-card p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.booking-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  color: var(--navy);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  padding: 4px;
  box-shadow: none;
  outline: none;
}
.booking-modal-close:hover,
.booking-modal-close:focus {
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}
.booking-modal-btn {
  display: inline-flex;
}
.payment-confirm-card {
  border: 2px solid #E5484D;
}
.payment-confirm-card h2 {
  color: var(--navy);
}
.payment-confirm-list {
  margin: 0 0 24px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.65;
}
.payment-confirm-list li + li {
  margin-top: 8px;
}
.confirm-pay-btn {
  width: 100%;
  justify-content: center;
}
