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

:root {
    --burgundy-950: #1a0a10;
    --burgundy-900: #2d0f1a;
    --burgundy-800: #4a1528;
    --burgundy-700: #6b1d3a;
    --burgundy-600: #781f37;
    --burgundy-500: #8f2644;
    --burgundy-400: #a83556;
    --burgundy-300: #c45a78;
    --burgundy-200: #e08fa0;
    --burgundy-100: #f2c4cc;
    --burgundy-50: #faf0f2;

    --blush-900: #4a202a;
    --blush-800: #6d3542;
    --blush-700: #8f4a58;
    --blush-600: #b0606e;
    --blush-500: #c97a87;
    --blush-400: #dc9a9f;
    --blush-300: #eab8bc;
    --blush-200: #f5d4d7;
    --blush-100: #faebeb;
    --blush-50: #fdf5f5;

    --neutral-950: #0f0f11;
    --neutral-900: #1a1a1e;
    --neutral-800: #2a2a30;
    --neutral-700: #3d3d45;
    --neutral-600: #55555f;
    --neutral-500: #6e6e7a;
    --neutral-400: #8e8e9a;
    --neutral-300: #b0b0ba;
    --neutral-200: #d1d1d9;
    --neutral-100: #ebebf0;
    --neutral-50: #f7f7f9;
    --neutral-25: #fbfbfc;
    --neutral-0: #ffffff;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 10px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 20px 50px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 30px 80px rgba(0,0,0,0.08);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--neutral-800);
    background-color: var(--neutral-0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--neutral-900);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy-600);
    color: var(--neutral-0);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-100);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--burgundy-600);
}

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

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

.logo-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--burgundy-600);
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--neutral-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.logo--footer {
    color: var(--neutral-0);
}

.logo--footer .logo-name {
    color: var(--neutral-0);
}

.logo--footer .logo-sub {
    color: var(--neutral-400);
}

.logo--footer .logo-icon {
    color: var(--burgundy-300);
}

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 101;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--neutral-600);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-list a:hover {
    color: var(--burgundy-600);
    background: var(--burgundy-50);
}

.nav-cta {
    background: var(--burgundy-600) !important;
    color: var(--neutral-0) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--burgundy-700) !important;
    color: var(--neutral-0) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy-600);
    color: var(--neutral-0);
    box-shadow: 0 4px 14px rgba(120, 31, 55, 0.3);
}

.btn-primary:hover {
    background: var(--burgundy-700);
    box-shadow: 0 6px 20px rgba(120, 31, 55, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--neutral-0);
    color: var(--burgundy-600);
    border: 1.5px solid var(--burgundy-200);
}

.btn-secondary:hover {
    background: var(--burgundy-50);
    border-color: var(--burgundy-400);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--neutral-950);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(120, 31, 55, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 30%, rgba(120, 31, 55, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--neutral-950) 0%, var(--burgundy-950) 50%, var(--neutral-900) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(196, 90, 120, 0.15);
    border: 1px solid rgba(196, 90, 120, 0.3);
    border-radius: 100px;
    color: var(--burgundy-200);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--neutral-0);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-accent {
    color: var(--burgundy-300);
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--neutral-300);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-0);
}

.stat-label {
    font-size: 12px;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--neutral-700);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--burgundy-600);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

/* Section styles */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy-400);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header--centered {
    text-align: center;
}

.section-header--centered .section-label {
    justify-content: center;
}

.section-header--centered .section-label::before {
    display: none;
}

.section-description {
    font-size: 17px;
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--neutral-0);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100px;
    height: 100px;
    background: var(--burgundy-100);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 18px;
    background: var(--burgundy-50);
    border: 1px solid var(--burgundy-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--burgundy-700);
}

.about-badge svg {
    width: 16px;
    height: 16px;
}

.about-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--neutral-700);
    margin-bottom: 16px;
}

.about-content-col p {
    font-size: 15px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-50);
    border-radius: var(--radius-md);
    color: var(--burgundy-600);
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 4px;
}

