/* --- Fonts --- */
@font-face {
    font-family: 'Canela';
    src: url('../fonts/Canela-Regular-Web.woff2') format('woff2'),
         url('../fonts/Canela-Regular-Web.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America';
    src: url('../fonts/GT-America-Standard-Regular.woff2') format('woff2'),
         url('../fonts/GT-America-Standard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America';
    src: url('../fonts/GT-America-Standard-Medium.woff2') format('woff2'),
         url('../fonts/GT-America-Standard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT America';
    src: url('../fonts/GT-America-Standard-Bold.woff2') format('woff2'),
         url('../fonts/GT-America-Standard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --crimson:      #A51C30;
    --navy:         #0A111F;
    --navy-mid:     #162238;
    --navy-dark:    #1b2136;
    --off-white:    #F2F0EB;
    --white:        #FFFFFF;
    --text-dark:    #1a1a1a;
    --text-mid:     #444444;
    --text-muted:   #888888;
    --border:       rgba(0,0,0,0.12);
    --serif:        'Canela', 'Libre Baskerville', Georgia, serif;
    --sans:         'GT America', 'Inter', -apple-system, sans-serif;
    --transition:   0.25s ease;
    --header-h:     76px;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body { margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    min-height: 100%;
}
body {
    font-family: var(--sans);
    background-color: #0a0b0e; /* matches footer — no grey bleed below */
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; background-color: var(--off-white); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* --- Container --- */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Full-width container for all content sections below the hero */
.section-overview .container,
.section-treatment .container,
.section-just-start .container,
.section-youth .container,
.section-screen-time .container,
.section-worklife .container,
.section-delving .container,
.section-campus .container,
.section-related .container {
    max-width: 100%;
    padding: 0 64px;
}

/* ============================================
   HEADER — transparent overlay, alert inline
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    /* Starts fully transparent over hero */
    background: transparent;
    height: var(--header-h);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* Becomes solid when scrolled (JS adds .scrolled) */
    .site-header.scrolled {
        background-color: rgba(255,255,255,0.55);
        box-shadow: 0 2px 24px rgba(0,0,0,0.5);
        color: #cbcbcb;
    }

        .site-header.scrolled,
        .site-header.scrolled a,
        .site-header.scrolled span,
        .site-header.scrolled li,
        .site-header.scrolled p,
        .site-header.scrolled h1,
        .site-header.scrolled h2,
        .site-header.scrolled h3,
        .site-header.scrolled h4,
        .site-header.scrolled h5,
        .site-header.scrolled h6 {
            color: #cbcbcb !important;
        }

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    /* logo | alert-center | actions */
}

/* ── Logo ── */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0 24px 0 28px;
}
.harvard-logo-img { height: 48px; width: auto; }

/* ── Alert (center) ── */
.header-alert {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.88);
    padding: 0 20px;
}
.alert-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--crimson);
    flex-shrink: 0;
}
.alert-link {
    color: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.alert-link:hover { color: white; border-color: white; }
.alert-close-x {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 2px;
    flex-shrink: 0;
    transition: color 0.2s;
    margin-left: 4px;
}
.alert-close-x:hover { color: white; }

/* ── Header action buttons — solid dark block like Crownridge ── */
.header-actions {
    display: flex;
    height: 100%;
    align-items: stretch;
    flex-shrink: 0;
    background: rgba(0,0,0,0.82);
}
.btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 26px;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-size: 0.88rem;
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
    height: 100%;
}
.btn-search svg { width: 18px; height: 18px; }
.btn-search:hover { background: rgba(255,255,255,0.08); }

.btn-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 26px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.88rem;
    font-family: var(--sans);
    font-weight: 400;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.2s;
    height: 100%;
}
.btn-menu svg { width: 18px; height: 18px; }
.btn-menu:hover, .btn-menu.active { background: rgba(255,255,255,0.08); }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10,17,31,0.97);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.search-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.search-overlay-inner { width: 100%; max-width: 700px; }
.search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    margin-bottom: 24px;
}
.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    padding: 12px 0;
}
.search-input::placeholder { color: rgba(255,255,255,0.4); }
.search-submit {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    padding: 8px;
    display: flex;
    transition: color var(--transition);
}
.search-submit:hover { color: white; }
.search-quick-links {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    flex-wrap: wrap;
}
.search-quick-links a {
    color: rgba(255,255,255,0.7);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: color var(--transition);
}
.search-quick-links a:hover { color: white; }

/* ============================================
   NAVIGATION OVERLAY — Crownridge-style
   ============================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1600;
    background: #0d1117;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Start hidden */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Background image layer — changes per section */
.nav-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: background-image 0s, opacity 0.5s ease;
}
.nav-bg.has-image {
    opacity: 1;
}
/* Dark overlay so text stays readable over photos */
.nav-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(6, 9, 16, 0.82);
}

/* Particle canvas background */
.nav-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Top bar */
.nav-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-img { height: 38px; width: auto; }
.nav-close-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-family: var(--sans);
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.5);
}

