@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("assets/fonts/playfair-display-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --background: 42 45% 98%;
  --foreground: 218 42% 18%;
  --card: 42 40% 99%;
  --muted: 40 28% 93%;
  --muted-foreground: 216 20% 39%;
  --primary: 219 62% 24%;
  --primary-foreground: 42 70% 98%;
  --accent: 31 94% 53%;
  --accent-foreground: 219 62% 18%;
  --gold: 31 94% 53%;
  --gold-light: 37 96% 63%;
  --maroon-dark: 221 70% 16%;
  --ivory: 42 70% 98%;
  --border: 38 26% 86%;
  --shadow-elegant: 0 4px 30px hsl(219 62% 24% / .08);
  --shadow-card: 0 2px 20px hsl(219 35% 20% / .08);
  --shadow-hover: 0 8px 40px hsl(219 62% 24% / .14);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: #fafafaf5;
  transition: box-shadow .3s ease, background .3s ease;
}

.site-header.scrolled {
  background: hsl(var(--background) / .96);
  box-shadow: var(--shadow-elegant);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 40px));
  height: 118px;
  margin: auto;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 156px;
}

.footer-logo {
  width: 156px;
  margin: 0 0 22px;
  padding: 10px;
  background: hsl(var(--primary-foreground));
  border-radius: 8px;
}

.social-nav {
  display: flex;
  gap: 18px;
}

.social-nav a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #ebeff4;
  border: 1px solid hsl(216 20% 86%);
  border-radius: 50%;
  transition: transform .25s, background .25s;
}

.social-nav a:hover {
  background: hsl(var(--gold) / .13);
  transform: translateY(-3px);
}

.social-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: hsl(var(--primary));
  stroke-width: 1.9;
}

.social-nav path {
  fill: hsl(var(--primary));
  stroke: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(90deg, #111e31c4, #222a3975 46%, #f0922d5c);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 7s ease;
}

.hero-slide-one {
  background-image: url("assets/DJI_0425_1.jpg");
}

.hero-slide-two {
  background-image: url("assets/DSC_4683.jpg");
}

.hero-slide-three {
  background-image: url("assets/DSC01265.jpg");
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(690px, 58vw);
  margin-left: 32.5%;
  padding-top: 68px;
}

.eyebrow,
.section-label {
  color: hsl(var(--gold));
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.programme h2,
.footer h2,
.faq-wrap h2 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0;
  color: hsl(var(--primary-foreground));
  font-size: clamp(3.5rem, 5.1vw, 5.55rem);
}

.hero-copy {
  max-width: 660px;
  color: hsl(var(--primary-foreground) / .83);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 32px;
  font-weight: 700;
  border-radius: 7px;
  transition: transform .25s, box-shadow .25s, background .25s;
}

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

.btn-accent {
  color: hsl(var(--accent-foreground));
  background: hsl(var(--accent));
  box-shadow: 0 14px 30px hsl(var(--accent) / .25);
}

.btn-outline {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-foreground) / .04);
  border: 1px solid hsl(var(--primary-foreground) / .38);
}

.btn-outline:hover {
  background: hsl(var(--primary-foreground) / .12);
}

.slider-arrow {
  position: absolute;
  top: 52%;
  z-index: 4;
  width: 40px;
  height: 40px;
  color: hsl(var(--primary-foreground));
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  background: hsl(var(--primary-foreground) / .18);
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translate(-50%);
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  background: hsl(var(--primary-foreground) / .45);
  border: 0;
  border-radius: 20px;
}

.slider-dots button.active {
  width: 32px;
  background: hsl(var(--gold));
}

.section {
  padding: 96px 0;
}

.section-slim {
  padding: 44px 0;
}

.stats {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}

