@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Nunito:wght@800;900;1000&display=swap");

:root {
  font-synthesis: none;
  --ink: #102f38;
  --muted: #63777d;
  --brand: #0f8094;
  --brand-dark: #0b596a;
  --gold: #eba63e;
  --amber: #f6c86c;
  --coral: #ef755f;
  --mint: #85c7b6;
  --paper: #fffdf8;
  --white: #ffffff;
  --line: rgba(16, 47, 56, 0.12);
  --shadow: 0 28px 90px rgba(16, 47, 56, 0.14);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(255, 253, 248, 0.92)),
    url("assets/afterschool-stationery.webp") top 760px center / min(1420px, 100%) auto no-repeat,
    var(--paper);
}

img,
svg,
iframe {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Nunito, Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
}

p {
  margin: 0;
  line-height: 1.72;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: var(--brand);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 118px 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 108px;
  max-height: 54px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.lang-link,
.nav-cta {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active,
.lang-link:hover {
  color: var(--brand-dark);
  background: rgba(15, 128, 148, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta,
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 16px 34px rgba(15, 128, 148, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.page-shell {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 86px max(16px, calc((100vw - 1180px) / 2)) 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.55fr);
  gap: 34px;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 38, 46, 0.88), rgba(9, 38, 46, 0.58) 48%, rgba(9, 38, 46, 0.16)),
    linear-gradient(0deg, rgba(9, 38, 46, 0.72), rgba(9, 38, 46, 0.08) 55%),
    url("assets/luem-children-entering.webp") center / cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, var(--paper), transparent);
  z-index: -1;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-top: 18px;
  color: white;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
}

.hero-copy {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 1000;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.light {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.button.soft {
  color: var(--brand-dark);
  background: white;
  box-shadow: 0 14px 36px rgba(16, 47, 56, 0.1);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 42px;
}

.trust-row div,
.journey-card,
.stat-card,
.panel,
.program-card,
.timeline-card,
.faq details,
.contact-card,
.review-badge {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 54px rgba(16, 47, 56, 0.08);
}

.hero .trust-row div {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.trust-row strong {
  display: block;
  color: white;
  font-family: Nunito, Inter, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.trust-row span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.journey-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 238, 0.92)),
    url("assets/learning-desk.webp") right bottom / 118% auto no-repeat;
  backdrop-filter: blur(18px);
}

.journey-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.58));
  pointer-events: none;
}

.journey-card > * {
  position: relative;
}

.journey-card h2 {
  margin-top: 10px;
  font-size: 2rem;
}

.routine-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.routine-tabs button {
  min-height: 46px;
  border: 1px solid rgba(16, 47, 56, 0.14);
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 1000;
}

.routine-tabs button:hover,
.routine-tabs button.active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 28px rgba(15, 128, 148, 0.22);
}

.routine-output {
  min-height: 170px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 47, 56, 0.12);
}

.routine-output h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.routine-output p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
}

.routine-meter {
  margin-top: 8px;
  color: var(--brand-dark);
  font-weight: 1000;
}