/* Nav body: left list + right panel */
.nav-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Left primary list */
.nav-primary {
    width: 480px;
    flex-shrink: 0;
    padding: 36px 0 48px 64px;
    display: flex;
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,0.07);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
    background: rgba(6, 9, 16, 0.55);
    position: relative;
    z-index: 2;
}
.nav-primary::-webkit-scrollbar { width: 4px; }
.nav-primary::-webkit-scrollbar-track { background: transparent; }
.nav-primary::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.nav-primary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nav-primary-item { overflow: hidden; }
.nav-primary-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    width: 100%;
    text-align: left;
}

/* The big animated text */
.nav-primary-text {
    font-family: var(--serif);
    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    transition: color 0.25s ease, transform 0.25s ease;
    display: block;
    transform-origin: left center;
    letter-spacing: -0.02em;
}
.nav-primary-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crimson);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.25s, transform 0.25s;
}

/* Hover: full white (already default, but keep explicit) */
.nav-primary-btn:hover .nav-primary-text {
    color: var(--white);
}
/* Active item: white + underline */
.nav-primary-item.active .nav-primary-text {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}
.nav-primary-item.active .nav-primary-dot {
    opacity: 1;
    transform: scale(1);
}

/* Dim non-active items when one is active — Crownridge uses ~30% */
.nav-primary-list.has-active .nav-primary-item:not(.active) .nav-primary-text {
    color: rgba(255,255,255,0.3);
}
/* Non-active item hover while another is active — restore full white */
.nav-primary-list.has-active .nav-primary-item:not(.active):hover .nav-primary-text {
    color: var(--white);
}

/* Right sub-panels */
.nav-subpanels {
    width: 380px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: rgba(6, 9, 16, 0.4);
    z-index: 2;
}
.nav-subpanel {
    position: absolute;
    inset: 0;
    padding: 48px 64px;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-subpanel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.nav-subpanel-inner {
    max-width: 560px;
}
.nav-subpanel-heading {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding-bottom: 16px;
    width: 100%;
    transition: color 0.2s;
}
.nav-subpanel-heading:hover { color: rgba(255,255,255,0.75); }
.nav-subpanel-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 440px;
}
.nav-subpanel-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 48px;
}
.nav-subpanel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nav-subpanel-list li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.88);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    line-height: 1.4;
}
.nav-subpanel-list li a:hover { color: white; }
.list-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
    font-weight: 500;
}

/* Sub-expandable items (2nd level → 3rd level) */
.nav-sub-expandable { list-style: none; }
.nav-sub-expand-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-family: var(--sans);
    transition: color 0.2s;
    text-align: left;
    line-height: 1.4;
    text-decoration: none;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.nav-sub-expand-btn:hover,
.nav-sub-expandable.active .nav-sub-expand-btn {
    color: white;
    text-decoration: underline;
}
.nav-sub-expand-btn svg {
    transition: transform 0.2s;
    flex-shrink: 0;
}
.nav-sub-expandable.active .nav-sub-expand-btn svg {
    transform: rotate(90deg);
}

/* Tertiary panel — 3rd column */
.nav-tertiary {
    width: 360px;
    flex-shrink: 0;
    border-left: 1px solid rgba(255,255,255,0.07);
    padding: 48px 48px;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
    position: relative;
    z-index: 2;
}
.nav-tertiary::-webkit-scrollbar { width: 4px; }
.nav-tertiary::-webkit-scrollbar-track { background: transparent; }
.nav-tertiary::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }
.nav-tertiary.open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}
.nav-tertiary-title {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.nav-tertiary-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 24px;
}
.nav-tertiary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.nav-tertiary-list li {
    border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-tertiary-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-tertiary-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s, padding-left 0.2s;
    line-height: 1.4;
}
.nav-tertiary-list li a:hover {
    color: white;
    padding-left: 6px;
}
.nav-tertiary-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--crimson);
    flex-shrink: 0;
}

/* Large list variant (In Focus) */
.nav-subpanel-list--large { gap: 18px; }
.nav-subpanel-list--large li a {
    font-family: var(--serif);
    font-size: 1.35rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}
.nav-subpanel-list--large li a:hover { color: white; }

/* Quick Links bottom bar */
.nav-quickbar {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.35);
    flex-shrink: 0;
}
.nav-quickbar-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 64px;
    height: 56px;
    overflow-x: auto;
}
.nav-quickbar-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}
.nav-quickbar-links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
}
.nav-quickbar-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    font-weight: 500;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 1px;
}
.nav-quickbar-links a:hover {
    color: white;
    border-color: rgba(255,255,255,0.4);
}

/* ============================================
   HERO — photo background, header overlaid
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* The hero bottom bleeds into the navy section below */
}

/* Real photograph layer */
.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://www.harvard.edu/wp-content/uploads/2026/03/AdobeStock_452869299.jpg?w=2000');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* Slight desaturate to match Crownridge's cool blue-grey look */
    filter: saturate(0.55) brightness(0.85);
}

/* Dark blue-grey overlay — transparent in centre, fades to solid navy-dark
   at the bottom so hero blends seamlessly into the "An overview" section */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 24, 42, 0.45) 0%,
        rgba(18, 24, 42, 0.40) 50%,
        rgba(27, 33, 54, 1.0)  100%
    );
}

