:root {
  /* Color Palette */
  --color-bg-deep: #050B18;
  --color-bg-navy: #0A1428;
  --color-bg-navy-translucent: rgba(10, 20, 40, 0.82);
  --color-bg-card: rgba(15, 27, 51, 0.7);
  --color-bg-surface: #0E1B33;
  --color-bg-ivory: #FAF8F5;
  
  --color-gold: #C9A96E;
  --color-gold-light: #DFCA9B;
  --color-gold-dark: #A78446;
  --color-gold-glow: rgba(201, 169, 110, 0.28);
  --color-gold-subtle: rgba(201, 169, 110, 0.12);
  
  --color-text-primary: #F8F9FA;
  --color-text-secondary: #C8D1DE;
  --color-text-muted: #8E9BAE;
  --color-text-dark: #121927;
  
  --color-border: rgba(201, 169, 110, 0.22);
  --color-border-subtle: rgba(255, 255, 255, 0.08);
  --color-border-focus: #C9A96E;
  
  --color-success: #38A169;
  --color-error: #E53E3E;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Cinzel', 'Cormorant Garamond', serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-gold: 0 10px 30px -10px rgba(201, 169, 110, 0.35);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-modal: 0 30px 80px rgba(0, 0, 0, 0.65);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--color-bg-deep);
  color: var(--color-text-secondary);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-bg-deep);
}

/* Background Ambient Glows */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow::before {
  content: '';
  position: absolute;
  top: -10vw;
  right: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, rgba(10, 20, 40, 0) 70%);
  filter: blur(80px);
}

.ambient-glow::after {
  content: '';
  position: absolute;
  bottom: 10vw;
  left: -15vw;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(14, 27, 51, 0.6) 0%, rgba(5, 11, 24, 0) 70%);
  filter: blur(100px);
}

/* Typography Defaults */
h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 860px;
}

