@font-face {
    font-family: "Instrument Sans";
    src: url("../fonts/instrument-sans.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url("../fonts/newsreader-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
}

@font-face {
    font-family: "Newsreader";
    src: url("../fonts/newsreader-italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400 600;
    font-display: swap;
}

:root {
    --ink: #2d2126;
    --muted: #5c4e54;
    --quiet: #8a787f;
    --plum: #2a1a22;
    --accent: #a02955;
    --accent-dark: #7f2044;
    --pink: #e3a8c2;
    --rose: #f4edea;
    --paper: #fbf9f7;
    --white: #ffffff;
    --line: #e6dbd6;
    --shell: 1220px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Instrument Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, p, blockquote { margin-top: 0; }
h1, h2, h3, blockquote { font-family: "Newsreader", Georgia, serif; font-weight: 500; letter-spacing: 0; }

.shell { width: min(calc(100% - 10vw), var(--shell)); margin-inline: auto; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 10px;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--white);
    color: var(--ink);
    padding: 10px 14px;
    border: 2px solid var(--accent);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }

.utility-bar { background: var(--plum); color: #c9aebc; font-size: 12.5px; }
.utility-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-contact { display: flex; align-items: center; gap: 26px; }
.utility-bar a { color: #e8d8e0; text-decoration: none; }
.utility-bar a:hover { color: var(--white); }
.utility-motto { font-family: "Newsreader", Georgia, serif; font-style: italic; font-size: 13.5px; white-space: nowrap; }

.nav-bar { position: relative; z-index: 100; background: var(--white); border-bottom: 1px solid var(--line); }
.nav-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; flex: 0 0 auto; }
.brand img { width: 52px; height: 52px; display: block; object-fit: cover; border: 1px solid var(--line); border-radius: 6px; }
.brand span { display: flex; flex-direction: column; min-width: 0; }
.brand strong { font-family: "Newsreader", Georgia, serif; font-size: 21px; line-height: 1.1; font-weight: 600; }
.brand small { margin-top: 3px; color: var(--quiet); font-size: 10.5px; line-height: 1.2; text-transform: uppercase; font-weight: 600; letter-spacing: 0; }
.site-navigation { display: flex; align-items: center; gap: 25px; }
.site-navigation > a:not(.button) { position: relative; padding: 10px 1px; color: var(--ink); font-size: 13.5px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.site-navigation > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 2px; background: transparent; }
.site-navigation > a:hover, .site-navigation > a[aria-current="page"] { color: var(--accent); }
.site-navigation > a[aria-current="page"]::after { background: var(--accent); }
.menu-toggle { display: none; min-width: 76px; min-height: 44px; background: var(--white); border: 1px solid #d9cbcf; border-radius: 3px; color: var(--ink); cursor: pointer; font-weight: 600; }

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    border: 1px solid var(--accent);
    border-radius: 3px;
    background: var(--accent);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 13.5px; }
.button-outline { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.button-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button-light { background: var(--white); border-color: var(--white); color: var(--ink); }
.button-light:hover { background: #f3dce7; border-color: #f3dce7; color: var(--ink); }
.button-dark-outline { background: transparent; border-color: #cbbdc2; color: var(--ink); }
.button-dark-outline:hover { background: var(--rose); border-color: var(--accent); color: var(--accent); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }

.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--accent); font-size: 12px; line-height: 1.4; text-transform: uppercase; font-weight: 600; letter-spacing: 0; }
.eyebrow > span { width: 30px; height: 1px; flex: 0 0 auto; background: currentColor; }
.eyebrow-light { color: var(--pink); }

.home-hero { position: relative; min-height: clamp(560px, 78vh, 820px); display: flex; align-items: flex-end; overflow: hidden; background: var(--plum); }
.home-hero > img, .page-hero > img, .image-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-hero-shade { position: absolute; inset: 0; background: linear-gradient(78deg, rgba(26,12,20,.86) 8%, rgba(26,12,20,.44) 58%, rgba(26,12,20,.18)); }
.home-hero-content { position: relative; padding-block: 104px 88px; color: var(--white); }
.home-hero h1 { max-width: 13ch; margin: 22px 0; font-size: clamp(44px, 5.4vw, 76px); line-height: 1.04; }
.hero-summary { max-width: 54ch; margin-bottom: 14px; color: rgba(255,255,255,.9); font-size: clamp(16px, 1.4vw, 19px); }
.hero-motto { margin-bottom: 26px; color: var(--pink); font-family: "Newsreader", Georgia, serif; font-size: 17px; font-style: italic; }

.fact-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.fact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-right: 1px solid var(--line); }
.fact { min-height: 112px; display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 24px; border-left: 1px solid var(--line); }
.fact span, .card-label { color: var(--quiet); font-size: 11.5px; text-transform: uppercase; font-weight: 600; letter-spacing: 0; }
.fact strong { font-family: "Newsreader", Georgia, serif; font-size: 21px; font-weight: 500; line-height: 1.25; }

.section { padding-block: 110px; }
.section-paper { background: var(--paper); }
.section-rose { background: var(--rose); border-block: 1px solid var(--line); }
.section-stack { display: flex; flex-direction: column; gap: 54px; }
.section-heading { max-width: 650px; }
.section-heading h2, .prose-block h2, .compact-cta h2 { margin: 16px 0 14px; font-size: clamp(32px, 3.5vw, 46px); line-height: 1.12; }
.section-heading > p, .section-heading > div > p, .compact-cta p { margin-bottom: 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.section-heading > p + p { margin-top: 16px; }
.heading-with-link { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.heading-with-link > div { max-width: 650px; }
.text-link { width: fit-content; color: var(--accent); font-size: 14px; font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--pink); }
.text-link:hover { color: var(--accent-dark); }

.card-grid { display: grid; gap: 26px; }
.facility-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.programme-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.image-card { min-width: 0; overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 4px; transition: transform .22s ease, box-shadow .22s ease; }
.image-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(45,33,38,.1); }
.image-card > img { width: 100%; height: 220px; display: block; object-fit: cover; }
.image-card > div { padding: 24px 26px 28px; }
.image-card h3 { margin-bottom: 7px; font-size: 23px; line-height: 1.2; }
.image-card p { margin-bottom: 0; color: var(--muted); font-size: 15px; }
.programme-card { display: flex; flex-direction: column; }
.programme-card > img { height: 240px; }
.programme-card > div { flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.programme-card h3 { margin: 0; font-size: 26px; }
.programme-card p { flex: 1; }
.programme-card .card-label { color: var(--accent); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.testimonial { display: flex; flex-direction: column; gap: 18px; padding-top: 28px; border-top: 1px solid var(--line); }
.stars { color: var(--accent); font-size: 13px; letter-spacing: 0; }
.testimonial blockquote { margin-bottom: 0; color: var(--ink); font-size: 19px; font-style: italic; line-height: 1.6; }
.testimonial-person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-person > span { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; background: #f3dce7; color: var(--accent); font-size: 13px; font-weight: 600; }
.testimonial-person p { display: flex; flex-direction: column; margin: 0; }
.testimonial-person strong { font-size: 14.5px; }
.testimonial-person small { color: var(--quiet); font-size: 13px; }

.image-cta { position: relative; min-height: 410px; display: grid; place-items: center; overflow: hidden; color: var(--white); text-align: center; }
.image-cta-shade { position: absolute; inset: 0; background: rgba(30,15,24,.83); }
.image-cta-content { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-block: 90px; }
.image-cta h2 { max-width: 16ch; margin: 0; font-size: clamp(34px, 3.8vw, 50px); line-height: 1.1; }
.image-cta p { max-width: 48ch; margin: 0; color: rgba(255,255,255,.86); font-size: 17px; }

.page-hero { position: relative; min-height: 315px; display: flex; align-items: flex-end; overflow: hidden; background: var(--plum); color: var(--white); }
.page-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,15,24,.82), rgba(30,15,24,.48)); }
.page-hero-content { position: relative; padding-block: 80px 64px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; color: rgba(255,255,255,.8); font-size: 13px; }
.breadcrumbs a { text-decoration: none; }
.page-hero h1 { max-width: 14ch; margin: 18px 0 0; font-size: clamp(42px, 4.8vw, 62px); line-height: 1.05; }
.page-hero p { max-width: 54ch; margin: 14px 0 0; color: rgba(255,255,255,.85); font-size: 17px; }

.split { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.35fr); gap: 64px; }
.split-top { align-items: start; }
.split-center { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.leader-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.leader-card img { width: 100%; height: 360px; display: block; object-fit: cover; object-position: top; }
.leader-card > div { padding: 22px 24px 26px; }
.leader-card h2 { margin: 0; font-size: 21px; }
.leader-card span, .signature span, .leader-quote p span { color: var(--accent); font-size: 12px; text-transform: uppercase; font-weight: 600; }
.prose-block > p { margin-bottom: 18px; color: var(--muted); font-size: 16.5px; line-height: 1.75; }
.prose-block blockquote { margin: 28px 0; padding-left: 25px; border-left: 2px solid var(--pink); color: var(--accent); font-size: clamp(24px, 2.4vw, 30px); font-style: italic; line-height: 1.35; }
.signature { display: flex; flex-direction: column; gap: 3px; padding-top: 20px; border-top: 1px solid var(--line); }
.signature strong { font-family: "Newsreader", Georgia, serif; font-size: 22px; font-style: italic; font-weight: 500; }
.feature-image { width: 100%; height: clamp(320px, 34vw, 460px); display: block; object-fit: cover; border: 1px solid var(--line); border-radius: 4px; }
.leader-quote { display: flex; align-items: center; gap: 28px; padding: 28px 32px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.leader-quote img { width: 76px; height: 76px; flex: 0 0 76px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; object-position: top; }
.leader-quote blockquote { margin-bottom: 6px; font-size: 18px; font-style: italic; line-height: 1.55; }
.leader-quote p { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 12px; margin: 0; }
.stats-band { padding-block: 92px; background: var(--plum); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; margin-top: 48px; }
.stats-grid > div { display: flex; flex-direction: column; gap: 8px; padding-left: 25px; border-left: 1px solid rgba(245,234,239,.2); }
.stats-grid strong { font-family: "Newsreader", Georgia, serif; font-size: clamp(44px, 4.4vw, 60px); font-weight: 500; line-height: 1; }
.stats-grid span { color: #c9aebc; font-size: 13px; text-transform: uppercase; font-weight: 600; }
.compact-cta { text-align: center; }
.compact-cta .shell { max-width: 760px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.compact-cta h2, .compact-cta p { margin: 0; }

.activity-list { display: flex; flex-direction: column; gap: 78px; }
.activity-row { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); align-items: center; gap: 56px; }
.activity-reverse .activity-copy { order: 2; }
.activity-reverse .activity-gallery { order: 1; }
.activity-copy > span { color: var(--accent); font-family: "Newsreader", Georgia, serif; font-size: 15px; font-style: italic; }
.activity-copy h3 { margin: 10px 0 12px; font-size: clamp(26px, 2.6vw, 34px); }
.activity-copy p { margin: 0; color: var(--muted); line-height: 1.72; }
.activity-gallery { height: 386px; display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 16px; }
.activity-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 4px; }
.activity-gallery img:first-child { grid-row: 1 / 3; }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.news-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.news-card > img { width: 100%; height: 210px; display: block; object-fit: cover; }
.news-card > div { padding: 26px 28px 30px; }
.news-card time { color: var(--quiet); font-size: 12px; text-transform: uppercase; font-weight: 600; }
.news-card h3 { margin: 9px 0 8px; font-size: 24px; }
.news-card p { margin: 0; color: var(--muted); font-size: 15px; }
.term-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.term-card { padding: 30px 32px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.term-card h3 { margin-bottom: 18px; color: var(--accent); font-size: 26px; }
.term-card dl { margin: 0; }
.term-card dl > div { display: grid; grid-template-columns: minmax(70px, .65fr) minmax(0, 1.35fr); gap: 14px; padding: 13px 0; border-top: 1px solid #efe6e2; font-size: 14.5px; }
.term-card dt { color: var(--quiet); }
.term-card dd { margin: 0; font-weight: 500; text-align: right; }

.contact-paths, .contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.contact-paths a, .contact-cards a { min-width: 0; display: flex; flex-direction: column; gap: 8px; padding: 28px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.contact-paths a:hover, .contact-cards a:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(45,33,38,.09); }
.contact-paths span, .contact-cards span { color: var(--accent); font-size: 12px; text-transform: uppercase; font-weight: 600; }
.contact-paths strong, .contact-cards strong { overflow-wrap: anywhere; font-family: "Newsreader", Georgia, serif; font-size: 22px; font-weight: 500; }
.contact-paths small, .contact-cards small { color: var(--muted); font-size: 14px; }
.steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 56px; }
.steps-grid article { display: flex; gap: 24px; padding-top: 25px; border-top: 1px solid var(--line); }
.steps-grid article > span { color: #d9a9bf; font-family: "Newsreader", Georgia, serif; font-size: 34px; font-style: italic; line-height: 1; }
.steps-grid h3 { margin-bottom: 7px; font-size: 22px; }
.steps-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.requirements { padding: 38px 42px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.requirements h3 { margin-bottom: 22px; font-size: 26px; }
.requirements ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 38px; margin: 0; padding: 0; list-style: none; }
.requirements li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14.5px; }
.requirements li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 600; }
.download-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.download-grid a { display: flex; flex-direction: column; gap: 9px; padding: 29px 31px; background: var(--white); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; }
.download-grid span { color: var(--quiet); font-size: 11.5px; text-transform: uppercase; font-weight: 600; }
.download-grid strong { font-family: "Newsreader", Georgia, serif; font-size: 22px; font-weight: 500; }
.download-grid small { margin-top: 6px; color: var(--accent); font-weight: 600; }
.faq-wrap { max-width: 880px; }
.faq-list { margin-top: 42px; border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list h3 { margin: 0; }
.faq-list button { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 4px; border: 0; background: transparent; color: var(--ink); cursor: pointer; text-align: left; }
.faq-list button span:first-child { font-family: "Newsreader", Georgia, serif; font-size: 20px; font-weight: 500; }
.faq-list button span:last-child { flex: 0 0 auto; color: var(--accent); font-family: "Newsreader", Georgia, serif; font-size: 26px; }
.faq-answer p { margin: 0; padding: 0 44px 25px 4px; color: var(--muted); font-size: 15.5px; }

.contact-whatsapp { border-top: 3px solid #1da851 !important; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); gap: 56px; align-items: stretch; }
.contact-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.contact-copy h2 { margin: 16px 0; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.15; }
.contact-copy > p { color: var(--muted); font-size: 16.5px; }
.contact-copy address { display: flex; flex-direction: column; gap: 5px; margin: 10px 0 28px; color: var(--muted); font-style: normal; }
.contact-copy address strong { color: var(--ink); font-family: "Newsreader", Georgia, serif; font-size: 20px; font-weight: 500; }
.map-panel { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.map-panel iframe { width: 100%; height: 390px; display: block; border: 0; }
.map-panel > div { display: flex; flex-direction: column; gap: 5px; padding: 24px 28px 28px; }
.map-panel strong { font-family: "Newsreader", Georgia, serif; font-size: 21px; font-weight: 500; }
.map-panel span { color: var(--muted); font-size: 14.5px; }

.legal-main { min-height: 60vh; padding-block: 72px 110px; }
.legal-main .breadcrumbs { color: var(--quiet); }
.legal-main h1 { margin: 28px 0 36px; font-size: clamp(40px, 5vw, 62px); }
.legal-content { max-width: 820px; color: var(--muted); }
.legal-content h2, .legal-content h3 { color: var(--ink); }
.legal-content h2 { margin-top: 42px; font-size: 30px; }
.legal-content h3 { margin-top: 30px; font-size: 23px; }
.legal-content a { color: var(--accent); }
.not-found { min-height: 60vh; display: grid; align-items: center; padding-block: 90px; text-align: center; }
.not-found .shell { display: flex; flex-direction: column; align-items: center; }
.not-found h1 { margin: 12px 0; font-size: clamp(42px, 6vw, 72px); }
.not-found p { color: var(--muted); }

.site-footer { position: relative; background: var(--plum); color: #c9aebc; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 54px; padding-block: 80px 54px; }
.brand-footer { color: var(--white); }
.brand-footer small { color: #9d8791; }
.footer-brand > p { max-width: 360px; margin: 20px 0 14px; font-size: 15px; }
.footer-brand > em { color: #e3c4d2; font-family: "Newsreader", Georgia, serif; font-size: 16px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h2 { margin-bottom: 4px; color: #9d8791; font-family: "Instrument Sans", Arial, sans-serif; font-size: 12px; text-transform: uppercase; font-weight: 600; }
.footer-column a { color: #e8d8e0; font-size: 14.5px; text-decoration: none; overflow-wrap: anywhere; }
.footer-column a:hover { color: var(--white); }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 4px; }
.footer-social a { font-size: 14px; }
.footer-column .footer-muted { margin-top: 3px; color: #9d8791; font-size: 13.5px; }
.footer-bottom { border-top: 1px solid rgba(245,234,239,.14); }
.footer-bottom .shell { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; font-size: 13px; }
.footer-bottom span:last-child { display: flex; gap: 24px; }
.footer-bottom a { color: #c9aebc; text-decoration: none; }
.whatsapp-button { position: fixed; z-index: 90; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: #1da851; color: var(--white); box-shadow: 0 12px 28px rgba(20,60,35,.35); text-decoration: none; }
.whatsapp-button:hover { background: #178a43; }
.whatsapp-button img { width: 27px; height: 27px; }

@media (max-width: 980px) {
    .site-navigation { gap: 16px; }
    .facility-grid, .programme-grid, .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .programme-grid > :last-child, .news-grid > :last-child { grid-column: auto; }
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split, .split-center { gap: 42px; }
    .activity-row { grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr); gap: 36px; }
    .term-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); gap: 38px; }
}

@media (max-width: 879px) {
    .utility-motto { display: none; }
    .nav-inner { min-height: 76px; }
    .menu-toggle { display: inline-grid; place-items: center; }
    .site-navigation { position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 110px); overflow-y: auto; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 8px 5vw 26px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 22px 38px rgba(45,33,38,.12); }
    .site-navigation.is-open { display: flex; }
    .site-navigation > a:not(.button) { min-height: 52px; display: flex; align-items: center; padding: 12px 2px; border-bottom: 1px solid #efe6e2; font-size: 16px; }
    .site-navigation > a:not(.button)::after { display: none; }
    .site-navigation .button { margin-top: 18px; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-paths, .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .shell { width: min(calc(100% - 40px), var(--shell)); }
    .utility-inner { min-height: 34px; }
    .utility-email { display: none; }
    .brand { gap: 10px; }
    .brand img { width: 46px; height: 46px; }
    .brand strong { font-size: 19px; }
    .brand small { font-size: 9.5px; }
    .section { padding-block: 76px; }
    .home-hero { min-height: 620px; }
    .home-hero-content { padding-block: 90px 76px; }
    .home-hero h1 { max-width: 11ch; font-size: 48px; }
    .fact-grid, .facility-grid, .programme-grid, .testimonial-grid, .news-grid, .term-grid, .steps-grid, .requirements ul, .download-grid { grid-template-columns: 1fr; }
    .fact-grid { border-right: 0; }
    .fact { min-height: 96px; border-right: 1px solid var(--line); }
    .heading-with-link { align-items: flex-start; flex-direction: column; }
    .image-card > img, .programme-card > img { height: 230px; }
    .page-hero { min-height: 300px; }
    .page-hero-content { padding-block: 70px 54px; }
    .split, .split-center { grid-template-columns: 1fr; }
    .leader-card { max-width: 420px; }
    .leader-quote { align-items: flex-start; }
    .stats-grid { gap: 30px 16px; }
    .activity-row { grid-template-columns: 1fr; gap: 28px; }
    .activity-reverse .activity-copy, .activity-reverse .activity-gallery { order: initial; }
    .activity-gallery { height: 330px; }
    .requirements { padding: 30px 26px; }
    .contact-layout { gap: 36px; }
    .map-panel iframe { height: 330px; }
    .footer-grid { grid-template-columns: 1fr; padding-block: 66px 42px; }
    .footer-bottom .shell { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 20px; }
    .whatsapp-button { right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); width: 50px; height: 50px; }
}

@media (max-width: 430px) {
    .shell { width: calc(100% - 32px); }
    .brand small { max-width: 136px; white-space: normal; }
    .menu-toggle { min-width: 66px; }
    .home-hero h1 { font-size: 43px; }
    .button-row { width: 100%; }
    .button-row .button { flex: 1 1 100%; }
    .activity-gallery { height: 290px; grid-template-columns: 1.25fr 1fr; gap: 10px; }
    .leader-quote { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid > div { min-height: 88px; }
    .term-card { padding: 27px 24px; }
    .contact-cards strong { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
