:root {
    --ink: #140f0f;
    --ink-soft: #3d3232;
    --muted: #6f6363;
    --paper: #faf7f5;
    --white: #ffffff;
    --line: rgba(20, 15, 15, 0.1);
    --radius: 22px;
    --shadow: 0 24px 60px rgba(20, 15, 15, 0.1);
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --header-h: 84px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(var(--brand-rgb), 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(var(--brand-rgb), 0.08), transparent 45%),
        linear-gradient(180deg, #fffdfc 0%, var(--paper) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }

/* Progress */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--brand), var(--brand-accent));
    transform-origin: left;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--header-h);
    backdrop-filter: blur(18px);
    background: rgba(255, 253, 252, 0.78);
    border-bottom: 1px solid transparent;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(20, 15, 15, 0.04);
    background: rgba(255, 253, 252, 0.92);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: var(--header-h);
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(145deg, var(--brand-secondary), var(--brand));
    box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.28);
    flex-shrink: 0;
}
.brand-copy strong {
    display: block;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.brand-copy small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}
.site-nav a {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.92rem;
    position: relative;
    transition: color 0.25s ease;
}
.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.site-nav a:hover,
.site-nav a.active { color: var(--brand); }
.site-nav a.active::after,
.site-nav a:hover::after { transform: scaleX(1); }
.nav-cta {
    padding: 0.65rem 1.1rem !important;
    border-radius: 999px;
    background: var(--brand);
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 10px 24px rgba(var(--brand-rgb), 0.25);
    transition: transform 0.25s var(--ease), filter 0.25s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); filter: brightness(1.05); color: #fff !important; }
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: 0.25s ease;
}

/* Hero — full bleed carousel */
.hero-bleed {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
    color: #fff;
    background: #120808;
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s var(--ease), transform 6.5s linear;
}
.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.hero-slide.is-leaving {
    opacity: 0;
    z-index: 2;
}
.hero-slide img,
.hero-slide-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-slide-fallback {
    background: linear-gradient(160deg, rgba(var(--brand-rgb), 0.94), #120808);
}
.hero-slide figcaption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 3;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease 0.25s, transform 0.45s ease 0.25s;
}
.hero-slide.is-active figcaption {
    opacity: 0.9;
    transform: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(18, 8, 8, 0.82) 8%, rgba(var(--brand-rgb), 0.55) 48%, rgba(18, 8, 8, 0.35) 100%),
        linear-gradient(to top, rgba(10, 5, 5, 0.55), transparent 42%);
}
.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
}
.hero-carousel-controls {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
}
.hero-nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.hero-nav:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}
.hero-dots {
    display: flex;
    gap: 0.45rem;
}
.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, width 0.25s ease;
}
.hero-dot.is-active {
    background: #fff;
    width: 28px;
    border-radius: 999px;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.28;
    animation: floatOrb 10s ease-in-out infinite;
}
.hero-orb-a {
    width: 420px;
    height: 420px;
    top: -80px;
    right: 8%;
    background: color-mix(in srgb, var(--brand-accent) 70%, white);
}
.hero-orb-b {
    width: 280px;
    height: 280px;
    bottom: 10%;
    left: 5%;
    background: color-mix(in srgb, var(--brand-secondary) 50%, #000);
    animation-delay: -4s;
}
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    opacity: 0.35;
}
.hero-brand {
    margin: 0 0 1.25rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
}
.hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(3.2rem, 8vw, 6.4rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: 12ch;
}
.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: color-mix(in srgb, white 82%, var(--brand-accent));
}
.hero-lead {
    margin: 1.5rem 0 0;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.65;
    max-width: 34rem;
    opacity: 0.88;
}
.hero-scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.7;
}
.hero-scroll i {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.25rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}
.hero-bleed .btn-primary {
    background: #fff;
    color: var(--brand);
}
.page-hero .btn-primary,
.form-shell .btn-primary,
.section .btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 30px rgba(var(--brand-rgb), 0.22);
}
.btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.page-hero .btn-ghost,
.section .btn-ghost,
.programmes-section .btn-ghost {
    border-color: var(--line);
    color: var(--ink);
}
.page-hero .btn-ghost:hover,
.section .btn-ghost:hover,
.programmes-section .btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: transparent;
}
.btn-light {
    background: #fff;
    color: var(--brand);
}
.btn-ghost-light {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* Sections */
.section { padding: 5.5rem 0; }
.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,0.75); }
.section-head h2,
.about-strip h2,
.cta-band h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    line-height: 1.08;
    font-weight: 600;
}
.section-head p { color: var(--muted); max-width: 36rem; line-height: 1.6; }
.section-head.split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Schools */
.school-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.school-tile {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    display: block;
    isolation: isolate;
}
.school-tile-bg {
    position: absolute;
    inset: 0;
    background-color: color-mix(in srgb, var(--tile-accent) 80%, #000);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 0.7s var(--ease);
    z-index: -1;
}
.school-tile-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.78) 100%),
        linear-gradient(160deg, color-mix(in srgb, var(--tile-accent) 45%, transparent), transparent 60%);
}
.school-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 40%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
    opacity: 0.7;
    z-index: -1;
}
.school-tile:hover .school-tile-bg { transform: scale(1.06); }
.school-tile-body {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.school-index {
    font-family: var(--font-display);
    font-size: 2rem;
    opacity: 0.55;
    margin-bottom: auto;
}
.school-tile h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
}
.school-tile p {
    margin: 0 0 1.25rem;
    opacity: 0.85;
    line-height: 1.55;
    max-width: 28ch;
}
.school-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: 0.92rem;
}