.stats strong {
  display: block;
  color: hsl(var(--gold-light));
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.stat-fee strong {
  font-size: clamp(2rem, 3.1vw, 2.65rem);
}

.stats span {
  color: hsl(var(--primary-foreground) / .82);
  font-weight: 600;
}

.stats .stat-label-emphasis {
  font-weight: 800;
  font-size: 18px;
}

.stats strong.counting {
  text-shadow: 0 0 22px hsl(var(--gold-light) / .38);
  transform: scale(1.08);
}

.two-col {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.copy h2,
.center + h2,
.section h2,
.programme h2 {
  margin: 8px 0 24px;
  font-size: clamp(2.3rem, 4vw, 3.85rem);
}

.copy p {
  margin: 0 0 18px;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
}

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

.mini-stats span,
.chips span,
.state-cloud span,
.outcome-grid span {
  padding: 9px 15px;
  color: hsl(var(--primary));
  font-size: .9rem;
  font-weight: 700;
  background: hsl(var(--gold) / .1);
  border: 1px solid hsl(var(--gold) / .2);
  border-radius: 999px;
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-hover);
}

.image-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.legacy,
.highlights,
.reach {
  background: hsl(var(--muted) / .55);
}

.center {
  text-align: center;
}

.lead {
  max-width: 720px;
  margin: 0 auto 44px;
  color: hsl(var(--muted-foreground));
}

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

.timeline article,
.cards article,
.parent-box,
.fee-card,
.testimonial-grid article,
.semester-grid article,
.callback-form {
  padding: 28px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s;
}

.timeline article:hover,
.cards article:hover,
.testimonial-grid article:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.timeline b,
.steps b,
.semester-grid b {
  color: hsl(var(--gold));
  font-family: var(--font-heading);
  font-size: 2rem;
}

.timeline h3,
.cards h3,
.parent-box h3,
.fee-card h3,
.testimonial-grid h3,
.semester-grid h3,
.footer h3 {
  margin: 8px 0 10px;
  color: hsl(var(--primary));
  font-size: 1.18rem;
}

.timeline p,
.cards p,
.parent-box p,
.testimonial-grid p,
.semester-grid li {
  color: hsl(var(--muted-foreground));
  font-size: .95rem;
}

.parent-box {
  margin-top: 34px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three,
.cards.six {
  grid-template-columns: repeat(3, 1fr);
}

.icon {
  font-size: 2rem;
}

.programme {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  color: hsl(var(--primary-foreground));
}

.programme-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c1e45e6, #1c2a4aa8), url("assets/hero-1-BA6Ysw2d.jpg") center / cover;
}

.programme-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-left: calc((100% - min(1120px, calc(100% - 40px))) / 2);
}

.programme p:not(.section-label) {
  color: hsl(var(--primary-foreground) / .82);
  font-size: 1.12rem;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin: 12px 0;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: hsl(var(--gold));
  font-weight: 800;
  content: "✓";
}

.semester-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.semester-grid ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.semester-grid li {
  padding: 12px 0;
  border-top: 1px solid hsl(var(--border));
}

.steps {
  display: grid;
  gap: 18px;
  margin: 26px 0;
}

.steps article {
  position: relative;
  padding-left: 58px;
}

.steps b {
  position: absolute;
  top: 0;
  left: 0;
}

.steps h3 {
  margin: 0 0 4px;
}

.steps p {
  margin: 0;
}

.fee-card dl {
  margin: 24px 0;
}

.fee-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid hsl(var(--border));
}

.fee-card dd {
  margin: 0;
  color: hsl(var(--primary));
  font-weight: 800;
}

.fee-card small {
  color: hsl(var(--muted-foreground));
}

.narrow {
  max-width: 820px;
}

.faq {
  border-bottom: 1px solid hsl(var(--border));
}

.faq button {
  width: 100%;
  padding: 22px 0;
  color: hsl(var(--primary));
  font-size: 1.04rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.faq button::after {
  float: right;
  color: hsl(var(--gold));
  font-size: 1.5rem;
  content: "+";
}

.faq.open button::after {
  content: "−";
}

.faq p {
  display: none;
  margin: 0 0 20px;
  color: hsl(var(--muted-foreground));
}

.faq.open p {
  display: block;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.testimonial-grid article p {
  font-style: italic;
}

.testimonial-grid span {
  color: hsl(var(--muted-foreground));
  font-size: .86rem;
}

.state-cloud,
.outcome-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.outcomes {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
}

.outcomes h2 {
  color: hsl(var(--primary-foreground));
}

.outcome-grid span {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary-foreground) / .08);
  border-color: hsl(var(--primary-foreground) / .18);
}

