:root {
  --sky-50: #eef9ff;
  --sky-300: #7ad8ff;
  --sky-500: #35c2ff;
  --sun-300: #ffe27a;
  --sun-500: #ffc83d;
  --orange-500: #ff8a47;
  --rose-500: #ff6e85;
  --mint-500: #4ecb89;
  --ink-900: #153046;
  --ink-700: #2f4d63;
  --ink-500: #4f6d82;
  --line: #cae6f5;
  --card: #ffffff;
  --shadow: 0 18px 42px rgba(24, 70, 101, 0.14);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: min(1140px, 92vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 16%, #dff5ff 0, #f4fcff 28%, #f8fdff 55%, #f6f9ff 100%),
    linear-gradient(150deg, #f6fdff 0%, #fffdf8 100%);
  line-height: 1.6;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bg-blobs::before,
.bg-blobs::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.bg-blobs::before {
  width: 38vw;
  height: 38vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle at 40% 30%, rgba(255, 212, 71, 0.32), rgba(255, 138, 71, 0.18) 60%, rgba(255, 138, 71, 0));
  top: -10vw;
  right: -8vw;
}

.bg-blobs::after {
  width: 42vw;
  height: 42vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle at 55% 45%, rgba(70, 199, 255, 0.26), rgba(70, 199, 255, 0.08) 64%, rgba(70, 199, 255, 0));
  bottom: -14vw;
  left: -10vw;
}

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

img,
video {
  width: 100%;
  display: block;
}

.section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 3.8rem 0;
  scroll-margin-top: 6.8rem;
}

.kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(125deg, rgba(255, 226, 122, 0.45), rgba(95, 204, 255, 0.35));
  color: var(--ink-700);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.9rem;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: var(--content-width);
  margin: 0 auto;
  margin-top: 1rem;
  padding: 0.78rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(196, 225, 240, 0.9);
  box-shadow: 0 14px 30px rgba(33, 74, 103, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.82rem;
  min-width: 0;
}

.brand img {
  width: 106px;
  height: 106px;
  border-radius: 18px;
  object-fit: contain;
  border: 3px solid rgba(52, 193, 255, 0.35);
  box-shadow: 0 8px 18px rgba(39, 112, 156, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-copy small {
  color: var(--ink-500);
  font-size: 0.79rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.desktop-nav a {
  padding: 0.46rem 0.72rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-700);
  transition: background 0.25s ease, color 0.25s ease;
}

.desktop-nav a:hover {
  background: rgba(73, 188, 255, 0.15);
  color: var(--ink-900);
}

.desktop-nav .nav-cta {
  background: linear-gradient(115deg, var(--sky-500), #5bceff);
  color: #003455;
  box-shadow: 0 8px 18px rgba(47, 183, 255, 0.32);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.48rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ink-700);
  border-radius: 999px;
  margin: 4px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

.mobile-nav {
  position: fixed;
  top: 5.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: var(--content-width);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(200, 231, 248, 0.92);
  box-shadow: 0 18px 34px rgba(22, 66, 97, 0.18);
  padding: 0.5rem;
  display: grid;
  gap: 0.3rem;
  z-index: 55;
  pointer-events: none;
  opacity: 0;
  transform-origin: top center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-nav a {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-weight: 700;
  color: var(--ink-700);
}

.mobile-nav a:hover {
  background: rgba(71, 188, 255, 0.13);
}

body.nav-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

main {
  padding-top: 1.6rem;
}

.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.location-hero {
  grid-template-columns: 1.08fr 0.92fr;
}

.location-hero .hero-copy {
  max-width: none;
}

.area-links {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0.8rem 0 1.2rem;
  text-align: center;
}

.area-links p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-600);
}

.area-links a {
  color: var(--ink-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.area-links a:hover {
  color: var(--ink-900);
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  margin-bottom: 1rem;
  color: var(--ink-900);
}

.hero-text {
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  color: var(--ink-700);
  max-width: 66ch;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.hero-points span {
  padding: 0.52rem 0.72rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d6edf9;
  color: var(--ink-700);
  font-weight: 700;
  font-size: 0.87rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.38rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 12px;
  padding: 0.76rem 1.02rem;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(122deg, var(--orange-500), var(--sun-500));
  color: #502802;
  box-shadow: 0 11px 24px rgba(255, 132, 61, 0.34);
}

.btn-light {
  background: #fff;
  color: var(--ink-700);
  border: 1px solid #c8e9f8;
}

.hero-media {
  position: relative;
}

.hero-media > img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  min-height: 330px;
  max-height: 560px;
  box-shadow: var(--shadow);
  border: 1px solid #dbedf8;
}

.hero-float-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(80%, 330px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(211, 235, 247, 0.94);
  box-shadow: 0 14px 28px rgba(26, 80, 115, 0.16);
}

.hero-float-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.hero-float-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.95rem;
}

.info-strip article {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #d7ecf8;
  padding: 1.15rem;
  box-shadow: 0 9px 18px rgba(34, 87, 120, 0.09);
}

.info-strip h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-strip p {
  margin: 0;
  color: var(--ink-700);
}

.about {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.35rem;
  align-items: stretch;
}

.about-visual img {
  height: 100%;
  min-height: 380px;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid #d6ecf7;
  box-shadow: var(--shadow);
}

.about-content {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d6ecf7;
  box-shadow: 0 12px 30px rgba(30, 78, 112, 0.1);
  border-radius: var(--radius-xl);
  padding: clamp(1.2rem, 2vw, 2rem);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.55rem);
}

.about-content p {
  color: var(--ink-700);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.58rem;
}

.check-list li {
  position: relative;
  padding: 0.54rem 0.6rem 0.54rem 2.1rem;
  border-radius: 10px;
  background: rgba(234, 249, 255, 0.85);
  border: 1px solid rgba(182, 224, 243, 0.85);
  color: var(--ink-700);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint-500), #7ae2ad);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(78, 203, 137, 0.2);
}

.section-head {
  max-width: 800px;
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.75rem);
}