/* Centered content block */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 48px;
    /* Shift up slightly so visual center feels right */
    margin-bottom: 60px;
}

/* Eyebrow label — subtle, uppercase */
.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 28px;
    font-weight: 400;
}

/* Large serif headline */
.hero-title {
    font-family: var(--serif);
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

/* Thin horizontal rule — not shown in screenshot, hidden by default */
.hero-title-rule {
    display: none;
}

/* Description paragraph */
.hero-desc {
    font-size: clamp(0.92rem, 1.25vw, 1.05rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
    font-weight: 300;
}

/* Scroll-down chevron — centered at very bottom */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2.2s ease-in-out infinite;
    opacity: 0.45;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 90px;
    padding-bottom: 28px;
    flex-wrap: wrap;
}
.section-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    flex-shrink: 0;
}
.section-lead {
    max-width: 560px;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}
.section-lead-block { max-width: 480px; }
.section-lead-block .section-lead { max-width: 100%; margin-bottom: 18px; }
.text-white { color: var(--white); }
.text-white-muted { color: rgba(255,255,255,0.72); }
.text-dark { color: var(--text-dark); }
.text-dark-muted { color: var(--text-mid); }
.section-divider {
    height: 3px;
    margin-bottom: 56px;
}
.divider-white { background: rgba(255,255,255,0.55); }
.divider-dark { background: rgba(0,0,0,0.75); }
.read-more {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--crimson);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}
.read-more:hover { border-color: var(--crimson); }
.cta-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--transition);
}
.cta-arrow-link:hover { opacity: 0.75; }
.cta-arrow-link svg { flex-shrink: 0; }

/* ============================================
   OVERVIEW / STATS
   ============================================ */
.section-overview {
    background: var(--navy-dark);
    padding-bottom: 100px;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}
.stat-card {}
.stat-number {
    font-family: var(--serif);
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.1;
}
.stat-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.stat-src {
    color: rgba(255,255,255,0.4);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: color var(--transition);
}
.stat-src:hover { color: white; }

/* ============================================
   TREATMENT
   ============================================ */
.section-treatment {
    background: var(--off-white);
    padding-bottom: 100px;
}
/* 60 / 40 split matching the Crownridge screenshot */
.treatment-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
}

/* Left column — full-width photo then title below */
.treatment-main-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 22px;
}
.treatment-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.treatment-main-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

/* Right column — stacked list rows */
.treatment-list { display: flex; flex-direction: column; }
.treatment-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
    text-decoration: none;
    color: inherit;
}
.treatment-list-item:first-child { border-top: 1px solid var(--border); }
.treatment-list-item:hover .treatment-list-text { color: var(--crimson); text-decoration: underline; }
.treatment-list-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-dark);
    transition: color var(--transition);
    flex: 1;
}
/* Thumbnail — matches screenshot: ~96×68px, no border-radius */
.treatment-list-thumb {
    width: 96px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
}
.treatment-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   JUST START
   ============================================ */
.section-just-start {
    background: var(--navy);
    padding-bottom: 100px;
}
.habits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.habit-card {
    overflow: hidden;
    cursor: pointer;
}
/* Photo fills the card top — real image, no gradient */
.habit-img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    margin-bottom: 28px;
}
.habit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.habit-card:hover .habit-img img { transform: scale(1.04); }
.habit-body {}
.habit-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}
.habit-desc {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}
/* "Read the research" — underline link matching live site */
.habit-link {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}
.habit-link:hover { color: white; }

/* ============================================
   YOUTH
   ============================================ */
.section-youth {
    background: #e3e5e5;
    padding-bottom: 80px;
}

/* Shared tag style used across sections */
.content-card-tag {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson);
    margin-bottom: 10px;
    font-weight: 500;
}

/* Section heading row — no description, just the h2 */
.youth-header {
    padding-top: 80px;
    padding-bottom: 24px;
}

/* Bold full-width HR divider */
.youth-divider {
    border: none;
    border-top: 2px solid rgba(0,0,0,0.75);
    margin: 0 0 56px;
}

/* ── Media-text block: image left (~55%), content right (~45%) ── */
.youth-media-text {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: center;
    padding-bottom: 56px;
}
.youth-media-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.youth-media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.youth-media-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 18px;
}
.youth-media-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 28px;
}
/* Arrow CTA button — matches Crownridge secondary button style */
.youth-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    padding: 14px 26px;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    letter-spacing: 0.02em;
}
.youth-cta-btn:hover {
    background: var(--text-dark);
    color: var(--white);
}
.youth-cta-btn svg { flex-shrink: 0; transition: transform var(--transition); }
.youth-cta-btn:hover svg { transform: translateX(4px); }

