/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== Base ===== */
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #1a1a1a;
    line-height: 1.3;
    font-weight: 700;
}

a { color: #c9a84c; text-decoration: none; transition: color 0.25s; }
a:hover { color: #a88c3a; }

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

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon { width: 44px; height: 44px; object-fit: contain; }

.logo-name {
    display: block;
    font-family: Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.logo-sub {
    display: block;
    font-size: 10.5px;
    color: #c9a84c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Nav */
.main-nav ul {
    display: flex;
    gap: 2px;
    align-items: center;
}

.main-nav a {
    display: block;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.main-nav a:hover { color: #1a1a1a; background: #f0ede6; }
.main-nav a.active { color: #1a3a2a; background: #edf5f0; font-weight: 600; }

/* Language toggle */
.lang-toggle {
    display: flex;
    gap: 2px;
    background: #f0ede6;
    border-radius: 6px;
    padding: 3px;
}

.lang-btn {
    display: block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    border-radius: 4px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.lang-btn.active { background: #fff; color: #1a3a2a; box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.lang-btn:hover { color: #1a3a2a; }

/* Mobile toggle */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-btn span { width: 22px; height: 2px; background: #333; border-radius: 1px; transition: all 0.2s; }

/* ===== HERO (Homepage) ===== */
.hero {
    background: linear-gradient(160deg, #1a3a2a 0%, #245a3d 50%, #1a3a2a 100%);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 24px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.hero h1 {
    font-size: 46px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
    font-weight: 700;
}

.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* ===== STATS BAND ===== */
.stats-band {
    background: #fff;
    border-bottom: 1px solid #e2dfd6;
    padding: 0;
}

.stats-row {
    display: flex;
    justify-content: center;
}

.stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: #e2dfd6;
}

.stat-number {
    display: block;
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn-fill {
    display: inline-block;
    padding: 13px 34px;
    font-size: 14px;
    font-weight: 600;
    background: #c9a84c;
    color: #fff;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    letter-spacing: 0.3px;
}
.btn-fill:hover { background: #b08e3e; color: #fff; }

.btn-line {
    display: inline-block;
    padding: 13px 34px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    border: 2px solid rgba(201,168,76,0.4);
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-line:hover { border-color: #c9a84c; color: #fff; background: rgba(201,168,76,0.15); }

/* Legacy buttons for subpages */
.btn {
    display: inline-block;
    padding: 11px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 6px;
}

.btn-primary { background: #c9a84c; color: #fff; }
.btn-primary:hover { background: #b08e3e; color: #fff; }

.btn-secondary { background: transparent; color: #c9a84c; border: 2px solid #c9a84c; }
.btn-secondary:hover { background: #c9a84c; color: #fff; }

.btn-sm { padding: 8px 20px; font-size: 13px; background: #1a3a2a; color: #fff; }
.btn-sm:hover { background: #245a3d; color: #fff; }

/* ===== LINK STYLES ===== */
.link-more {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #c9a84c;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.link-more:hover { border-bottom-color: #c9a84c; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: #f7f5f0; }

/* Legacy */
.section-gray { background: #f7f5f0; }

.section > .container > h2,
.section h2:first-child {
    font-size: 30px;
    margin-bottom: 32px;
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.section > .container > h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 28px;
    background: #c9a84c;
    border-radius: 2px;
}

/* Don't add the gold bar to inner h2s that follow other elements */
.col-text h2 { padding-left: 20px; position: relative; }
.col-text h2::before { content: ''; position: absolute; left: 0; top: 4px; width: 4px; height: 28px; background: #c9a84c; border-radius: 2px; }

.section-intro {
    color: #666;
    font-size: 15px;
    max-width: 700px;
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ===== PAGE HEADER (subpages) ===== */
.page-header {
    background: #1a3a2a;
    padding: 56px 0 48px;
}

.page-header .container {
    display: flex;
    flex-direction: column;
}

.page-header .breadcrumb {
    order: -1;
    margin-bottom: 12px;
}

.page-header h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a { color: #c9a84c; }
.breadcrumb a:hover { color: #ddc56e; }

/* ===== WELCOME GRID (Homepage) ===== */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}

.welcome-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.welcome-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 28px;
    background: #c9a84c;
    border-radius: 2px;
}

.welcome-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.side-card {
    background: #f7f5f0;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.side-card h3 {
    font-size: 17px;
    margin-bottom: 16px;
    font-weight: 700;
}

.side-card.accent {
    background: #1a3a2a;
    color: #fff;
}

.side-card.accent h3 { color: #c9a84c; }
.side-card.accent p { color: rgba(255,255,255,0.7); }
.side-card.accent a { color: #ddc56e; }

.tuition-amount {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff !important;
    margin: 8px 0;
}

.tuition-note {
    font-size: 13px;
}

.feature-list li {
    padding: 6px 0 6px 22px;
    font-size: 14px;
    color: #555;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #c9a84c;
    border-radius: 50%;
}

/* ===== TWO COLUMN (subpages) ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

.col-text p {
    margin-bottom: 16px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.key-facts {
    display: flex;
    gap: 40px;
    margin-top: 28px;
    padding: 28px 0;
    border-top: 1px solid #e2dfd6;
    border-bottom: 1px solid #e2dfd6;
}

.fact strong {
    display: block;
    font-size: 36px;
    color: #c9a84c;
    font-family: Georgia, serif;
    font-weight: 700;
}

.fact span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== ASIDE BOX (subpages) ===== */
.aside-box {
    background: #f7f5f0;
    border-radius: 8px;
    padding: 28px;
}

.aside-box h3 {
    font-size: 17px;
    margin-bottom: 16px;
    font-weight: 700;
}

.highlight-box {
    border: 2px solid #c9a84c;
    background: #f2f7f4;
}

.check-list li {
    padding: 7px 0 7px 22px;
    font-size: 14px;
    color: #555;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #c9a84c;
    border-radius: 50%;
}

.info-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-list li:last-child { border-bottom: none; }
.info-list strong { color: #1a1a1a; }

/* ===== CAMPUS CARDS ===== */
.campus-row,
.campus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.campus-grid-three { grid-template-columns: repeat(3, 1fr); }
.campus-grid-four { grid-template-columns: repeat(2, 1fr); }

.campus-item,
.campus-card {
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.campus-item:hover,
.campus-card:hover {
    border-color: #c9a84c;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.section-alt .campus-item,
.section-alt .campus-card,
.section-gray .campus-card { background: #fff; }

.campus-badge,
.campus-flag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c9a84c;
    margin-bottom: 10px;
}

.campus-item h3,
.campus-card h3 { font-size: 20px; margin-bottom: 12px; }

.campus-item > p,
.campus-card > p { font-size: 14px; color: #666; margin-bottom: 16px; line-height: 1.7; }

.campus-item > a,
.campus-card > a { font-size: 13px; font-weight: 600; color: #c9a84c; }

.campus-card h4 {
    font-size: 14px;
    margin: 20px 0 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* ===== NEWS ===== */
.news-list { display: flex; flex-direction: column; gap: 0; }

.news-entry {
    display: flex;
    gap: 32px;
    padding: 28px 0;
    border-bottom: 1px solid #e2dfd6;
    align-items: flex-start;
}

.news-entry:last-child { border-bottom: none; }

.news-time {
    flex-shrink: 0;
    width: 120px;
    font-size: 13px;
    font-weight: 600;
    color: #c9a84c;
    padding-top: 4px;
}

.news-body h3 { font-size: 18px; margin-bottom: 8px; }
.news-body p { font-size: 14px; color: #666; margin-bottom: 10px; line-height: 1.7; }

/* Legacy news grid for subpages */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.news-item { padding: 0; }

.news-date {
    display: block;
    font-size: 13px;
    color: #c9a84c;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-item h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.35; }
.news-item p { font-size: 14px; color: #666; margin-bottom: 12px; line-height: 1.7; }
.news-item a { font-size: 13px; font-weight: 600; color: #c9a84c; }

/* ===== TESTIMONIALS ===== */
.quote-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.main-quote {
    border: none;
    padding: 0;
    margin: 0;
}

.main-quote p {
    font-size: 22px;
    color: #333;
    font-style: italic;
    line-height: 1.7;
    font-family: Georgia, serif;
    margin-bottom: 20px;
}

.main-quote cite {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: #c9a84c;
}

/* Legacy testimonials for subpages */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial {
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 8px;
    padding: 28px;
    text-align: left;
}

.section-alt .testimonial,
.section-gray .testimonial { background: #fff; }

.testimonial p {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
    font-family: Georgia, serif;
}

.testimonial cite {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: #c9a84c;
}

/* ===== CTA BAND (Homepage) ===== */
.cta-band {
    background: #1a3a2a;
    padding: 64px 0;
    text-align: center;
}

.cta-band h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 12px;
    padding-left: 0;
}

.cta-band h2::before { display: none; }

.cta-band p {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    margin-bottom: 28px;
}

/* ===== TABLES ===== */
.level-table, .exam-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.level-table th, .exam-table th {
    background: #1a3a2a;
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.level-table th:first-child, .exam-table th:first-child { border-radius: 6px 0 0 0; }
.level-table th:last-child, .exam-table th:last-child { border-radius: 0 6px 0 0; }

.level-table td, .exam-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #e2dfd6;
    vertical-align: top;
}

.level-table tbody tr:nth-child(even),
.exam-table tbody tr:nth-child(even) { background: #f2f7f4; }
.level-table tbody tr:hover,
.exam-table tbody tr:hover { background: #eef3ec; }

.staff-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 20px;
}

.staff-table th {
    background: #1a3a2a;
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}

.staff-table th:first-child { border-radius: 6px 0 0 0; }
.staff-table th:last-child { border-radius: 0 6px 0 0; }

.staff-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #e2dfd6;
    vertical-align: top;
}

.staff-table tbody tr:nth-child(even) { background: #f2f7f4; }
.staff-table tbody tr:hover { background: #eef3ec; }
.staff-table-wrap { overflow-x: auto; }

.contact-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.contact-table td {
    padding: 10px 0;
    border-bottom: 1px solid #e2dfd6;
    vertical-align: top;
}

.contact-table td:first-child {
    font-weight: 700;
    width: 80px;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== COURSES GRID ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-item {
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 8px;
    padding: 28px;
    transition: all 0.3s;
}

.course-item:hover { border-color: #c9a84c; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }
.section-alt .course-item,
.section-gray .course-item { background: #fff; }

.course-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.course-header h3 { font-size: 17px; margin: 0; font-weight: 700; }

.course-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    background: #c9a84c;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
}

.course-item > p { font-size: 14px; color: #666; margin-bottom: 14px; }

.course-info-table {
    width: 100%;
    font-size: 13px;
    margin-bottom: 14px;
    border-collapse: collapse;
}

.course-info-table td { padding: 5px 0; border-bottom: 1px solid #edeae3; }
.course-info-table td:first-child { font-weight: 600; color: #999; width: 100px; }

.course-item.compact { padding: 24px; }
.course-item.compact h3 { font-size: 16px; margin-bottom: 10px; font-weight: 700; }
.course-item.compact p { font-size: 14px; color: #666; margin-bottom: 0; line-height: 1.7; }

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.team-member {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e2dfd6;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s;
}

.team-member:hover { border-color: #c9a84c; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }

.member-photo { flex-shrink: 0; }

.photo-placeholder {
    width: 56px;
    height: 56px;
    background: #1a3a2a;
    color: #c9a84c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
}

.member-info h3 { font-size: 15px; margin-bottom: 2px; font-weight: 700; }
.member-title { font-size: 12px; color: #c9a84c; font-weight: 600; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.member-info > p:last-child { font-size: 13px; color: #666; line-height: 1.6; }
.member-email { font-size: 13px; color: #c9a84c; margin-top: 6px; }

/* ===== CONTENT BLOCKS ===== */
.content-block { max-width: 760px; }
.content-block p { font-size: 15px; color: #555; margin-bottom: 16px; line-height: 1.8; }

.bullet-list { list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.bullet-list li { font-size: 14px; color: #555; padding: 5px 0; }

.numbered-list { list-style: decimal; padding-left: 20px; margin-bottom: 16px; }
.numbered-list li { font-size: 14px; color: #555; padding: 7px 0; line-height: 1.7; }

.delf-note {
    background: #f2f7f4;
    border-left: 4px solid #c9a84c;
    padding: 18px 22px;
    font-size: 14px;
    color: #555;
    border-radius: 0 8px 8px 0;
}

.status-open {
    display: inline-block;
    padding: 3px 12px;
    background: #c9a84c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.status-upcoming {
    display: inline-block;
    padding: 3px 12px;
    background: #bbb;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; }

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid #e2dfd6;
}

.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 16px; margin-bottom: 8px; font-weight: 700; }
.faq-item p { font-size: 14px; color: #666; line-height: 1.7; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-details h3, .contact-form-wrap h3 { font-size: 18px; margin-bottom: 16px; }

.map-placeholder {
    background: #f7f5f0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 14px;
    border-radius: 8px;
    border: 1px dashed #cdd8cf;
    margin-top: 24px;
}

/* ===== FORMS ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #c9a84c; box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.site-footer {
    background: #1a3a2a;
    color: rgba(255,255,255,0.6);
    padding: 56px 0 0;
    font-size: 14px;
    border-top: 3px solid #c9a84c;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: block;
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-info p { line-height: 1.7; margin-bottom: 10px; }
.footer-email a { color: #c9a84c; }

.site-footer h4 {
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c9a84c;
    margin-bottom: 16px;
}

.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a { color: rgba(255,255,255,0.6); font-size: 14px; }
.site-footer ul a:hover { color: #fff; }

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-lang {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    font-size: 13px;
}

.footer-lang:hover { color: #c9a84c; }


/* ===== FOCUS & ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #c9a84c;
    outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes navSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .two-col, .welcome-grid { grid-template-columns: 1fr; }
    .courses-grid, .team-grid, .news-grid, .campus-grid, .campus-row, .campus-grid-three { grid-template-columns: 1fr; }
    .testimonials-row { grid-template-columns: 1fr; }
    .staff-table { font-size: 13px; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-row { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; }
    .stat-item + .stat-item::before { display: none; }
    .news-entry { flex-direction: column; gap: 8px; }
    .news-time { width: auto; }
}

@media (max-width: 640px) {
    .menu-btn { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 1px solid #e2dfd6;
    }

    .main-nav.open { display: block; animation: navSlide 0.25s ease-out; }
    .main-nav ul { flex-direction: column; padding: 8px 0; }
    .main-nav a { padding: 12px 24px; margin: 0; border-radius: 0; font-size: 15px; }
    .main-nav a.active { background: #edf5f0; border-radius: 0; }

    .header-flex { height: 60px; }
    .logo-name { font-size: 14px; }
    .logo-sub { font-size: 9px; letter-spacing: 1px; }
    .logo-icon { width: 36px; height: 36px; }

    .hero { padding: 64px 0 56px; }
    .hero h1 { font-size: 30px; }
    .hero-text { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: center; }

    .stat-item { flex: 1 1 100%; padding: 20px; }
    .stat-number { font-size: 28px; }

    .section { padding: 48px 0; }
    .section > .container > h2 { font-size: 24px; }
    .page-header { padding: 36px 0 32px; }
    .page-header h1 { font-size: 28px; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
    .key-facts { flex-direction: column; gap: 16px; }

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

    .level-table, .exam-table, .staff-table { font-size: 12px; }
    .level-table th, .exam-table th, .level-table td, .exam-table td, .staff-table th, .staff-table td { padding: 10px 12px; }

    .cta-band h2 { font-size: 24px; }

    .quote-section { padding: 0 12px; }
    .main-quote p { font-size: 18px; }
}