/* About strip */
.about-strip {
    background: #fff;
    border-block: 1px solid var(--line);
}
.about-strip-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}
.about-strip-with-media {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}
.about-media-frame {
    position: absolute;
    inset: 1.1rem -1.1rem -1.1rem 1.1rem;
    border: 1px solid rgba(var(--brand-rgb), 0.35);
    border-radius: 28px;
    z-index: -1;
}
.lead-copy {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 1.75rem;
}
.pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.pillars strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--brand);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.pillars p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.95rem;
}
.text-link {
    color: var(--brand);
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* Programmes */
.programme-list { display: grid; gap: 0; }
.programme-row {
    display: grid;
    grid-template-columns: 64px 1fr auto auto auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.5rem 0.25rem;
    border-top: 1px solid var(--line);
    transition: background 0.25s ease, padding 0.25s var(--ease);
}
.programme-thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
}
.programme-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.programme-row:last-child { border-bottom: 1px solid var(--line); }
.programme-row:hover {
    background: rgba(var(--brand-rgb), 0.04);
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.programme-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--brand);
    opacity: 0.7;
}
.programme-main h3 {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
}
.programme-main p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    max-width: 48ch;
}
.programme-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.programme-meta span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(var(--brand-rgb), 0.08);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}
.programme-arrow {
    font-size: 1.25rem;
    color: var(--brand);
    transition: transform 0.25s var(--ease);
}
.programme-row:hover .programme-arrow { transform: translateX(4px); }

/* CTA band */
.cta-band { padding-top: 2rem; }
.cta-band-inner {
    border-radius: 32px;
    padding: 3rem;
    background:
        linear-gradient(135deg, var(--brand) 0%, color-mix(in srgb, var(--brand) 70%, #1a0808) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 30px 60px rgba(var(--brand-rgb), 0.28);
}
.cta-band-inner p { opacity: 0.88; max-width: 36rem; line-height: 1.6; }

/* Inner pages */
.page-hero {
    padding: 4.5rem 0 2.5rem;
    position: relative;
}
.page-hero h1 {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 1.05;
}
.page-hero p {
    margin: 0;
    color: var(--muted);
    max-width: 40rem;
    line-height: 1.65;
    font-size: 1.05rem;
}
.content-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}
.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.info-card h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
}
.info-card p { margin: 0; color: var(--muted); line-height: 1.55; }

.form-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.form-grid .full { grid-column: 1 / -1; }
label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font: inherit;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.12);
}
textarea { min-height: 140px; resize: vertical; }
.alert {
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    margin-bottom: 1rem;
}
.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger { background: #fef2f2; color: #991b1b; }
.error { color: #b91c1c; font-size: 0.85rem; margin-top: 0.35rem; }
.empty-state {
    padding: 2rem;
    border: 1px dashed var(--line);
    border-radius: 18px;
    color: var(--muted);
}

/* Footer */
.site-footer {
    margin-top: 2rem;
    background: #120c0c;
    color: rgba(255,255,255,0.82);
    padding: 4rem 0 1.75rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.footer-brand h3 {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.8rem;
}
.footer-brand p { margin: 0; opacity: 0.7; line-height: 1.5; }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.footer-cols h4 {
    margin: 0 0 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
}
.footer-cols a,
.footer-cols p {
    display: block;
    margin: 0 0 0.5rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.45;
}
.footer-cols a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.35rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
}
.footer-note { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem !important; }

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}
.reveal[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.reveal[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.reveal[data-reveal]:nth-child(4) { transition-delay: 0.24s; }

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-18px, 22px) scale(1.05); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

@media (max-width: 980px) {
    .school-rail,
    .about-strip-grid,
    .about-strip-with-media,
    .card-grid,
    .form-grid,
    .footer-top,
    .footer-cols,
    .pillars,
    .cta-band-inner {
        grid-template-columns: 1fr;
    }
    .about-media-frame { display: none; }
    .hero-slide figcaption { display: none; }
    .programme-row {
        grid-template-columns: 48px 1fr;
        gap: 0.85rem;
    }
    .programme-meta,
    .programme-arrow { display: none; }
    .section-head.split { align-items: start; flex-direction: column; }
    .nav-toggle { display: inline-flex; }
    .site-nav {
        display: none;
        position: absolute;
        inset: calc(var(--header-h) + 0.5rem) 1.25rem auto;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 0.7rem 0.55rem; }
    .site-nav a::after { display: none; }
    .nav-cta { text-align: center; margin-top: 0.35rem; }
    .brand-copy small { max-width: 140px; }
    .cta-band-inner { padding: 2rem; }
    .footer-bottom { flex-direction: column; }
}

.site-health {
    --paper: #f5f8fc;
}
.site-health body,
body.site-health {
    background:
        radial-gradient(ellipse 80% 50% at 10% -10%, rgba(var(--brand-rgb), 0.12), transparent 55%),
        linear-gradient(180deg, #f8fbff 0%, #f0f5fb 100%);
}