/* ── List with image thumbnails ── */
.youth-list-section {
    display: flex;
    flex-direction: column;
}
.youth-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,0.18);
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}
.youth-list-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.18); }
.youth-list-item:hover { opacity: 0.72; }
.youth-list-body { flex: 1; }
.youth-list-title {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.youth-list-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.youth-list-desc a { text-decoration: underline; color: var(--text-dark); }
/* Square thumbnail on the right */
.youth-list-thumb {
    width: 140px;
    height: 105px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

/* ============================================
   SCREEN TIME
   ============================================ */
.section-screen-time {
    background: #1b2136;
    padding-bottom: 80px;
}

/* Header row */
.screentime-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 24px;
    flex-wrap: wrap;
}
.screentime-lead {
    max-width: 560px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-weight: 300;
}
.screentime-divider {
    border: none;
    border-top: 2px solid rgba(255,255,255,0.55);
    margin: 0 0 56px;
}

/* 3-column spotlight grid */
.screentime-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Each spotlight card — full clickable wrapper */
.spotlight-card {
    display: flex;
    flex-direction: column;
    background: #242b42;
}
.spotlight-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
/* Tall portrait image — 2:3 ratio matching Crownridge's spotlight */
.spotlight-card-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.5s ease;
    overflow: hidden;
}
.spotlight-card:hover .spotlight-card-img {
    transform: scale(1.03);
}
/* Body: title + button */
.spotlight-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
}
.spotlight-card-title {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
    flex: 1;
}
/* Outlined light button — matches Crownridge's a-btn-outline is-style-light */
.spotlight-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.7);
    padding: 12px 18px;
    letter-spacing: 0.03em;
    transition: background var(--transition), border-color var(--transition);
    align-self: flex-start;
}
.spotlight-card:hover .spotlight-card-btn {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.spotlight-card-btn svg { flex-shrink: 0; transition: transform var(--transition); }
.spotlight-card:hover .spotlight-card-btn svg { transform: translateX(4px); }

/* ============================================
   WORK/LIFE
   ============================================ */
.section-worklife {
    background: #f3f4f4;
    padding-bottom: 80px;
}

/* Header */
.worklife-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 24px;
    flex-wrap: wrap;
}
.worklife-lead {
    max-width: 560px;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
}
.worklife-divider {
    border: none;
    border-top: 2px solid rgba(0,0,0,0.75);
    margin: 0 0 56px;
}

/* News layout: left ~55%, right ~45% */
.worklife-wrap {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 72px;
    align-items: start;
}

/* ── Left featured article ── */
.worklife-left {}
.worklife-main-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.worklife-main-img {
    width: 100%;
    aspect-ratio: 736 / 491;
    overflow: hidden;
    margin: 0 0 24px;
}
.worklife-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.worklife-main-link:hover .worklife-main-img img { transform: scale(1.03); }
.worklife-main-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.worklife-main-desc {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}
.worklife-main-link:hover .worklife-main-title { text-decoration: underline; text-underline-offset: 3px; }

/* ── Right stacked items — each fully clickable ── */
.worklife-right {
    display: flex;
    flex-direction: column;
}
.worklife-side-item {
    display: block;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}
.worklife-side-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.15); }
.worklife-side-item:hover { opacity: 0.7; }
.worklife-side-title {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.worklife-side-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.65;
}

/* ============================================
   DELVING DEEPER
   ============================================ */
.section-delving {
    background: #e3e5e5;
    padding-bottom: 80px;
}

/* Header */
.delving-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-top: 80px;
    padding-bottom: 24px;
    flex-wrap: wrap;
}
.delving-lead {
    max-width: 560px;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
}
.delving-divider {
    border: none;
    border-top: 2px solid rgba(0,0,0,0.75);
    margin: 0 0 48px;
}

/* ── 3 white cards ── */
.delving-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
}
/* Each card: white background */
.delving-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
}
.delving-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
/* 4:3 background-image on top */
.delving-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}
.delving-card:hover .delving-card-img { transform: scale(1.03); }
/* Body: title + desc + button */
.delving-card-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}
.delving-card-title {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
}
.delving-card-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
}
/* Secondary dark arrow button — a-btn-secondary */
.delving-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    border: 1.5px solid var(--text-dark);
    padding: 12px 18px;
    letter-spacing: 0.02em;
    align-self: flex-start;
    transition: background var(--transition), color var(--transition);
}
.delving-card:hover .delving-card-btn {
    background: var(--text-dark);
    color: var(--white);
}
.delving-card-btn svg { flex-shrink: 0; transition: transform var(--transition); }
.delving-card:hover .delving-card-btn svg { transform: translateX(4px); }

