@import url('https://fonts.googleapis.com/css2?family=Black+Han+Sans&family=Josefin+Slab:wght@300;400&family=Quicksand:wght@400;600;700&display=swap');

:root {
    --bg:      #fdf6ee;
    --bg2:     #fff3e0;
    --bg3:     #ffecd4;
    --orange:  #d97000;
    --orange-text: #b45d00;
    --gold:    #d97000;
    --brown:   #8b3a00;
    --dark:    #1a0a00;
    --text:    #2d1200;
    --muted:   #6b3a10;
    --faint:   #a06030;
    --card:    #fff3e0;
    --border:  rgba(217,112,0,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Quicksand", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── LOADING ── */
#loading {
    position: fixed; inset: 0;
    background: var(--bg2);
    z-index: 9999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading.hidden { opacity: 0; visibility: hidden; }
.loading-logo-img {
    width: clamp(160px, 32vw, 260px);
    filter: drop-shadow(0 2px 20px rgba(150,60,0,0.25));
    margin-bottom: 36px;
    animation: logoPulse 2.5s ease-in-out infinite;
}
@keyframes logoPulse {
    0%,100% { filter: drop-shadow(0 2px 16px rgba(150,60,0,0.2)); }
    50%      { filter: drop-shadow(0 4px 36px rgba(150,60,0,0.45)); }
}
.loading-bar {
    width: 220px; height: 2px;
    background: rgba(139,58,0,0.12);
    position: relative; overflow: hidden; border-radius: 2px; margin-top: 8px;
}
.loading-bar::after {
    content: ''; position: absolute; left: -60%; top: 0; width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    animation: loadbar 1.4s ease-in-out infinite;
}
@keyframes loadbar { 0% { left: -60%; } 100% { left: 120%; } }
.loading-text-wrap { height: 44px; overflow: hidden; margin-bottom: 28px; text-align: center; }
.loading-texts { animation: cycleText 8s linear infinite; }
.loading-text {
    display: block; font-size: 16px; font-weight: 400; color: var(--muted);
    height: 44px; line-height: 44px; white-space: nowrap;
    font-family: "Josefin Slab", serif; letter-spacing: 0.1em;
}
@keyframes cycleText {
    0%,22%  { transform: translateY(0); }
    25%,47% { transform: translateY(-44px); }
    50%,72% { transform: translateY(-88px); }
    75%,97% { transform: translateY(-132px); }
    100%    { transform: translateY(0); }
}

/* ── NAV ── */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 5vw; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(180deg, rgba(253,246,238,0.95) 0%, rgba(253,246,238,0) 100%);
    transition: background 0.4s, height 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
    background: rgba(253,246,238,0.97);
    backdrop-filter: blur(14px);
    height: 60px;
    border-bottom: 1px solid rgba(217,112,0,0.2);
    box-shadow: 0 2px 20px rgba(139,58,0,0.06);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
    height: 52px; width: auto;
    filter: drop-shadow(0 2px 6px rgba(100,40,0,0.18));
    transition: filter 0.3s, transform 0.3s;
}
.nav-logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(200,100,0,0.4));
    transform: translateY(-1px);
}
#nav.scrolled .nav-logo-img { height: 44px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
    font-family: "Josefin Slab", serif; font-size: 0.9rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); position: relative; transition: color 0.25s;
}
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 0; height: 1px; background: var(--orange); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, #fff8f0 0%, #ffecd4 50%, #fff3e0 100%);
    padding: 72px 5vw 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(217,112,0,0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: driftDots 30s linear infinite;
}
@keyframes driftDots { from { background-position: 0 0; } to { background-position: 60px 60px; } }
.hero-glow {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(217,112,0,0.1) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    max-width: 900px; width: 100%;
}
.hero-logo-top {
    width: clamp(280px, 38vw, 480px);
    height: auto;
    margin-bottom: 32px;
    filter: drop-shadow(0 4px 24px rgba(120,50,0,0.2));
    animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hero-eyebrow {
    font-family: "Josefin Slab", serif;
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--orange-text); margin-bottom: 16px; display: block;
}
.hero-title {
    font-family: "Black Han Sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    color: var(--dark); line-height: 1.05; margin-bottom: 12px;
}
.hero-title span { color: var(--orange); }
.hero-title-sub {
    font-family: "Josefin Slab", serif;
    font-size: clamp(1rem, 2.2vw, 1.6rem); font-weight: 300;
    color: var(--muted); letter-spacing: 0.08em; margin-bottom: 20px; display: block;
}
.hero-subtitle {
    font-family: "Josefin Slab", serif;
    font-size: clamp(0.9rem, 1.6vw, 1.1rem); font-weight: 300;
    color: var(--faint); max-width: 500px; margin: 0 auto 36px;
    letter-spacing: 0.04em; line-height: 1.75;
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 44px;
    background: linear-gradient(135deg, var(--orange), #b85e00);
    color: #fff;
    font-family: "Black Han Sans", sans-serif; font-size: 1rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(139,58,0,0.25);
}
.hero-cta::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.15);
    transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,58,0,0.35); }