.section-head p {
  color: var(--ink-700);
}

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

.highlight-card {
  border-radius: var(--radius-lg);
  border: 1px solid #d5ebf7;
  background: #fff;
  box-shadow: 0 12px 25px rgba(31, 83, 117, 0.11);
  overflow: hidden;
}

.highlight-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.highlight-card h3,
.highlight-card p {
  padding: 0 1rem;
}

.highlight-card h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.highlight-card p {
  margin-bottom: 1.1rem;
  color: var(--ink-700);
}

.programs {
  margin-top: 1.3rem;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 250, 255, 0.85));
  border: 1px solid #d6edf7;
}

.programs h3 {
  margin-bottom: 0.86rem;
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.56rem;
}

.program-tags span {
  font-weight: 700;
  color: var(--ink-700);
  border: 1px solid #cfe8f6;
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  background: #fff;
  font-size: 0.9rem;
}

.programs p {
  margin-top: 0.9rem;
  color: var(--ink-700);
}

/* Blog section */
.blog .section-head {
  margin-bottom: 1.3rem;
}

.blog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
}

.blog-card {
  border-radius: var(--radius-lg);
  border: 1px solid #d5ebf7;
  background: #fff;
  box-shadow: 0 12px 25px rgba(31, 83, 117, 0.11);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(31, 83, 117, 0.16);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-image {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.1rem 1.15rem;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--ink-900);
}

.blog-card-content p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-card-read {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 800;
  color: var(--sky-500);
  font-size: 0.9rem;
}

.blog-card:hover .blog-card-read {
  color: var(--ink-900);
}