/* ── Podcast list with thumbnails ── */
.delving-podcast-list {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
}
.delving-podcast-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,0.18);
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}
.delving-podcast-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.18); }
.delving-podcast-item:hover { opacity: 0.72; }
.delving-podcast-body { flex: 1; }
.delving-podcast-source {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.delving-podcast-episode {
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-bottom: 12px;
}
.delving-podcast-desc {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.7;
}
/* Square thumbnail on right */
.delving-podcast-thumb {
    width: 140px;
    height: 105px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

/* ============================================
   ON CAMPUS
   ============================================ */
.section-campus {
    background: var(--off-white);
    padding-bottom: 100px;
}
.campus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.campus-card {
    display: block;
    overflow: hidden;
}
.campus-card-img {
    aspect-ratio: 16/9;
    transition: transform 0.4s ease;
}
.campus-card:hover .campus-card-img { transform: scale(1.04); }
.campus-card-body { padding: 18px 0; }
.campus-card-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 6px;
    transition: color var(--transition);
}
.campus-card:hover .campus-card-title { color: var(--crimson); }
.campus-card-school {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   RELATED TOPICS
   ============================================ */
.section-related {
    background: #1b2136;
    padding: 80px 0 80px;
}

/* Two-column: left ~40% heading, right ~60% link list */
.related-wrap {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}

/* Left column */
.related-left {
    padding-top: 8px;
}
.related-leadin {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    font-weight: 400;
}
.related-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
}

/* Right column — vertical link list */
.related-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.related-list-item {
    border-top: 1px solid rgba(255,255,255,0.15);
}
.related-list-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
/* Each link: large serif text + arrow, full width row */
.related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0;
    text-decoration: none;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    transition: color var(--transition);
}
.related-link svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: transform var(--transition), opacity var(--transition);
}
.related-link:hover {
    color: rgba(255,255,255,0.7);
}
.related-link:hover svg {
    transform: translateX(6px);
    opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0b0e;
    color: var(--white);
    margin: 0;
    padding: 0;
}

/* ── Top: 3 centered columns ── */
.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 64px 48px 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.footer-links-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 160px;
}
.footer-col-heading {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--sans);
}
.footer-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col-list li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color var(--transition);
    font-family: var(--sans);
}
.footer-col-list li a:hover { color: var(--white); }

/* ── Middle: centered Crownridge logo ── */
.footer-logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-img {
    height: 80px;
    width: auto;
    /*filter: brightness(0) invert(1);*/
    opacity: 0.9;
}