.routine-meter span {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(15, 128, 148, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(15, 128, 148, 0.08);
}

.mini-cta {
  min-height: 44px;
  margin-top: 16px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: white;
  background: var(--gold);
  font-weight: 1000;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0;
}

.page-hero {
  width: 100%;
  padding: 84px max(16px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(90deg, rgba(9, 38, 46, 0.88), rgba(9, 38, 46, 0.42)),
    url("assets/luem-children-entering.webp") center / cover;
}

.page-hero h1 {
  max-width: 840px;
  margin-top: 16px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  color: white;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(2.2rem, 4.7vw, 4.15rem);
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid-3,
.grid-2,
.stats-grid,
.calendar-grid {
  display: grid;
  gap: 16px;
}

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

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

.program-card,
.panel,
.stat-card,
.timeline-card,
.contact-card,
.review-badge {
  padding: 26px;
}

.schools-board {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

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

.school-chip {
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  font-weight: 1000;
  text-align: left;
}

.school-chip:hover,
.school-chip.active {
  color: white;
  border-color: var(--brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.school-focus {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #fff7e6);
  box-shadow: var(--shadow);
}

.school-focus h3 {
  font-size: clamp(1.9rem, 4vw, 3.3rem);
}

.school-focus p {
  margin-top: 14px;
  color: var(--muted);
}

.program-card h3,
.panel h3,
.timeline-card h3,
.stat-card h3 {
  margin-top: 12px;
  font-size: 1.55rem;
}

.program-card p,
.panel p,
.timeline-card p,
.stat-card p,
.contact-card p {
  margin-top: 12px;
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  font-weight: 1000;
}

.feature-band {
  width: 100%;
  padding: 86px max(16px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(135deg, rgba(11, 89, 106, 0.96), rgba(15, 128, 148, 0.9)),
    url("assets/afterschool-stationery.webp") center / cover;
}

.feature-band .section-head h2,
.feature-band .section-head p {
  color: white;
}

.finder {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 20px;
}

.finder form,
.lead-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 1000;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  outline: none;
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(15, 128, 148, 0.12);
}

.result-box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.result-box h3 {
  color: white;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.result-box p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.story-band {
  width: 100%;
  min-height: 560px;
  padding: 92px max(16px, calc((100vw - 1180px) / 2));
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.8) 48%, rgba(255, 253, 248, 0.18)),
    url("assets/learning-desk.webp") center / cover;
}

.story-copy {
  max-width: 690px;
}

.story-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.story-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.story-stats span {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(16, 47, 56, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 1000;
}

.activity-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.activity-cloud span {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(16, 47, 56, 0.12);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  background: white;
  box-shadow: 0 12px 28px rgba(16, 47, 56, 0.07);
  font-weight: 1000;
}

.activity-cloud.light span {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

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

.schedule-column {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fff8ea);
  box-shadow: var(--shadow);
}

.schedule-column h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.schedule-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(16, 47, 56, 0.1);
}

.schedule-row:first-of-type {
  margin-top: 18px;
}

.schedule-row span {
  color: var(--brand-dark);
  font-weight: 1000;
}

.schedule-row strong {
  color: var(--ink);
  line-height: 1.4;
}

.review-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, #fff, #fff7e6);
}

.stars {
  color: var(--gold);
  font-size: 1.55rem;
  letter-spacing: 0.08em;
}

.review-badge strong {
  display: block;
  margin-top: 6px;
  font-family: Nunito, Inter, sans-serif;
  font-size: 2rem;
}

.review-badge span {
  color: var(--muted);
  font-weight: 900;
}

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

.date-card {
  padding: 24px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 54px rgba(16, 47, 56, 0.08);
}

.date-card .month {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.date-card .date {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-family: Nunito, Inter, sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 1000;
}

.date-card h3 {
  margin-top: 16px;
  font-size: 1.35rem;
}

.date-card p {
  margin-top: 10px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-section {
  width: min(940px, calc(100% - 32px));
}

.faq details {
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: Nunito, Inter, sans-serif;
  font-size: 1.22rem;
  font-weight: 1000;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  background: white;
  font-weight: 1000;
}

.map-embed {
  height: 360px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 24px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-logo img {
  width: 138px;
}

.footer-logo p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--brand-dark);
  font-weight: 1000;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.social-links a {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(15, 128, 148, 0.16);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  background: rgba(15, 128, 148, 0.06);
  font-weight: 1000;
}

.social-links a:hover {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 118px 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .finder,
  .grid-2,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .journey-card {
    max-width: 680px;
  }

  .grid-3,
  .calendar-grid,
  .schools-board,
  .schedule-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .nav {
    min-height: 72px;
    grid-template-columns: 118px 1fr auto;
  }

  .brand img {
    width: 92px;
  }

  .lang-link,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.4rem);
  }

  .trust-row,
  .grid-3,
  .calendar-grid,
  .schools-board,
  .school-list,
  .schedule-board,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .actions .button,
  .review-badge .button {
    width: 100%;
  }

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

  .section {
    padding: 72px 0;
  }

  .journey-card h2 {
    font-size: 1.65rem;
  }

  .routine-tabs {
    grid-template-columns: 1fr;
  }

  .routine-output {
    min-height: auto;
  }

  .story-band {
    min-height: auto;
    padding-block: 72px;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.84)),
      url("assets/learning-desk.webp") center / cover;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