.hero-cta:hover::before { transform: scaleX(1); }
.hero-scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0.5; animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-hint span {
    font-family: "Josefin Slab", serif; font-size: 0.75rem;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(180deg, var(--orange), transparent); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION BASE ── */
.section { padding: 120px 5vw; position: relative; }
.section-header { text-align: center; margin-bottom: 80px; }
.section-label {
    font-family: "Josefin Slab", serif; font-size: 0.8rem;
    letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--orange-text); display: block; margin-bottom: 16px;
}
.section-title {
    font-family: "Black Han Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--dark); line-height: 1.1;
}
.section-title span { color: var(--orange); }
.section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent);
    margin: 24px auto 0;
}
.section-desc {
    font-family: "Josefin Slab", serif; font-size: 1.1rem; font-weight: 300;
    color: var(--muted); max-width: 560px; margin: 20px auto 0;
    letter-spacing: 0.04em; line-height: 1.7;
}

/* ── ABOUT ── */
#about { background: var(--bg); }
.about-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: "Black Han Sans", sans-serif;
    font-size: clamp(5rem, 18vw, 18rem);
    color: rgba(139,58,0,0.04); white-space: nowrap;
    pointer-events: none; user-select: none;
}
.about-stats {
    display: flex; gap: 60px; justify-content: center;
    margin-top: 80px; position: relative; z-index: 2; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
    font-family: "Black Han Sans", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--orange); display: block; line-height: 1;
}
.stat-label {
    font-family: "Josefin Slab", serif; font-size: 0.85rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--faint); margin-top: 8px; display: block;
}

/* ── SERVICES (programs) ── */
#services { background: var(--bg2); overflow: hidden; }
.programs-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(217,112,0,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(217,112,0,0.05) 1px, transparent 1px);
    background-size: 50px 50px; pointer-events: none;
}
.programs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 2;
}
.prog-card {
    background: var(--bg);
    border: 1px solid rgba(217,112,0,0.15);
    padding: 36px 32px; position: relative; overflow: hidden;
    transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.prog-card::after { pointer-events: none;
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(217,112,0,0.06), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.prog-card:hover {
    border-color: rgba(217,112,0,0.4); transform: translateY(-6px);
    background: var(--bg2);
    box-shadow: 0 12px 36px rgba(139,58,0,0.08);
}
.prog-card:hover::after { opacity: 1; }
.prog-card-badge {
    display: inline-block; padding: 4px 12px;
    font-family: "Josefin Slab", serif; font-size: 0.75rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    margin-bottom: 20px; border: 1px solid;
    color: var(--orange-text) !important; border-color: rgba(217,112,0,0.35) !important;
}
.prog-card h3 {
    font-family: "Black Han Sans", sans-serif; font-size: 1.15rem;
    color: var(--dark); margin-bottom: 12px; letter-spacing: 0.04em; position: relative; z-index: 1;
}
.prog-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; }
.prog-card-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
    font-family: "Josefin Slab", serif; font-size: 0.8rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--orange-text); position: relative; z-index: 1;
    transition: gap 0.2s;
}
.prog-card:hover .prog-card-link { gap: 10px; }

/* Key stat */
.key-stat-block {
    background: linear-gradient(135deg, rgba(217,112,0,0.1), rgba(255,236,212,0.8));
    border: 1px solid rgba(217,112,0,0.2);
    max-width: 700px; margin: 60px auto 0;
    padding: 48px 40px; text-align: center; position: relative; z-index: 2;
}
.key-stat-num {
    font-family: "Black Han Sans", sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    color: var(--orange); line-height: 1; display: block;
}
.key-stat-label {
    font-family: "Josefin Slab", serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--dark); margin-top: 12px; display: block;
}
.key-stat-sub { font-size: 0.9rem; color: var(--muted); margin-top: 10px; line-height: 1.7; }