/* ── Bottom: copyright left + social icons right ── */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 64px;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.38);
    font-family: var(--sans);
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 24px;
}
.social-link {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    transition: color var(--transition);
}
.social-link:hover { color: var(--white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .nav-columns { grid-template-columns: 1fr 1fr; }
    .nav-col-featured { display: none; }
    .delving-grid { grid-template-columns: repeat(2, 1fr); }
    .delving-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .delving-podcast-thumb { width: 100px; height: 75px; }
    .footer-links-row { gap: 40px; padding: 48px 28px 40px; }
    .footer-bottom-row { padding: 24px 28px; }
}

@media (max-width: 900px) {
    .container { padding: 0 28px; }
    .section-overview .container,
    .section-treatment .container,
    .section-just-start .container,
    .section-youth .container,
    .section-screen-time .container,
    .section-worklife .container,
    .section-delving .container,
    .section-campus .container,
    .section-related .container { padding: 0 28px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .treatment-grid,
    .youth-media-text,
    .worklife-wrap { grid-template-columns: 1fr; gap: 40px; }
    .worklife-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .youth-list-thumb { width: 100px; height: 75px; }
    .screentime-grid,
    .habits-grid,
    .campus-grid,
    .related-wrap { grid-template-columns: 1fr; gap: 40px; }
    .screentime-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
    .nav-primary {
        width: 320px;
        padding: 24px 0 24px 32px;
    }
    .nav-primary-text { font-size: 2.8rem; }
    .nav-subpanel { padding: 32px; }
    .nav-topbar { padding: 0 24px; }
    .nav-quickbar-inner { padding: 0 24px; gap: 20px; }
    .nav-quickbar-links { gap: 16px; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .header-inner { padding: 0; }
    /* Clean icon-only buttons on mobile — no dark boxes, no borders */
    .btn-search span { display: none; }
    .btn-menu span#menuLabel { display: none; }
    .btn-search {
        background: transparent;
        border-left: none;
        padding: 0 12px;
    }
    .btn-search:hover { background: transparent; }
    .btn-menu {
        border-left: none;
        padding: 0 12px;
    }
    .btn-search svg, .btn-menu svg { width: 22px; height: 22px; }
    /* Push icons to the far right */
    .header-actions { margin-left: auto; gap: 0; }
    .header-alert { display: none; }
    .section-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stats-row { grid-template-columns: 1fr; }
    .screentime-grid,
    .habits-grid,
    .campus-grid,
    .delving-grid { grid-template-columns: 1fr; }
    .related-link { font-size: 1.3rem; }
    .related-wrap { gap: 24px; }
    .delving-podcast-item { flex-direction: column; gap: 20px; }
    .delving-podcast-thumb { width: 100%; height: 200px; }
    .footer-links-row { flex-direction: column; align-items: center; gap: 36px; padding: 40px 20px 32px; }
    .footer-bottom-row { flex-direction: column; align-items: center; text-align: center; padding: 24px 20px; }
    .footer-logo-row { padding: 36px 20px; }
    .footer-logo-img { height: 60px; }
    .alert-banner { padding: 10px 16px; }
    .hero-title { font-size: 2.6rem; }
    .hero-content { padding: 0 24px; margin-bottom: 80px; }
    .section-overview .container,
    .section-treatment .container,
    .section-just-start .container,
    .section-youth .container,
    .section-screen-time .container,
    .section-worklife .container,
    .section-delving .container,
    .section-campus .container,
    .section-related .container { padding: 0 20px; }

    /* Nav mobile: full-screen vertical layout */
    .nav-body { flex-direction: column; overflow-y: auto; }
    .nav-primary {
        width: 100%;
        flex-shrink: 0;
        padding: 24px 0 24px 32px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        overflow: visible;
    }
    /* Items stay VERTICAL on mobile */
    .nav-primary-list { flex-direction: column; flex-wrap: nowrap; gap: 0; }
    .nav-primary-text { font-size: 2.2rem; }

    /* Hide right-side panels on mobile — accordion is inline */
    .nav-subpanels { display: none; }
    .nav-tertiary { display: none; }

    /* Inline tertiary shown via JS */
    .nav-tertiary-inline {
        padding: 16px 0 8px 0;
    }
    .nav-tertiary-inline .nav-tertiary-title {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
    }
    .nav-tertiary-inline .nav-tertiary-desc {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.5);
        margin-bottom: 12px;
    }
    .nav-tertiary-inline .nav-tertiary-list { gap: 0; }
    .nav-tertiary-inline .nav-tertiary-list li {
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-tertiary-inline .nav-tertiary-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .nav-tertiary-inline .nav-tertiary-list li a {
        font-size: 0.82rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .nav-tertiary-inline .nav-tertiary-list li a:hover { color: white; }
    .nav-tertiary-inline .nav-tertiary-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--crimson);
        flex-shrink: 0;
    }

    /* Inline accordion panel */
    .nav-subpanel-inline {
        padding: 12px 0 20px 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-top: 4px;
    }
    .nav-subpanel-inline .nav-subpanel-heading {
        font-family: var(--serif);
        font-size: 1.1rem;
        font-weight: 400;
        color: var(--white);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }
    .nav-subpanel-inline .nav-subpanel-heading svg { width: 14px; height: 14px; }
    .nav-subpanel-inline hr { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin-bottom: 12px; }
    .nav-subpanel-inline .nav-subpanel-desc {
        font-size: 0.82rem;
        color: rgba(255,255,255,0.55);
        line-height: 1.6;
        margin-bottom: 16px;
        max-width: none;
    }
    .nav-subpanel-inline .nav-subpanel-cols {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }
    .nav-subpanel-inline .list-label {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
        color: rgba(255,255,255,0.4);
        margin-bottom: 8px;
        margin-top: 12px;
    }
    .nav-subpanel-inline .nav-subpanel-list { gap: 10px; }
    .nav-subpanel-inline .nav-subpanel-list li a {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.75);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .nav-subpanel-inline .nav-subpanel-list li a:hover { color: white; }

    /* Mobile sub-expandable items - show inline */
    .nav-subpanel-inline .nav-sub-expandable { display: block; }
    .nav-subpanel-inline .nav-sub-expand-btn {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.85);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        width: 100%;
    }
    .nav-subpanel-inline .nav-sub-expand-btn:hover { color: white; }
    .nav-subpanel-inline .nav-sub-expand-btn svg { width: 12px; height: 12px; }

    .nav-topbar { padding: 0 20px; height: 60px; }
    .nav-quickbar-inner { padding: 0 20px; gap: 16px; }
}

/* ═══════════════════════════════════════════════════
   ACADEMICS PAGE  (acad-*)
   ═══════════════════════════════════════════════════ */

/* Shared container */
.acad-container {
    max-width: 100%;
    padding: 0 64px;
    margin: 0 auto;
}

/* ── Hero ── */
.acad-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}
.acad-hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://www.harvard.edu/wp-content/uploads/2020/11/042318_Eggan_017.jpg?w=2000');
    background-size: cover;
    background-position: center center;
}
.acad-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18,24,42,0.35) 0%, rgba(27,33,54,0.98) 100%);
}
.acad-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: 0 32px;
    margin-bottom: 100px;
}
.acad-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    margin: 0 0 20px;
    color: #fff;
}
.acad-hero-desc {
    font-family: var(--sans);
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0;
}
.acad-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
}

/* ── Quote banner ── */
.acad-quote {
    background: var(--crimson);
    padding: 64px 0;
}
.acad-blockquote {
    margin: 0;
    max-width: 860px;
}
.acad-blockquote p {
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.5vw, 1.95rem);
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 20px;
}
.acad-blockquote cite {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-style: normal;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

/* ── Shared section chrome ── */
.acad-section {
    padding: 80px 0;
}
.acad-section-header {
    margin-bottom: 28px;
}
.acad-section-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin: 0 0 18px;
}
.acad-section-title.text-white { color: #fff; }
.acad-section-lead {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0;
}
.acad-section-lead.text-white-muted { color: rgba(255,255,255,0.72); }

.acad-divider {
    border: none;
    height: 2px;
    margin: 0 0 48px;
}
.acad-divider--dark  { background: rgba(0,0,0,0.75); }
.acad-divider--white { background: rgba(255,255,255,0.55); }

/* ── Schools section ── */
.acad-schools {
    background: var(--off-white);
}
.acad-schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.acad-school-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.acad-school-card:hover { transform: translateY(-4px); }
.acad-school-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}
.acad-school-body { flex: 1; }
.acad-school-name {
    font-family: var(--serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 10px;
}
.acad-school-desc {
    font-family: var(--sans);
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-mid);
    margin: 0;
}
.acad-schools-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.12);
}
.acad-text-link {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--crimson);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.acad-text-link:hover { text-decoration: underline; }

