/* ============================================
   Montessori Day School — Aldie, VA
   Classic & Elegant · Burgundy + Blush
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --burgundy-900: #4A1522;
    --burgundy-800: #5C1D2B;
    --burgundy-700: #7B2D3B;
    --burgundy-600: #9A3A4A;
    --burgundy-500: #B84759;
    --burgundy-400: #C9606E;
    --burgundy-300: #D97A87;
    --burgundy-200: #E8A0AA;
    --burgundy-100: #F2C0C7;
    --burgundy-50:  #F9E4E7;
    
    --blush-50:  #FDF8F5;
    --blush-100: #FAF0EA;
    --blush-200: #F5E6D3;
    --blush-300: #EDD5BC;
    --blush-400: #E4C4A5;
    --blush-500: #D4AD88;
    
    --cream: #FDFBF9;
    --cream-dark: #F7F3EF;
    --warm-white: #FEFCFA;
    
    --text-dark: #2A1F1D;
    --text-body: #4A3F3C;
    --text-muted: #7A6F6C;
    --text-light: #9A8F8C;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--burgundy-700);
    color: #fff;
    border-color: var(--burgundy-700);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--burgundy-800);
    border-color: var(--burgundy-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 0.9375rem;
}

/* --- Section Eyebrow --- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy-600);
    margin-bottom: var(--space-sm);
}

.section-eyebrow--light {
    color: var(--burgundy-200);
}

/* --- Section Title --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.section-title--light {
    color: #fff;
}

/* --- Section Subtitle --- */
.section-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 680px;
}

.section-subtitle--light {
    color: var(--blush-200);
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 251, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--blush-200);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(42, 31, 29, 0.08);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--burgundy-700);
}

.logo--footer {
    color: var(--blush-200);
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-location {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.logo--footer .logo-location {
    color: var(--blush-300);
}

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--burgundy-700);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--burgundy-700);
    background-color: var(--burgundy-50);
}

.nav-cta {
    background-color: var(--burgundy-700) !important;
    color: #fff !important;
    margin-left: 0.5rem;
}

.nav-cta:hover,
.nav-cta:focus {
    background-color: var(--burgundy-800) !important;
    color: #fff !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--burgundy-900);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/6992138/pexels-photo-6992138.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(74, 21, 34, 0.88) 0%,
        rgba(74, 21, 34, 0.82) 50%,
        rgba(74, 21, 34, 0.90) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: var(--space-3xl) var(--space-md);
}

.hero-decorative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.decorative-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--burgundy-300), transparent);
}

.decorative-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--burgundy-400);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush-300);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: var(--space-md);
}

.hero-headline em {
    font-style: italic;
    color: var(--blush-200);
}

.hero-subheadline {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--blush-200);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--blush-200);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blush-400);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(245, 230, 211, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--blush-300);
    text-decoration: none;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--blush-300), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach {
    padding: var(--space-3xl) 0;
    background-color: var(--warm-white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.approach-card {
    background-color: var(--cream);
    border: 1px solid var(--blush-200);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: center;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(123, 45, 59, 0.1);
    border-color: var(--burgundy-200);
}

.approach-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    color: var(--burgundy-600);
}

.approach-card-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.approach-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--burgundy-800) 0%, var(--burgundy-900) 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.program-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.program-card-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.program-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.program-card-age {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(74, 21, 34, 0.9));
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--blush-200);
    text-transform: uppercase;
}

.program-card-body {
    padding: var(--space-lg);
}

.program-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.program-card-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--blush-300);
    margin-bottom: var(--space-md);
}

.program-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.program-card-features li {
    font-size: 0.8125rem;
    color: var(--blush-200);
    padding-left: 1rem;
    position: relative;
}

.program-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--burgundy-400);
}

/* ============================================
   CAMPUS SECTION
   ============================================ */
.campus {
    padding: var(--space-3xl) 0;
    background-color: var(--cream);
}

.campus-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.campus-content {
    padding-top: var(--space-md);
}

.campus-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.campus-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm) 0;
    margin-top: var(--space-lg);
}

.campus-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: var(--space-sm) 0;
}

.campus-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--burgundy-600);
    flex-shrink: 0;
}

.campus-feature-icon svg {
    width: 100%;
    height: 100%;
}

.campus-feature span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.campus-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr;
    gap: var(--space-sm);
}

.campus-gallery-main {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.campus-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.campus-gallery-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ============================================
   COMMUNITY SECTION
   ============================================ */
.community {
    padding: var(--space-3xl) 0;
    background-color: var(--warm-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.team-card {
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--cream);
    border: 1px solid var(--blush-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(123, 45, 59, 0.1);
}

.team-card-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--burgundy-200);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy-600);
    margin-bottom: var(--space-sm);
}

.team-card-bio {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--burgundy-800) 0%, var(--burgundy-900) 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-quote-mark {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--burgundy-400);
    opacity: 0.4;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--blush-200);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-attribution {
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-family {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--blush-300);
}

/* ============================================
   ADMISSIONS SECTION
   ============================================ */
.admissions {
    padding: var(--space-3xl) 0;
    background-color: var(--cream);
}

.admissions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.admissions-content {
    padding-right: var(--space-lg);
}

.admissions-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

.admissions-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.admission-step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy-200);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step-content h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.step-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.admissions-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.admissions-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admissions-visual-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(74, 21, 34, 0.85));
}

.admissions-visual-caption p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--blush-200);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background-color: var(--warm-white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    padding-top: var(--space-md);
}

.contact-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    color: var(--burgundy-600);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail-icon svg {
    width: 100%;
    height: 100%;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
}

.contact-detail-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--burgundy-700);
    transition: var(--transition);
}

.contact-detail-value a:hover {
    color: var(--burgundy-500);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--blush-200);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--cream);
    border: 1px solid var(--blush-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.required {
    color: var(--burgundy-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background-color: var(--warm-white);
    border: 1px solid var(--blush-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--burgundy-500);
    box-shadow: 0 0 0 3px rgba(154, 58, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6F6C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: var(--burgundy-50);
    border: 1px solid var(--burgundy-200);
    border-radius: var(--radius-sm);
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    color: var(--burgundy-800);
}

.form-success svg {
    width: 24px;
    height: 24px;
    color: var(--burgundy-600);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--burgundy-900);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 280px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--blush-300);
    line-height: 1.6;
    margin-top: var(--space-sm);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush-300);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--blush-200);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #fff;
    padding-left: 0.25rem;
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--blush-200);
    line-height: 1.6;
}

.footer-contact a {
    color: var(--blush-200);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-copyright {
    font-size: 0.8125rem;
    color: var(--blush-400);
}

.footer-philosophy {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--blush-300);
    line-height: 1.6;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .programs-grid .program-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background-color: var(--warm-white);
        border-left: 1px solid var(--blush-200);
        padding: 5rem var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.open {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-menu a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--blush-100);
        font-size: 0.9375rem;
    }
    
    .nav-cta {
        margin-left: 0 !important;
        margin-top: var(--space-sm);
        text-align: center;
        border-bottom: none !important;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid .program-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .campus-layout,
    .admissions-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .admissions-content {
        padding-right: 0;
    }
    
    .campus-gallery {
        order: -1;
    }
    
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .campus-features {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