/* Blog article page */
.blog-article {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.blog-article-header {
  margin-bottom: 1.5rem;
}

.blog-article-meta {
  margin-bottom: 0.8rem;
}

.blog-back {
  font-weight: 700;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.blog-back:hover {
  color: var(--ink-900);
}

.blog-article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.blog-article-subtitle {
  font-size: 1.1rem;
  color: var(--ink-700);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.blog-article-meta-text {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin: 0;
}

.blog-article-kicker {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(125deg, rgba(255, 226, 122, 0.45), rgba(95, 204, 255, 0.35));
  color: var(--ink-700);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-pack-list {
  display: grid;
  gap: 1rem;
  margin: 1.2rem 0;
}

.blog-pack-item {
  padding: 1rem;
  background: rgba(234, 249, 255, 0.6);
  border: 1px solid #d6edf7;
  border-radius: var(--radius-md);
}

.blog-pack-item strong {
  display: block;
  color: var(--ink-900);
  margin-bottom: 0.2rem;
}

.blog-pack-item > span {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-500);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-pack-item p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-checklist-intro {
  font-weight: 800;
  color: var(--ink-700);
  margin-bottom: 0.8rem !important;
}

.blog-checklist-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  margin: 1.2rem 0;
}

.blog-checklist-block {
  padding: 1rem;
  background: rgba(234, 249, 255, 0.7);
  border: 1px solid #d6edf7;
  border-radius: var(--radius-md);
}

.blog-checklist-block h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.blog-checklist-block ul {
  margin: 0;
  padding-left: 1.2rem;
}

.blog-checklist-block li {
  margin: 0.35rem 0;
}

.blog-checklist-block-full {
  grid-column: 1 / -1;
}

.blog-article-highlight {
  border-left: 4px solid var(--mint-500);
}

.blog-article-highlight h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.blog-featured-image {
  margin: 0 0 1.8rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #d6ecf7;
  box-shadow: var(--shadow);
}

.blog-featured-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.blog-article-body {
  max-width: 720px;
}

.blog-article-body h2 {
  font-size: 1.5rem;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}

.blog-article-body h3 {
  font-size: 1.2rem;
  margin-top: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-article-body ul {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  color: var(--ink-700);
}

.blog-article-body li {
  margin: 0.4rem 0;
}

.blog-article-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--sky-500);
  background: rgba(234, 249, 255, 0.9);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--ink-700);
}

.blog-article-callout {
  margin: 1.5rem 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(235, 250, 255, 0.9));
  border: 1px solid #d6edf7;
  border-radius: var(--radius-lg);
}

.blog-article-callout h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.blog-article-callout p {
  margin: 0;
}

.blog-article-warning {
  border-left: 4px solid var(--sun-500);
}

.blog-article-alert {
  border-left: 4px solid var(--rose-500);
}

.blog-age-table {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.blog-age-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 0.9rem;
  background: rgba(234, 249, 255, 0.6);
  border: 1px solid #d6edf7;
  border-radius: var(--radius-md);
}

.blog-age-row strong {
  color: var(--ink-900);
}

.blog-age-row span {
  color: var(--ink-700);
}

.blog-summary-table {
  display: grid;
  gap: 0;
  margin: 1.5rem 0;
  border: 1px solid #d6edf7;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.blog-summary-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #d6edf7;
  color: var(--ink-700);
}

.blog-summary-row:last-child {
  border-bottom: none;
}

.blog-summary-header {
  background: rgba(234, 249, 255, 0.9);
  font-weight: 800;
  color: var(--ink-900);
}

.blog-article-contacts {
  margin-top: 2rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(235, 250, 255, 0.85));
  border: 1px solid #d6edf7;
  border-radius: var(--radius-lg);
}

.blog-article-contacts h3 {
  margin-top: 0;
}

.blog-article-contacts ul {
  margin: 0;
  padding-left: 1.2rem;
}

.blog-article-cta {
  margin-top: 2rem;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 252, 255, 0.9));
  border: 1px solid #d6edf7;
  border-radius: var(--radius-lg);
}

.blog-article-cta p {
  margin-bottom: 0.9rem;
}

.fees .section-head {
  margin-bottom: 1.3rem;
}

