:root {
  --navy: #001b43;
  --navy-2: #08285b;
  --burgundy: #8f0d24;
  --burgundy-2: #b52a35;
  --cream: #fff8ec;
  --cream-2: #f7ead8;
  --gold: #e7bd78;
  --white: #ffffff;
  --ink: #13213a;
  --muted: #647086;
  --shadow: 0 24px 70px rgba(0, 27, 67, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section-padding {
  padding: clamp(72px, 9vw, 130px) 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 54px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 27, 67, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(143, 13, 36, 0.34);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  place-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(231, 189, 120, 0.24), transparent 34%),
    linear-gradient(135deg, var(--navy) 0%, #05142f 52%, #450715 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(0, 27, 67, 0.88), rgba(0, 27, 67, 0.63), rgba(143, 13, 36, 0.74)),
    url("images/IMG_9150.jpeg") center center / cover no-repeat;
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -92px;
  height: 190px;
  background: var(--cream);
  transform: rotate(-3deg);
  transform-origin: left center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.42;
  pointer-events: none;
}

.orb-one {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 18%;
  background: radial-gradient(circle, rgba(231, 189, 120, 0.56), transparent 70%);
}

.orb-two {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(181, 42, 53, 0.44), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding-top: 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.burgundy {
  color: var(--burgundy);
  background: rgba(143, 13, 36, 0.08);
  border-color: rgba(143, 13, 36, 0.13);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 8vw, 7.7rem);
  margin-bottom: 24px;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  color: var(--navy);
  margin-bottom: 18px;
}

.hero-text {
  max-width: 700px;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-2));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(143, 13, 36, 0.36);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.trust-row {
  margin-top: 30px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card,
.contact-card,
.location-card,
.feature-panel,
.program-card,
.quick-card {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.hero-card {
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  text-align: center;
}

.crest {
  width: min(280px, 82%);
  margin: 0 auto 16px;
}

.card-divider {
  width: 72px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
}

.hero-card h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.hero-card p {
  color: var(--muted);
}

.info-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  text-align: left;
}

.info-list a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(0, 27, 67, 0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}

.info-list a:hover {
  transform: translateY(-2px);
  background: rgba(143, 13, 36, 0.08);
}

.info-list i,
.quick-card i,
.feature-item i,
.program-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--burgundy));
}

.info-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.88rem;
}

.quick-contact {
  position: relative;
  z-index: 3;
  margin-top: -58px;
  padding-bottom: 30px;
}

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

.quick-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover,
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 27, 67, 0.2);
}

.quick-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.quick-card span {
  color: var(--muted);
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-panel {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 27, 67, 0.045);
}

.feature-item h3,
.program-card h3,
.location-details h3 {
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.2;
}

.feature-item p,
.program-card p,
.location-details p {
  color: var(--muted);
}

.programs {
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 13, 36, 0.1), transparent 28%),
    linear-gradient(180deg, #fffdf8, var(--cream-2));
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.programs-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 320px));
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  margin: 3rem auto 0;
  width: min(100%, 1100px);
}

.program-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
   width: 100%;
}

.program-card i {
  margin-bottom: 18px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(0, 27, 67, 0.94), rgba(69, 7, 21, 0.9)),
     url("images/IMG_9123.jpeg") center center / cover no-repeat;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(0, 27, 67, 0.13);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(143, 13, 36, 0.55);
  box-shadow: 0 0 0 4px rgba(143, 13, 36, 0.1);
}

.form-row input.error,
.form-row textarea.error {
  border-color: #c62828;
}

.form-btn {
  width: 100%;
}

.form-note {
  font-size: 0.9rem !important;
  color: var(--muted);
}

.location-card {
  overflow: hidden;
}

.map-embed {
  width: 100%;
  background: var(--cream);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.location-details {
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.location-details p {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.location-details i {
  color: var(--burgundy);
  margin-top: 4px;
}

.full {
  width: 100%;
  margin-top: 18px;
  background: var(--navy);
  color: var(--white);
}

.footer {
  padding: 48px 0;
  background: #04122b;
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}

.footer img {
  width: 110px;
  margin-bottom: 14px;
}

.footer h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--gold);
}

.copyright {
  margin-top: 14px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.32s; }

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: rgba(0, 27, 67, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 14px;
  }

  .nav-cta {
    text-align: center;
  }

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

  .hero-grid {
    padding-top: 112px;
  }

  .hero-card {
    max-width: 560px;
  }

  .quick-grid,
  .program-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact {
    margin-top: 0;
    padding-top: 28px;
    background: var(--cream);
  }
}

@media (max-width: 620px) {
  .brand span {
    display: none;
  }

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

  .hero-actions .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
    justify-content: center;
  }

  .section-padding {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-card,
  .contact-card,
  .location-card,
  .feature-panel,
  .program-card,
  .quick-card {
    border-radius: 24px;
  }
}
@media (max-width: 900px) {
  .programs-grid,
  .program-grid {
    grid-template-columns: repeat(2, minmax(260px, 320px));
  }
}

@media (max-width: 640px) {
  .programs-grid,
  .program-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}
.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(0, 25, 58, 0.92), rgba(110, 12, 30, 0.8)),
    url("images/IMG_9150.jpeg") center / cover no-repeat;
}

.thank-you-card {
  max-width: 620px;
  width: 100%;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.thank-you-card h1 {
  color: var(--navy);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.hidden,
.netlify-hidden {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}