.value-text span {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* Programs */
.programs {
    padding: 100px 0;
    background: var(--neutral-50);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.program-card {
    position: relative;
    background: var(--neutral-0);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-base);
}

.program-card:hover {
    border-color: var(--burgundy-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.program-card--featured {
    border-color: var(--burgundy-200);
    background: linear-gradient(135deg, var(--burgundy-50) 0%, var(--neutral-0) 100%);
}

.program-card-ribbon {
    position: absolute;
    top: 0;
    right: 32px;
    background: var(--burgundy-600);
    color: var(--neutral-0);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.program-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.program-age {
    font-size: 12px;
    font-weight: 600;
    color: var(--burgundy-600);
    background: var(--burgundy-50);
    border: 1px solid var(--burgundy-100);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

.program-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    color: var(--burgundy-500);
    transition: all var(--transition-base);
}

.program-card:hover .program-icon {
    background: var(--burgundy-600);
    color: var(--neutral-0);
}

.program-icon svg {
    width: 24px;
    height: 24px;
}

.program-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.program-description {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--neutral-600);
    font-weight: 500;
}

.program-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--burgundy-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--neutral-0);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-us-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.differentiators {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.differentiator {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.diff-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--burgundy-100);
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.diff-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.diff-content p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
}

.why-us-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-us-image-main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.why-us-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-us-image-stack img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.why-us-stat-card {
    background: var(--burgundy-600);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.stat-card-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--neutral-0);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card-label {
    font-size: 12px;
    color: var(--burgundy-200);
    font-weight: 500;
    line-height: 1.4;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--neutral-50);
}

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

.testimonial-card {
    background: var(--neutral-0);
    border: 1px solid var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--burgundy-100);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1;
    color: var(--burgundy-100);
    position: absolute;
    top: 16px;
    right: 28px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    background: var(--burgundy-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy-600);
    flex-shrink: 0;
}

.testimonial-author-avatar svg {
    width: 20px;
    height: 20px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--neutral-800);
}

.testimonial-detail {
    font-size: 12px;
    color: var(--neutral-400);
}

/* Admissions */
.admissions {
    padding: 100px 0;
    background: var(--neutral-0);
}

.admissions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.admissions-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

.admissions-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.admission-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy-600);
    color: var(--neutral-0);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.step-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
}

.admissions-visual img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--neutral-950);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(120, 31, 55, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 100% 80%, rgba(120, 31, 55, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-content .section-label {
    color: var(--burgundy-300);
}

.cta-content .section-label::before {
    background: var(--burgundy-400);
}

.cta-content .section-title {
    color: var(--neutral-0);
}

.cta-description {
    font-size: 16px;
    color: var(--neutral-400);
    line-height: 1.75;
    margin-bottom: 36px;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cta-contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 90, 120, 0.15);
    border: 1px solid rgba(196, 90, 120, 0.3);
    border-radius: var(--radius-md);
    color: var(--burgundy-300);
}

.cta-contact-icon svg {
    width: 20px;
    height: 20px;
}

.cta-contact-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--neutral-200);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.cta-contact-item span,
.cta-contact-item a {
    font-size: 15px;
    color: var(--neutral-400);
    transition: color var(--transition-fast);
}

.cta-contact-item a:hover {
    color: var(--burgundy-300);
}

/* Form */
.cta-form-col {
    background: var(--neutral-0);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--neutral-800);
    background: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy-400);
    background: var(--neutral-0);
    box-shadow: 0 0 0 3px rgba(120, 31, 55, 0.1);
}

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

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

.form-privacy {
    font-size: 12px;
    color: var(--neutral-400);
    text-align: center;
    margin-top: 14px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-sm);
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
    margin-top: 16px;
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: var(--neutral-950);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--neutral-800);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--neutral-500);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: var(--neutral-300);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--neutral-500);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--burgundy-300);
}

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

.footer-contact p,
.footer-contact a {
    font-size: 14px;
    color: var(--neutral-500);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--burgundy-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
    color: var(--neutral-600);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--burgundy-600);
    color: var(--neutral-0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 50;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--burgundy-700);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

    .hero-image img {
        height: 460px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--neutral-0);
        padding: 24px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav-list a {
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-grid,
    .why-us-grid,
    .admissions-layout,
    .cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img,
    .admissions-visual img {
        height: 320px;
    }

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

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

    .why-us-image-stack {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-form-col {
        padding: 28px;
    }

    .section-title {
        font-size: clamp(24px, 5vw, 36px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .program-card {
        padding: 24px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
