:root {
  --navy: #162b44;
  --gold: #c89b2b;
  --gold-light: #f9f3e6;
  --cream: #f8f3e8;
  --warm-white: #fdfcf8;
  --off-white: #f5f3ee;
  --text-muted: rgba(22, 43, 68, 0.7);
  --shadow-sm: 0 2px 10px rgba(22, 43, 68, 0.08);
  --shadow-md: 0 10px 40px rgba(22, 43, 68, 0.12);
  --shadow-lg: 0 20px 60px rgba(22, 43, 68, 0.15);
  --transition: all 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Plus Jakarta Sans,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background: var(--warm-white);
}
h1,
h2,
h3,
h4 {
  font-family:
    Playfair Display,
    serif;
  font-weight: 600;
  line-height: 1.2;
}
.text-muted {
  color: var(--text-muted);
}
.text-navy {
  color: var(--navy);
}
.text-gold {
  color: var(--gold);
}
.bg-warm-white {
  background: var(--warm-white);
}
.bg-off-white {
  background: var(--off-white);
}
.bg-cream {
  background: var(--cream);
}
.bg-gold-light {
  background: var(--gold-light);
}
.bg-navy {
  background: var(--navy);
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition);
  background: transparent;
}
#header.scrolled {
  background: hsla(48, 56%, 98%, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
#headerContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#header.scrolled #headerContainer {
  height: 4rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
}
#header.scrolled .logo-link {
  color: var(--navy);
}
.logo-img {
  height: 2.5rem;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
#header.scrolled .logo-img {
  filter: none;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-title {
  font-family:
    Playfair Display,
    serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.8;
}
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}
#header.scrolled .nav-link {
  color: var(--navy);
}
.nav-link:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover:after {
  width: 100%;
}
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--warm-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--gold-light);
  color: var(--gold);
}
.dropdown-item.highlight {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  margin-top: 0.5rem;
}
.dropdown-item.highlight:hover {
  background: var(--navy);
}
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 60;
}
#header.scrolled .menu-btn {
  color: var(--navy);
}
@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--warm-white);
  box-shadow: -10px 0 40px rgba(22, 43, 68, 0.2);
  transition: var(--transition);
  z-index: 55;
  padding: 6rem 2rem 2rem;
}
.mobile-menu.open {
  right: 0;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 43, 68, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 54;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(22, 43, 68, 0.1);
}
.mobile-dropdown {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}
.mobile-dropdown a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
}
.mobile-dropdown a.primary {
  color: var(--gold);
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200, 155, 43, 0.4);
}
.btn-primary:hover {
  background: #b88a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 155, 43, 0.5);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid hsla(0, 0%, 100%, 0.5);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(22, 43, 68, 0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(22, 43, 68, 0.2);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--warm-white);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkbox-item input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--gold);
}
.alert {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: none;
}
.alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.alert.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.alert.show {
  display: block;
}
.card {
  background: var(--warm-white);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid rgba(22, 43, 68, 0.1);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.card-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1.5rem;
}
.page-header {
  background: var(--navy);
  color: #fff;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-header p {
  color: hsla(0, 0%, 100%, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
footer {
  background: var(--navy);
  color: #fff;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col h4 {
  font-family:
    Plus Jakarta Sans,
    sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.footer-col a,
.footer-col p {
  color: hsla(0, 0%, 100%, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 2;
  display: block;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.5);
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom a {
  color: hsla(0, 0%, 100%, 0.5);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--gold);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.link-arrow:hover {
  gap: 0.75rem;
}
.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 8rem;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-item {
  background: var(--warm-white);
  border-radius: 0.75rem;
  border: 1px solid rgba(22, 43, 68, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 1.5rem;
}
.faq-answer.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: var(--text-muted);
  line-height: 1.7;
}
.testimonial {
  background: var(--warm-white);
  padding: 3rem;
  border-radius: 1rem;
  border-left: 4px solid var(--gold);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  font-family:
    Playfair Display,
    serif;
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}
.schedule-card {
  background: var(--warm-white);
  border-radius: 1rem;
  border: 1px solid rgba(22, 43, 68, 0.1);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(22, 43, 68, 0.1);
  align-items: center;
}
.schedule-item:last-child {
  border-bottom: none;
}
.schedule-time {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.875rem;
}
.schedule-note {
  background: var(--gold-light);
  padding: 1.5rem;
  margin: 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.grade-card {
  background: var(--warm-white);
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid rgba(22, 43, 68, 0.1);
  box-shadow: var(--shadow-sm);
}
.grade-card h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.grade-card ul {
  list-style: none;
  color: var(--text-muted);
}
.grade-card li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}
.grade-card li:before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.quote-section {
  background: var(--cream);
  text-align: center;
  padding: 6rem 1.5rem;
}
.quote-bar {
  width: 6rem;
  height: 4px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 43, 68, 0.85) 0,
    rgba(22, 43, 68, 0.6) 50%,
    rgba(22, 43, 68, 0.4)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  width: 100%;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-text {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.quick-facts {
  padding: 4rem 1.5rem;
  background: var(--off-white);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.fact-item {
  text-align: center;
  padding: 1.5rem;
}
.fact-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold);
  font-size: 1.5rem;
}
.fact-value {
  font-family:
    Playfair Display,
    serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.fact-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.text-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.text-content strong {
  color: var(--navy);
}
.image-content img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.involvement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.involvement-card {
  background: var(--warm-white);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.involvement-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.involvement-card h3 {
  margin-bottom: 0.5rem;
}
.involvement-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.location-tag {
  background: hsla(0, 0%, 100%, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
}
.contact-method {
  background: var(--cream);
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.contact-method h3 {
  margin-bottom: 0.5rem;
}
.contact-method a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
section {
  padding: 8rem 1.5rem;
}
@media (min-width: 768px) {
  section {
    padding: 10rem 1.5rem;
  }
}

.bg-navy h3,
.bg-navy .experience-card h3 {
  color: white !important;
}