/* Card link */
.card-link { position: relative; z-index: 2;
    color: var(--orange-text);
    text-decoration: none; font-weight: 600; font-size: 0.9em;
    border-bottom: 1px solid rgba(217,112,0,0.3); transition: border-color .3s;
}
.card-link:hover { border-color: var(--orange); }

/* ── WHY US ── */
#why { background: var(--bg3); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; max-width: 1000px;
    margin: 0 auto; position: relative; z-index: 2;
}
.why-card {
    background: var(--bg);
    border: 1px solid rgba(217,112,0,0.12);
    padding: 28px; display: flex; gap: 16px; align-items: flex-start;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    border-color: rgba(217,112,0,0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(139,58,0,0.07);
}
.why-icon {
    flex-shrink: 0; width: 36px; height: 36px;
    background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: "Black Han Sans", sans-serif; font-size: 0.9rem;
}
.why-body h4 {
    font-family: "Black Han Sans", sans-serif; font-size: 0.95rem;
    color: var(--dark); margin-bottom: 6px; letter-spacing: 0.04em;
}
.why-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }

/* ── QUOTE ── */
#quote-section { background: var(--bg); padding: 80px 5vw; }
.quote-block {
    max-width: 760px; margin: 0 auto;
    border-left: 3px solid var(--orange);
    padding: 32px 40px;
    background: rgba(217,112,0,0.05);
    position: relative;
}
.quote-block::before {
    content: '\201C';
    font-family: "Black Han Sans", sans-serif; font-size: 8rem;
    color: rgba(217,112,0,0.1); position: absolute;
    top: -20px; left: 20px; line-height: 1;
}
.quote-text {
    font-family: "Josefin Slab", serif;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-style: italic; font-weight: 300;
    color: var(--text); line-height: 1.7; position: relative; z-index: 1;
}
.quote-author {
    font-family: "Black Han Sans", sans-serif; font-size: 0.85rem;
    color: var(--orange-text); margin-top: 20px; letter-spacing: 0.1em; display: block;
}

/* ── COMPARISON ── */
#comparison { background: var(--bg2); }
.comp-table-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; position: relative; z-index: 2; }
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table thead th {
    padding: 16px 20px;
    font-family: "Black Han Sans", sans-serif; font-size: 0.85rem;
    letter-spacing: 0.1em; text-transform: uppercase; text-align: center;
    border-bottom: 2px solid rgba(217,112,0,0.2);
    color: var(--muted);
}
.comp-table thead th:first-child { text-align: left; color: var(--faint); }
.comp-table thead th:last-child { color: var(--orange-text); }
.comp-table tbody td {
    padding: 14px 20px; font-size: 0.88rem;
    color: var(--muted); text-align: center;
    border-bottom: 1px solid rgba(217,112,0,0.08);
}
.comp-table tbody td:first-child { text-align: left; color: var(--faint); font-size: 0.82rem; letter-spacing: 0.04em; }
.comp-table tbody td:last-child { color: var(--orange-text); font-family: "Black Han Sans", sans-serif; font-size: 0.82rem; letter-spacing: 0.05em; }
.comp-table tbody tr:nth-child(odd) td { background: rgba(255,200,120,0.07); }
.comp-table tbody tr:hover td { background: rgba(217,112,0,0.06); }
.comp-note {
    font-size: 0.82rem; color: var(--faint); font-style: italic;
    margin-top: 20px; text-align: center; max-width: 700px;
    margin-left: auto; margin-right: auto; line-height: 1.7; position: relative; z-index: 2;
}

/* ── ARTICLES ── */
#articles { background: var(--bg3); }
.articles-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; position: relative; z-index: 2; }
.article-item {
    display: grid; grid-template-columns: 80px 1fr auto;
    align-items: center; gap: 32px; padding: 32px;
    background: var(--bg); border: 1px solid rgba(217,112,0,0.12);
    cursor: pointer; position: relative; overflow: hidden;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    text-decoration: none;
}
.article-item::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
    background: linear-gradient(90deg, rgba(217,112,0,0.08), transparent);
    transition: width 0.4s ease;
}
.article-item:hover {
    background: var(--bg2); border-color: rgba(217,112,0,0.3);
    transform: translateX(6px);
}
.article-item:hover::before { width: 40%; }
.article-num {
    font-family: "Black Han Sans", sans-serif; font-size: 2.5rem;
    color: rgba(217,112,0,0.2); line-height: 1; text-align: center;
    position: relative; z-index: 1; transition: color 0.3s;
}
.article-item:hover .article-num { color: rgba(217,112,0,0.5); }
.article-body { position: relative; z-index: 1; }
.article-tag {
    font-family: "Josefin Slab", serif; font-size: 0.75rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--orange-text); margin-bottom: 8px; display: block;
}
.article-title {
    font-family: "Black Han Sans", sans-serif; font-size: 1.1rem;
    color: var(--dark); letter-spacing: 0.04em; margin-bottom: 6px;
}
.article-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.article-arrow {
    font-size: 1.5rem; color: rgba(139,58,0,0.2); position: relative; z-index: 1;
    transition: color 0.3s, transform 0.3s;
}
.article-item:hover .article-arrow { color: var(--orange); transform: translateX(4px); }