.fee-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fee-card {
  background: #fff;
  border: 1px solid #d7ecf8;
  box-shadow: 0 12px 25px rgba(34, 87, 120, 0.11);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.fee-card h3 {
  margin-bottom: 0.55rem;
}

.fee-card ul {
  margin: 0;
  padding-left: 1.08rem;
  color: var(--ink-700);
}

.fee-card li {
  margin: 0.4rem 0;
}

.fee-note {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1rem;
  background: linear-gradient(145deg, #fff, #f5fbff);
  border: 1px solid #d7ecf8;
  box-shadow: 0 12px 26px rgba(34, 87, 120, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
}

.fee-note img {
  border-radius: 14px;
  border: 1px solid #d7ecf8;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.fee-note h3 {
  margin-top: 0.2rem;
}

.fee-note p {
  color: var(--ink-700);
}

.carousel {
  border-radius: var(--radius-xl);
  border: 1px solid #d7ecf8;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(240, 252, 255, 0.9));
  box-shadow: 0 16px 32px rgba(33, 86, 119, 0.12);
  padding: 1rem;
}

.carousel-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}

.carousel-topbar p {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-500);
  font-weight: 700;
}

.carousel-buttons {
  display: flex;
  gap: 0.45rem;
}

.carousel-btn {
  min-width: 64px;
  border: 1px solid #cbe7f5;
  border-radius: 10px;
  background: #fff;
  color: var(--ink-700);
  font-weight: 800;
  padding: 0.45rem 0.68rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
  background: #ebf8ff;
  border-color: #abdff5;
}

.media-track {
  display: grid;
  grid-auto-flow: column;
  gap: 0.82rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.65rem;
}

.image-track {
  grid-auto-columns: minmax(min(77vw, 360px), 1fr);
}

.video-track {
  grid-auto-columns: minmax(min(67vw, 280px), 1fr);
}

.media-track::-webkit-scrollbar {
  height: 10px;
}

.media-track::-webkit-scrollbar-thumb {
  background: #cae9f8;
  border-radius: 999px;
}

.media-slide {
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d5ebf8;
  background: #fff;
}

.media-slide img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.can-lightbox {
  cursor: zoom-in;
}

.media-slide video {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.media-slide figcaption {
  margin: 0;
  padding: 0.7rem 0.78rem;
  color: var(--ink-700);
  font-weight: 700;
  font-size: 0.9rem;
}

.carousel-dots {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.36rem;
  flex-wrap: wrap;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cce8f8;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  transform: scale(1.24);
  background: #4dc8ff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #d6ecf8;
  border-radius: 16px;
  padding: 1.05rem;
  box-shadow: 0 11px 24px rgba(33, 86, 119, 0.11);
}

.testimonial-card p {
  color: var(--ink-700);
  margin-bottom: 0.7rem;
}

.testimonial-card strong {
  color: var(--ink-900);
  font-family: "Fredoka", "Trebuchet MS", sans-serif;
}

.founder {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1rem;
  align-items: stretch;
}

.founder-photo img {
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid #d5ebf8;
  box-shadow: var(--shadow);
}

.founder-copy {
  border-radius: var(--radius-xl);
  border: 1px solid #d5ebf8;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 13px 27px rgba(33, 86, 119, 0.1);
  padding: clamp(1.2rem, 2vw, 1.9rem);
}

.founder-copy h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
}

.founder-copy p {
  color: var(--ink-700);
}

.founder-support {
  border-radius: 14px;
  max-width: 320px;
  border: 1px solid #d5ebf8;
}

.faq .section-head {
  margin-bottom: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 800px;
}

.faq-item {
  background: #fff;
  border: 1px solid #d6ecf8;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 10px 22px rgba(33, 86, 119, 0.08);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem 0;
  color: var(--ink-900);
}

.faq-item p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
  line-height: 1.55;
}

.enquire {
  border-radius: var(--radius-xl);
  border: 1px solid #d5ebf8;
  background: linear-gradient(162deg, rgba(255, 255, 255, 0.98), rgba(238, 251, 255, 0.92));
  box-shadow: 0 16px 33px rgba(31, 84, 118, 0.12);
  padding-top: clamp(1.25rem, 2.2vw, 2rem);
  padding-bottom: clamp(1.45rem, 2.5vw, 2.1rem);
  padding-left: clamp(0.95rem, 2.5vw, 2rem);
  padding-right: clamp(0.95rem, 2.5vw, 2rem);
  margin-top: 0.5rem;
}

.enquire-head {
  margin-bottom: 1.1rem;
}

.enquire-head h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}

.enquire-head p {
  color: var(--ink-700);
}

.enquire-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card,
.enquiry-form {
  background: #fff;
  border: 1px solid #d5ebf8;
  box-shadow: 0 12px 25px rgba(33, 86, 119, 0.11);
  border-radius: 16px;
  padding: 1.12rem 1.06rem;
  min-width: 0;
}

.contact-card h3 {
  margin-top: 0.15rem;
  margin-bottom: 0.45rem;
}