/* Navigation Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5, 11, 24, 0.85) 0%, rgba(5, 11, 24, 0.4) 80%, rgba(5, 11, 24, 0) 100%);
}

.site-header.scrolled {
  padding: 0.85rem 0;
  background: rgba(5, 11, 24, 0.94);
  border-bottom: 1px solid var(--color-border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  transition: transform var(--transition-smooth);
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 500;
}

/* Header Action */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Premium Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #DFCA9B 0%, #C9A96E 50%, #B38F4E 100%);
  color: #0B1324;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-gold), inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 80%);
  transform: rotate(25deg) translateY(-100%);
  transition: transform 0.75s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(201, 169, 110, 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-primary:hover::after {
  transform: rotate(25deg) translateY(100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
}

/* Secondary Link */
.link-subtle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-gold);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.link-subtle:hover {
  opacity: 1;
  transform: translateX(3px);
  color: var(--color-gold-light);
}

/* 1. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: var(--color-bg-deep);
  transform: scale(1.03);
  animation: subtleZoom 20s ease-out infinite alternate;
}

@keyframes subtleZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.68) saturate(1.08);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center 40%, rgba(5, 11, 24, 0.4) 0%, rgba(5, 11, 24, 0.85) 75%, var(--color-bg-deep) 100%),
              linear-gradient(180deg, rgba(5, 11, 24, 0.7) 0%, rgba(5, 11, 24, 0.2) 40%, rgba(5, 11, 24, 0.85) 90%, var(--color-bg-deep) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.15rem;
  background: rgba(10, 20, 40, 0.65);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.status-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-gold);
  position: relative;
}

.status-badge-dot::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.4);
  animation: pulseDot 2.2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

/* Hero Center Emblem */
.hero-emblem-wrap {
  margin-bottom: 1.75rem;
  animation: fadeInUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-emblem-img {
  width: clamp(160px, 18vw, 230px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(201, 169, 110, 0.3));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.hero-emblem-wrap:hover .hero-emblem-img {
  transform: scale(1.04);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 35px rgba(201, 169, 110, 0.45));
}

/* School Name */
.hero-school-name {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-school-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.8vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  animation: fadeInUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-school-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: fadeInUp 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.hero-scroll-indicator:hover {
  color: var(--color-gold);
  transform: translateX(-50%) translateY(2px);
}

.scroll-mouse-icon {
  width: 20px;
  height: 32px;
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  75% { transform: translate(-50%, 10px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* 2. BRAND STATEMENT SECTION */
.brand-statement-section {
  padding: 7.5rem 0 6.5rem;
  position: relative;
  background: linear-gradient(180deg, var(--color-bg-deep) 0%, var(--color-bg-navy) 50%, var(--color-bg-deep) 100%);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.brand-statement-card {
  position: relative;
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 4.5rem 3.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  text-align: center;
  overflow: hidden;
}

.brand-statement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.ornament-flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.flourish-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.flourish-line.right {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.flourish-icon {
  font-size: 0.9rem;
}

.statement-headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.28;
  color: #FFFFFF;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.statement-body {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto;
}

/* 3. LOCATION SECTION */
.location-section {
  padding: 6.5rem 0;
  position: relative;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  background: rgba(14, 27, 51, 0.45);
  border: 1px solid var(--color-border-subtle);
  border-radius: 24px;
  padding: 3.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.location-meta-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.location-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  font-family: var(--font-serif);
}

.location-address-box {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem;
  background: rgba(5, 11, 24, 0.6);
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  margin-bottom: 1.75rem;
}

.location-pin-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.location-address-text {
  font-size: 1.12rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.5;
}

.location-phone-link,
.location-email-link {
  display: inline-block;
  font-size: 1.15rem;
  color: #FFFFFF;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
  word-break: break-all;
}

.location-phone-link:hover,
.location-email-link:hover {
  color: var(--color-gold);
}

.location-address-sub {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.location-note {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* Map Display Box */
.map-visual-card {
  position: relative;
  height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  background: #091322;
}

.map-visual-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(85%) invert(90%) contrast(110%) hue-rotate(185deg);
  opacity: 0.88;
  transition: filter var(--transition-smooth), opacity var(--transition-smooth);
}

.map-visual-card:hover iframe {
  filter: grayscale(40%) invert(90%) contrast(105%) hue-rotate(185deg);
  opacity: 1;
}

.map-card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(5, 11, 24, 0.88);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  padding: 0.45rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

/* 4. FINAL CTA SECTION */
.final-cta-section {
  padding: 7.5rem 0 8.5rem;
  position: relative;
  text-align: center;
  background: radial-gradient(circle at center, rgba(14, 27, 51, 0.7) 0%, var(--color-bg-deep) 70%);
}

.final-cta-box {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.final-cta-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-family: var(--font-serif);
  color: #FFFFFF;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.final-cta-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-text-secondary);
  font-weight: 300;
  margin-bottom: 2.75rem;
}

/* 5. FOOTER */
.site-footer {
  padding: 4.5rem 0 2.5rem;
  background-color: #030710;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.5rem;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.6));
}

.footer-school-name {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-primary);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.footer-location-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.footer-location-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
}

.footer-privacy-btn {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition-fast);
}

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

/* 6. MODAL SYSTEM */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3, 7, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: #0B162C;
  background: linear-gradient(165deg, #0E1B36 0%, #081122 100%);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow-modal);
  transform: translateY(24px) scale(0.97);
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid var(--color-border-subtle);
}

.modal-close-btn:hover {
  background: rgba(201, 169, 110, 0.2);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}

.modal-title {
  font-size: 1.95rem;
  font-family: var(--font-serif);
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}

/* Form Elements */
.form-group {
  margin-bottom: 1.35rem;
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-secondary);
  margin-bottom: 0.45rem;
}

.form-label .required-star {
  color: var(--color-gold);
  margin-left: 0.2rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(5, 11, 24, 0.7);
  border: 1px solid rgba(201, 169, 110, 0.28);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  outline: none;
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(5, 11, 24, 0.85);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
  background: rgba(5, 11, 24, 0.95);
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}

.form-error-msg {
  display: none;
  font-size: 0.76rem;
  color: #FC8181;
  margin-top: 0.35rem;
}

.form-error-msg.visible {
  display: block;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.1em;
  padding-right: 2.5rem;
}

.form-select option {
  background: #081122;
  color: #FFFFFF;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.btn-loading-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(11, 19, 36, 0.3);
  border-top-color: #0B1324;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-primary.loading .btn-loading-spinner {
  display: inline-block;
}

.btn-primary.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success State Screen */
.form-success-container {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success-container.visible {
  display: block;
  animation: fadeInScale 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.success-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(56, 161, 105, 0.15);
  border: 1px solid rgba(56, 161, 105, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-success);
}

.success-title {
  font-size: 1.8rem;
  font-family: var(--font-serif);
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.success-text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: rgba(5, 11, 24, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1.25rem;
  display: none;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

.mobile-sticky-cta .btn-primary {
  width: 100%;
  padding: 0.85rem 1.25rem;
}

/* Privacy Modal Content */
.privacy-content {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: left;
}

.privacy-content h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-gold-light);
  margin: 1.25rem 0 0.4rem;
  font-size: 0.95rem;
}

.privacy-content p {
  margin-bottom: 0.85rem;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem 1.75rem;
  }
  
  .brand-statement-card {
    padding: 3.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0.85rem 0;
  }
  
  .brand-logo-img {
    height: 40px;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.62rem;
  }

  .header-actions .btn-primary {
    display: none; /* Mobile sticky CTA handles it */
  }

  .hero-section {
    padding: 3.5rem 0 2.5rem;
    min-height: 100vh;
  }

  .hero-emblem-img {
    width: clamp(130px, 22vw, 175px);
  }

  .hero-school-name {
    letter-spacing: 0.08em;
  }

  .hero-school-subtitle {
    letter-spacing: 0.2em;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 68px; /* space for sticky cta */
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .modal-card {
    padding: 2.25rem 1.5rem;
    border-radius: 20px;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 1.15rem;
  }

  .status-badge {
    font-size: 0.68rem;
    padding: 0.38rem 0.95rem;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
  }

  .hero-emblem-img {
    width: clamp(115px, 28vw, 145px);
  }

  .hero-school-name {
    font-size: 1.75rem;
  }

  .hero-school-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }

  .hero-tagline {
    font-size: 1.5rem;
  }

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

  .brand-statement-card {
    padding: 2.5rem 1.25rem;
  }

  .statement-headline {
    font-size: 1.65rem;
  }

  .statement-body {
    font-size: 0.95rem;
  }

  .location-wrapper {
    padding: 2rem 1.25rem;
  }

  .map-visual-card {
    height: 250px;
  }

  .final-cta-headline {
    font-size: 2rem;
  }
}