/* ── CONTACT ── */
#contact {
    background: linear-gradient(160deg, var(--bg2) 0%, var(--bg3) 100%);
    padding: 120px 5vw 80px; text-align: center; position: relative; overflow: hidden;
}
.contact-glow {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(217,112,0,0.1) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}
.contact-logo {
    width: clamp(100px, 14vw, 150px); margin: 0 auto 36px; display: block;
    position: relative; z-index: 2;
    filter: drop-shadow(0 2px 16px rgba(139,58,0,0.2));
}
.contact-title {
    font-family: "Black Han Sans", sans-serif;
    font-size: clamp(2rem, 5vw, 4rem); color: var(--dark);
    margin-bottom: 16px; position: relative; z-index: 2;
}
.contact-title span { color: var(--orange); }
.contact-sub {
    font-family: "Josefin Slab", serif; font-size: 1.1rem; font-weight: 300;
    color: var(--muted); margin-bottom: 48px; letter-spacing: 0.05em; position: relative; z-index: 2;
}
.contact-links {
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
    margin-bottom: 80px; position: relative; z-index: 2;
}
.contact-link {
    padding: 16px 40px; font-family: "Black Han Sans", sans-serif;
    font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: transform 0.25s, box-shadow 0.25s;
}
.contact-link.primary {
    background: linear-gradient(135deg, var(--orange), #b85e00);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139,58,0,0.25);
}
.contact-link.primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(139,58,0,0.35); }
.contact-link.secondary {
    border: 1px solid rgba(139,58,0,0.3); color: var(--brown);
}
.contact-link.secondary:hover { border-color: var(--orange); color: var(--orange-text); }

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(139,58,0,0.12);
    padding: 32px 5vw; display: flex; align-items: center;
    justify-content: space-between; position: relative; z-index: 2;
}
.footer-logo-img {
    height: 44px; opacity: 0.65; transition: opacity 0.3s;
    filter: drop-shadow(0 1px 4px rgba(139,58,0,0.15));
}
.footer-logo-img:hover { opacity: 1; }
.footer-copy { font-size: 0.8rem; color: var(--faint); letter-spacing: 0.1em; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; } .delay-6 { transition-delay: 0.6s; }

/* ── MOBILE ── */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--dark); transition: all 0.3s; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(253,246,238,0.98); z-index: 200;
    flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    backdrop-filter: blur(12px);
}
.mobile-nav.open { display: flex; }
.mobile-nav-logo {
    width: 120px; margin-bottom: 16px;
    filter: drop-shadow(0 2px 12px rgba(139,58,0,0.2));
}
.mobile-nav a {
    font-family: "Black Han Sans", sans-serif; font-size: 2rem;
    color: var(--dark); letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: var(--muted); cursor: pointer; }

@media (max-width: 900px) {
    .nav-links { display: none; } .burger { display: flex; }
    .programs-grid { grid-template-columns: 1fr 1fr; }
    .article-item { grid-template-columns: 60px 1fr auto; gap: 16px; padding: 24px 20px; }
}
@media (max-width: 700px) {
    .why-grid { grid-template-columns: 1fr; }
    .quote-block { padding: 24px 20px; }
    .comp-table thead th, .comp-table tbody td { padding: 10px 10px; font-size: 0.78rem; }
}
@media (max-width: 600px) {
    .programs-grid { grid-template-columns: 1fr; }
    .article-item { grid-template-columns: 1fr; }
    .article-num { display: none; }
}

/* -- ACCESSIBILITY -- */
:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--dark);
    color: #fff;
    font-family: "Quicksand", sans-serif;
    font-size: 0.85rem;
    text-decoration: none;
}
.skip-link:focus {
    top: 8px;
}