.contact-card a {
  display: block;
  margin: 0.38rem 0;
  line-height: 1.45;
  color: #0b5a85;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card p {
  color: var(--ink-700);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.enquiry-form h3 {
  margin-bottom: 0.7rem;
}

.enquiry-form label {
  font-weight: 800;
  color: var(--ink-700);
  display: block;
  margin-bottom: 0.3rem;
  margin-top: 0.58rem;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid #c9e7f7;
  border-radius: 10px;
  padding: 0.64rem 0.72rem;
  font: inherit;
  background: #fff;
  color: var(--ink-900);
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form .btn {
  margin-top: 0.82rem;
  width: 100%;
}

.form-note {
  margin-top: 0.62rem;
  min-height: 1.35em;
  color: #0b6c4a;
  font-weight: 800;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: max(1rem, env(safe-area-inset-top)) max(0.8rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
  background: rgba(6, 22, 36, 0.9);
  backdrop-filter: blur(4px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: max(0.8rem, env(safe-area-inset-top));
  right: max(0.8rem, env(safe-area-inset-right));
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 0.5rem 0.72rem;
  cursor: pointer;
}

.lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
  min-width: 68px;
  cursor: pointer;
}

.lightbox-figure {
  margin: 0;
  min-width: 0;
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.lightbox-figure img {
  max-width: min(96vw, 1200px);
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.lightbox-figure figcaption {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-align: center;
  max-width: min(92vw, 880px);
  padding: 0 0.6rem;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 2.6rem 0 6rem;
  color: var(--ink-500);
  font-weight: 700;
  text-align: center;
}

.footer-areas {
  margin-top: 0.6rem;
  font-size: 0.88rem;
}

.footer-areas a {
  color: var(--ink-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-areas a:hover {
  color: var(--ink-900);
}

.mobile-action-bar {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.8rem;
  width: min(760px, 92vw);
  z-index: 80;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.42rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #cde8f6;
  box-shadow: 0 12px 25px rgba(30, 80, 113, 0.2);
  backdrop-filter: blur(9px);
}

.mobile-action-bar a {
  text-align: center;
  font-weight: 800;
  color: #0d3f60;
  border-radius: 9px;
  padding: 0.63rem 0.4rem;
  background: linear-gradient(130deg, #ecf8ff, #f7fcff);
  border: 1px solid #d6edf8;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

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

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-media > img {
    max-height: 520px;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

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

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

  .fee-note {
    grid-template-columns: 1fr;
  }

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

  .enquire-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .enquire {
    padding: 1.05rem 0.9rem 1.35rem;
  }

  .contact-card,
  .enquiry-form {
    padding: 1rem 0.92rem;
  }

  .image-track {
    grid-auto-columns: 100%;
  }

  .video-track {
    grid-auto-columns: 100%;
  }

  main {
    padding-bottom: 5.2rem;
  }

  .mobile-action-bar {
    display: grid;
  }

  .site-footer {
    padding-bottom: 7rem;
  }

  .lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    justify-items: center;
    align-items: center;
    gap: 0.72rem;
  }

  .lightbox-nav {
    padding: 0.62rem 0.85rem;
  }

  .lightbox-prev,
  .lightbox-next {
    position: fixed;
    bottom: max(1.2rem, env(safe-area-inset-bottom));
  }

  .lightbox-prev {
    left: max(0.9rem, env(safe-area-inset-left));
  }

  .lightbox-next {
    right: max(0.9rem, env(safe-area-inset-right));
  }
}

@media (min-width: 981px) {
  .mobile-nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 0.62rem 0.74rem;
  }

  .brand img {
    width: 106px;
    height: 106px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-points span {
    font-size: 0.82rem;
  }

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

  .section {
    padding: 3.1rem 0;
  }

  .hero-float-card {
    width: calc(100% - 2rem);
  }

  .enquire {
    padding: 0.92rem 0.76rem 1.25rem;
    border-radius: 18px;
  }

  .contact-card,
  .enquiry-form {
    padding: 0.95rem 0.84rem;
    border-radius: 14px;
  }

  .contact-card a {
    font-size: 0.95rem;
  }

  .lightbox-close {
    padding: 0.45rem 0.65rem;
    font-size: 0.9rem;
  }

  .lightbox-figure img {
    max-height: 74vh;
  }

  .blog-age-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .blog-summary-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}