/* ── Degrees section ── */
.acad-degrees {
    background: var(--navy-dark);
}
.acad-degrees-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.acad-degrees-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.acad-degree-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    text-decoration: none;
    color: #fff;
    font-family: var(--serif);
    font-size: 1.2rem;
    transition: color 0.2s;
}
.acad-degree-link:first-child { border-top: 1px solid rgba(255,255,255,0.18); }
.acad-degree-link:hover { color: rgba(255,255,255,0.7); }
.acad-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}
.acad-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.acad-video-caption {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 12px 0 0;
}

/* ── Financial Aid section ── */
.acad-finaid {
    background: var(--off-white);
}
.acad-finaid-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.acad-finaid-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.acad-finaid-desc {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin: 0 0 32px;
}
.acad-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border: 1.5px solid var(--text-dark);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.acad-btn-secondary:hover {
    background: var(--text-dark);
    color: #fff;
}

/* ── Online / "We saved you a seat" section ── */
.acad-online {
    background: var(--navy-dark);
}
.acad-online-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.acad-online-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}
.acad-online-card:hover { transform: translateY(-4px); }
.acad-online-img {
    width: 100%;
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}
.acad-online-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px;
}
.acad-online-desc {
    font-family: var(--sans);
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin: 0 0 16px;
    flex: 1;
}
.acad-online-link {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Summer Programs section ── */
.acad-summer {
    background: #e3e5e5;
}
.acad-summer-wrap {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: start;
}
.acad-summer-desc {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin: 0;
}
.acad-summer-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.acad-summer-item:first-child { border-top: 1px solid rgba(0,0,0,0.15); }
.acad-summer-item:hover { opacity: 0.72; }
.acad-summer-item-body { flex: 1; }
.acad-summer-item-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 6px;
}
.acad-summer-item-desc {
    font-family: var(--sans);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin: 0;
}
.acad-summer-arrow {
    flex-shrink: 0;
    color: var(--text-dark);
    opacity: 0.55;
}

/* ── Events "Join In" section ── */
.acad-events {
    background: var(--navy-dark);
}
.acad-events-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.acad-event-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.acad-event-item:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.acad-event-item:hover { opacity: 0.72; }
.acad-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    width: 56px;
    height: 56px;
    border: 1.5px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.acad-event-month {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    line-height: 1;
}
.acad-event-day {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.1;
}
.acad-event-body { flex: 1; }
.acad-event-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 6px;
}
.acad-event-meta {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.acad-event-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.55);
}

/* ── Academics responsive ── */
@media (max-width: 900px) {
    .acad-container { padding: 0 24px; }
    .acad-schools-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .acad-online-grid  { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .acad-degrees-wrap { grid-template-columns: 1fr; gap: 40px; }
    .acad-finaid-wrap  { grid-template-columns: 1fr; gap: 36px; }
    .acad-summer-wrap  { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
    .acad-container { padding: 0 20px; }
    .acad-schools-grid { grid-template-columns: 1fr; }
    .acad-online-grid  { grid-template-columns: 1fr; }
    .acad-section { padding: 56px 0; }
    .acad-hero-content { margin-bottom: 72px; }
}

/* ═══════════════════════════════════════════════════
   CAMPUS PAGE  (camp-*)
   ═══════════════════════════════════════════════════ */

.camp-container {
    max-width: 100%;
    padding: 0 64px;
    margin: 0 auto;
}

/* ── Hero ── */
.camp-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: #fff;
}
.camp-hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('https://www.harvard.edu/wp-content/uploads/2022/06/101221_overviews_2492-crop-scaled.jpg?w=2000');
    background-size: cover;
    background-position: center center;
}
.camp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18,24,42,0.30) 0%, rgba(27,33,54,0.97) 100%);
}
.camp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 32px;
    margin-bottom: 100px;
}
.camp-hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    margin: 0 0 20px;
    color: #fff;
}
.camp-hero-desc {
    font-family: var(--sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin: 0;
}
.camp-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.7;
}

/* ── Secondary nav ── */
.camp-subnav {
    background: var(--off-white);
    border-bottom: 1px solid rgba(0,0,0,0.10);
    position: sticky;
    top: 60px;
    z-index: 80;
}
.camp-subnav-inner {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 64px;
    overflow-x: auto;
    scrollbar-width: none;
}
.camp-subnav-inner::-webkit-scrollbar { display: none; }
.camp-subnav-link {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    padding: 16px 20px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}
.camp-subnav-link:hover { color: var(--text-dark); }
.camp-subnav-link--active {
    color: var(--crimson);
    border-bottom-color: var(--crimson);
}