.callback-form {
  display: grid;
  gap: 14px;
}

.callback-form input {
  height: 52px;
  padding: 0 16px;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
}

.footer {
  padding: 80px 0 0;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--maroon-dark));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 44px;
}

.footer p {
  color: hsl(var(--primary-foreground) / .75);
}

.footer h3 {
  color: hsl(var(--gold-light));
}

.footer-cta {
  padding: 54px 20px;
  margin-top: 70px;
  text-align: center;
  background: #0000002e;
}

.footer-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.footer-cta .btn {
  margin-top: 18px;
}

.whatsapp {
  position: fixed;
  right: 40px;
  bottom: 38px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  font-size: 0;
  font-weight: 900;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 12px 28px #0003;
}

.whatsapp svg {
  display: block;
  width: 36px;
  height: 36px;
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible,
.reveal-group.visible > * {
  opacity: 1;
  transform: none;
}

.reveal-group.visible > *:nth-child(2) {
  transition-delay: .08s;
}

.reveal-group.visible > *:nth-child(3) {
  transition-delay: .16s;
}

.reveal-group.visible > *:nth-child(4) {
  transition-delay: .24s;
}

.reveal-group.visible > *:nth-child(5) {
  transition-delay: .32s;
}

.reveal-group.visible > *:nth-child(6) {
  transition-delay: .4s;
}

.register-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 20px;
  overflow: auto;
  background: hsl(var(--foreground) / .62);
}

.register-modal.open {
  display: flex;
}

.register-dialog {
  position: relative;
  width: min(560px, 100%);
  padding: 34px;
  background: hsl(var(--card));
  border-radius: 14px;
  box-shadow: 0 24px 70px hsl(var(--foreground) / .28);
}

#registerTitle {
  margin: 10px auto 18px;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  line-height: 1.08;
  max-width: none;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 40px;
  height: 40px;
  color: hsl(var(--primary-foreground));
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  background: hsl(var(--primary));
  border: 0;
  border-radius: 50%;
}

.register-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  margin-top: 24px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

.register-intro {
  max-width: 420px;
  margin: 16px auto 0;
  color: hsl(var(--muted-foreground));
}

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

.register-form .form-grid input:last-child {
  grid-column: 1 / -1;
}

.register-form input,
.register-form select,
.register-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: hsl(var(--foreground));
  font: inherit;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
}

.register-form textarea {
  min-height: 118px;
  resize: vertical;
}

.register-form textarea::placeholder,
.register-form input::placeholder {
  color: hsl(var(--muted-foreground));
}

.register-form .btn {
  width: 100%;
  max-width: none;
}

.file-field {
  padding: 18px 18px 16px;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 10px;
}

.file-field label {
  display: block;
  margin-bottom: 10px;
  color: hsl(var(--primary));
  font-size: 1.05rem;
  font-weight: 700;
}

.file-field input {
  padding: 10px 12px;
  background: hsl(var(--card));
  border-radius: 6px;
}

.file-field p {
  margin: 12px 0 0;
  color: hsl(var(--muted-foreground));
  font-size: .96rem;
}

.verification {
  display: grid;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid hsl(var(--border));
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .header-inner {
    height: 96px;
  }

  .brand img {
    width: 136px;
  }

  .social-nav {
    gap: 8px;
  }

  .social-nav a {
    width: 31px;
    height: 31px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    width: calc(100% - 48px);
    margin-left: 24px;
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .two-col,
  .two-col.reverse,
  .semester-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .timeline,
  .cards.three,
  .cards.six,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .programme-content {
    width: min(1120px, calc(100% - 40px));
    margin: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
  }

  .header-inner {
    justify-content: center;
    height: 92px;
  }

  .social-nav {
    display: none;
  }

  .brand img {
    width: 128px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .slider-arrow {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .timeline,
  .cards.three,
  .cards.six,
  .testimonial-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .copy h2,
  .section h2,
  .programme h2 {
    font-size: 2.2rem;
  }

  .footer-grid {
    gap: 20px;
  }

  .whatsapp {
    right: 20px;
    bottom: 20px;
  }

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

  .register-dialog {
    padding: 24px 16px;
  }

  .register-form {
    padding: 20px;
  }

  .file-field {
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