/* ── Shared section chrome ── */
.camp-section {
    padding: 80px 0;
}
.camp-divider {
    border: none;
    height: 2px;
    margin: 0 0 48px;
}
.camp-divider--dark  { background: rgba(0,0,0,0.75); }
.camp-divider--white { background: rgba(255,255,255,0.55); }

/* ── 3-up features ── */
.camp-features {
    background: var(--off-white);
}
.camp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.camp-feature-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.22s;
}
.camp-feature-card:hover { transform: translateY(-5px); }
.camp-feature-img {
    width: 100%;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    margin-bottom: 24px;
}
.camp-feature-label {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crimson);
    display: block;
    margin-bottom: 8px;
}
.camp-feature-heading {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-dark);
    margin: 0 0 12px;
}
.camp-feature-desc {
    font-family: var(--sans);
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin: 0 0 18px;
    flex: 1;
}
.camp-feature-link {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--crimson);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Events / Things to Do ── */
.camp-events {
    background: var(--navy-dark);
    color: #fff;
}
.camp-events-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.camp-events-title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 12px;
}
.camp-events-lead {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin: 0;
}
.camp-events-more {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-top: 8px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
}
.camp-events-more:hover { color: #fff; }
.camp-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.camp-event-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.camp-event-card:hover { opacity: 0.8; }
.camp-event-img {
    width: 100%;
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    margin-bottom: 18px;
}
.camp-event-body { flex: 1; }
.camp-event-time {
    display: block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 8px;
}
.camp-event-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 8px;
}
.camp-event-location {
    font-family: var(--sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ── Campus Highlight ── */
.camp-highlight {
    background: var(--off-white);
}
.camp-highlight-eyebrow {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 32px;
}
.camp-highlight-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.camp-highlight-img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}
.camp-highlight-heading {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 20px;
}
.camp-highlight-desc {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.78;
    color: var(--text-mid);
    margin: 0 0 32px;
}
.camp-highlight-link {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--crimson);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--crimson);
    padding-bottom: 2px;
}
.camp-highlight-link:hover { opacity: 0.75; }

/* ── Visiting Crownridge ── */
.camp-visit {
    background: var(--navy-dark);
    color: #fff;
}
.camp-visit-wrap {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 96px;
    align-items: start;
}
.camp-visit-heading {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 20px;
}
.camp-visit-desc {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.72);
    margin: 0 0 32px;
}
.camp-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border: 1.5px solid rgba(255,255,255,0.6);
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}
.camp-visit-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.camp-visit-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.camp-visit-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.camp-visit-option:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.camp-visit-option:hover { opacity: 0.75; }
.camp-visit-option-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,0.7);
}
.camp-visit-option > div:nth-child(2) { flex: 1; }
.camp-visit-option-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 4px;
}
.camp-visit-option-desc {
    font-family: var(--sans);
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.camp-visit-option-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.45);
}

/* ── Campus responsive ── */
@media (max-width: 1024px) {
    .camp-container { padding: 0 40px; }
    .camp-subnav-inner { padding: 0 40px; }
    .camp-visit-wrap { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
    .camp-container { padding: 0 24px; }
    .camp-subnav-inner { padding: 0 24px; }
    .camp-features-grid { grid-template-columns: 1fr; gap: 32px; }
    .camp-events-grid   { grid-template-columns: 1fr; gap: 24px; }
    .camp-highlight-wrap { grid-template-columns: 1fr; gap: 36px; }
    .camp-events-header { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
    .camp-container { padding: 0 20px; }
    .camp-subnav-inner { padding: 0 20px; }
    .camp-section { padding: 56px 0; }
    .camp-hero-content { margin-bottom: 72px; }
}


/* --- Visit Page Styles --- */

.visit-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--navy);
}

.visit-hero .hero-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: saturate(0.8) brightness(0.7);
    transition: transform 0.8s ease-out;
}

.visit-hero:hover .hero-photo {
    transform: scale(1.05);
}

.visit-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 17, 31, 0.4) 0%,
        rgba(10, 17, 31, 0.6) 100%
    );
}

.visit-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.visit-hero .hero-title {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.visit-hero .hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.section-visit-intro {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-heading {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 30px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.section-visit-actions {
    padding: 80px 0;
    background-color: var(--off-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.visit-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.visit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.card-desc {
    color: var(--text-mid);
    margin-bottom: 25px;
    flex: 1;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crimson);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s;
}

.btn-visit:hover {
    gap: 12px;
}

.section-plan-your-trip {
    padding: 100px 0;
    background-color: var(--navy);
    color: var(--white);
}

.plan-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    font-family: var(--serif);
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subheading {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

.plan-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.plan-item-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.plan-item-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.plan-link {
    color: var(--white);
    border-bottom: 1px solid var(--crimson);
    padding-bottom: 2px;
    font-weight: 600;
    transition: border-color 0.2s;
}

.plan-link:hover {
    border-color: var(--white);
}

@media (max-width: 768px) {
    .visit-hero { height: 60vh; }
    .intro-heading { font-size: 2rem; }
    .visit-grid { grid-template-columns: 1fr; }
    .section-heading { font-size: 2.2rem; }
}

