:root {
    --navy-950: #080d3d;
    --navy-900: #101760;
    --navy-800: #1a218b;
    --navy-700: #3542b8;
    --maroon-700: #17227f;
    --maroon-600: #3542b8;
    --gold-500: #7e8ae2;
    --gold-300: #c5ccf7;
    --cream-50: #fbfbff;
    --cream-100: #f0f2ff;
    --slate-900: #17203a;
    --slate-700: #485273;
    --slate-500: #727b9d;
    --slate-300: #cbd2ea;
    --slate-200: #e3e6f5;
    --slate-100: #f5f6fc;
    --white: #fff;
    --success: #18724b;
    --danger: #b42336;
    --shadow-sm: 0 10px 28px rgba(26, 33, 139, .08);
    --shadow-md: 0 20px 52px rgba(26, 33, 139, .14);
    --shadow-lg: 0 32px 84px rgba(8, 13, 61, .24);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --container: 1180px;
    --header-height: 84px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--slate-900); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open, body.search-open, body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-soft { background: var(--slate-100); }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; padding: 12px 18px; color: var(--white); background: var(--navy-900); border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.topbar { position: relative; z-index: 51; color: rgba(255,255,255,.84); background: var(--navy-950); font-size: 12px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-contact { display: flex; gap: 22px; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar-contact a:hover { color: var(--gold-300); }
.topbar-contact .icon { width: 14px; }
.topbar-links { letter-spacing: .04em; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(11,33,69,.08); backdrop-filter: blur(14px); transition: box-shadow .25s, transform .25s; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(8,13,61,.09); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { min-width: 250px; display: inline-flex; align-items: center; gap: 13px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { color: var(--navy-900); font-size: 16px; letter-spacing: -.02em; }
.brand small { margin-top: 6px; color: var(--slate-500); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .nav-dropdown-toggle { position: relative; min-height: 42px; display: inline-flex; align-items: center; gap: 4px; padding: 0 12px; border: 0; color: var(--slate-700); background: transparent; font-size: 13px; font-weight: 700; cursor: pointer; }
.main-nav > a::after, .nav-dropdown-toggle::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px; background: var(--maroon-600); transform: scaleX(0); transition: transform .25s var(--ease); }
.main-nav > a:hover, .main-nav > a.active, .nav-dropdown:hover .nav-dropdown-toggle { color: var(--navy-900); }
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-dropdown:hover .nav-dropdown-toggle::after { transform: scaleX(1); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle .icon { width: 13px; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-toggle .icon { transform: rotate(180deg); }
.nav-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; width: 255px; padding: 10px; visibility: hidden; opacity: 0; transform: translateY(8px); border: 1px solid var(--slate-200); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-md); transition: .2s var(--ease); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; padding: 11px 13px; border-radius: 9px; color: var(--slate-700); font-size: 13px; font-weight: 650; }
.nav-dropdown-menu a:hover { color: var(--maroon-700); background: var(--cream-100); }
.main-nav .nav-cta { margin-left: 8px; padding: 0 18px; color: var(--white); background: var(--maroon-600); border-radius: 999px; }
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { color: var(--white); background: var(--maroon-700); transform: translateY(-1px); }
.search-toggle, .nav-toggle, .icon-button { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; }
.search-toggle { width: 40px; height: 40px; margin-left: 4px; color: var(--navy-900); background: var(--slate-100); border-radius: 50%; }
.search-toggle:hover { color: var(--white); background: var(--navy-800); }
.nav-toggle { display: none; width: 44px; height: 44px; background: var(--slate-100); border-radius: 10px; }

.search-panel { position: fixed; inset: 38px 0 auto; z-index: 60; padding: 34px 0; color: var(--white); background: rgba(8,13,61,.98); box-shadow: var(--shadow-lg); }
.search-panel-form { display: flex; align-items: center; gap: 16px; }
.search-panel-form > .icon { width: 28px; }
.search-panel-form input { flex: 1; height: 58px; padding: 0 10px; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); color: var(--white); background: transparent; font-size: 20px; outline: none; }
.search-panel-form input::placeholder { color: rgba(255,255,255,.5); }
.icon-button { width: 44px; height: 44px; color: var(--white); background: transparent; }

.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--maroon-600); box-shadow: 0 10px 26px rgba(53,66,184,.22); }
.btn-primary:hover { background: var(--maroon-700); box-shadow: 0 14px 30px rgba(53,66,184,.28); }
.btn-light { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--cream-100); }
.btn-outline { color: var(--navy-900); border-color: var(--slate-300); background: transparent; }
.btn-outline:hover { color: var(--white); border-color: var(--navy-800); background: var(--navy-800); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.04); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--maroon-600); font-size: 13px; font-weight: 800; }
.text-link .icon { transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 15px; color: var(--maroon-600); font-size: 11px; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--gold-300); }

.hero { position: relative; height: min(760px, calc(100vh - 38px)); min-height: 610px; overflow: hidden; color: var(--white); background: var(--navy-950); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transform: scale(1.02); transition: opacity .8s var(--ease), transform 1.2s var(--ease), visibility .8s; }
.hero-slide.active { visibility: visible; opacity: 1; transform: scale(1); }
.hero-media { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,13,61,.95) 0%, rgba(8,13,61,.76) 42%, rgba(8,13,61,.22) 75%, rgba(8,13,61,.3) 100%), linear-gradient(0deg, rgba(8,13,61,.55), transparent 55%); }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero-copy { width: min(720px, 65%); padding-bottom: 34px; }
.hero-copy h1 { margin: 0 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 6vw, 84px); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
.hero-copy p { max-width: 650px; margin: 0 0 34px; color: rgba(255,255,255,.82); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-controls { position: absolute; z-index: 4; left: 50%; bottom: 60px; display: flex; align-items: center; justify-content: space-between; transform: translateX(-50%); }
.slider-dots { display: flex; gap: 9px; }
.slider-dot { width: 28px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.35); cursor: pointer; transition: width .2s, background .2s; }
.slider-dot.active { width: 48px; background: var(--gold-300); }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrows button { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); background: rgba(255,255,255,.06); cursor: pointer; }
.slider-arrows button:hover { color: var(--navy-900); background: var(--white); }
.hero-scroll { position: absolute; z-index: 3; right: 28px; bottom: 55px; display: flex; align-items: center; gap: 12px; transform: rotate(90deg); transform-origin: right bottom; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.scroll-line { width: 50px; height: 1px; background: rgba(255,255,255,.5); }

.quick-access-wrap { position: relative; z-index: 6; margin-top: -35px; }
.quick-access { display: grid; grid-template-columns: repeat(4,1fr); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-md); }
.quick-access > a { min-height: 102px; display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-right: 1px solid var(--slate-200); transition: color .2s, background .2s; }
.quick-access > a:last-child { border-right: 0; }
.quick-access > a:hover { color: var(--white); background: var(--navy-800); }
.quick-access > a > .icon { margin-left: auto; color: var(--slate-300); }
.quick-access > a:hover > .icon { color: var(--gold-300); transform: translateX(4px); }
.quick-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; color: var(--maroon-600); background: var(--cream-100); border-radius: 13px; }
.quick-access a:hover .quick-icon { color: var(--navy-900); background: var(--gold-300); }
.quick-access strong, .quick-access small { display: block; }
.quick-access strong { font-size: 14px; }
.quick-access small { margin-top: 3px; color: var(--slate-500); font-size: 11px; }
.quick-access a:hover small { color: rgba(255,255,255,.67); }

.intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.intro-visual { position: relative; }
.image-frame { position: relative; padding: 18px 18px 0 0; }
.image-frame::before { content: ""; position: absolute; top: 0; right: 0; width: 74%; height: 72%; border: 2px solid var(--gold-500); border-radius: var(--radius-lg); }
.image-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/4.5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.image-label { position: absolute; z-index: 2; right: -28px; bottom: 34px; min-width: 155px; padding: 18px 22px; color: var(--white); background: var(--maroon-600); border-radius: 14px; box-shadow: var(--shadow-md); }
.image-label strong, .image-label small { display: block; }
.image-label strong { font-family: Georgia, serif; font-size: 25px; }
.image-label small { opacity: .75; font-size: 10px; }
.intro-badge { position: absolute; z-index: 3; left: -35px; top: 50px; width: 130px; height: 130px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: var(--navy-900); text-align: center; background: var(--gold-300); border: 7px solid var(--white); border-radius: 50%; box-shadow: var(--shadow-sm); }
.intro-badge .icon { font-size: 25px; }
.intro-badge span { font-size: 9px; line-height: 1.35; text-transform: uppercase; }
.intro-badge strong { font-size: 11px; }
.intro-copy h2, .section-heading h2, .cta-inner h2 { margin: 0; color: var(--navy-900); font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4vw, 54px); line-height: 1.08; letter-spacing: -.035em; }
.intro-copy .lead { margin: 25px 0 16px; color: var(--slate-700); font-size: 18px; line-height: 1.75; }
.intro-copy > p:not(.lead) { color: var(--slate-500); }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin: 28px 0; }
.feature-list > div { display: flex; gap: 12px; }
.feature-list > div > .icon { width: 25px; height: 25px; padding: 5px; color: var(--white); background: var(--maroon-600); border-radius: 50%; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { color: var(--navy-900); font-size: 13px; }
.feature-list small { margin-top: 4px; color: var(--slate-500); font-size: 11px; line-height: 1.5; }

.statistics-section { position: relative; padding: 56px 0; color: var(--white); background: var(--navy-900); overflow: hidden; }
.statistics-section::before { content: ""; position: absolute; inset: 0; opacity: .17; background: radial-gradient(circle at 10% 20%, var(--gold-300), transparent 24%), radial-gradient(circle at 85% 70%, var(--maroon-600), transparent 27%); }
.statistics-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 5px 40px; border-right: 1px solid rgba(255,255,255,.17); text-align: center; }
.stat-item:last-child { border: 0; }
.stat-item strong, .stat-item span { display: block; }
.stat-item strong { color: var(--gold-300); font-family: Georgia, serif; font-size: 42px; line-height: 1; }
.stat-item span { margin-top: 9px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.section-heading { margin-bottom: 48px; }
.section-heading p { max-width: 620px; margin: 18px 0 0; color: var(--slate-500); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { margin-inline: auto; }
.section-heading.light h2, .section-heading.light p { color: var(--white); }
.section-heading.light p { opacity: .72; }

.news-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 24px; }
.news-card { overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); transition: transform .25s var(--ease), box-shadow .25s; }
.news-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.card-media { position: relative; display: block; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .card-media img { transform: scale(1.05); }
.news-card-featured { grid-row: span 1; }
.news-card-featured .card-media img { aspect-ratio: 16/10.3; }
.card-category { display: inline-flex; width: max-content; padding: 6px 10px; color: var(--maroon-700); background: var(--cream-100); border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.card-media .card-category { position: absolute; left: 16px; bottom: 16px; color: var(--navy-900); background: var(--gold-300); }
.card-body { padding: 23px; }
.card-body h2, .card-body h3 { margin: 11px 0; color: var(--navy-900); font-family: Georgia, serif; line-height: 1.25; }
.card-body h3 { font-size: 22px; }
.card-body h2 { font-size: 24px; }
.card-body h2 a:hover, .card-body h3 a:hover { color: var(--maroon-600); }
.card-body p { margin: 0 0 18px; color: var(--slate-500); font-size: 13px; }
.meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--slate-500); font-size: 10px; }
.meta span { display: inline-flex; align-items: center; gap: 6px; }
.meta .icon { width: 13px; color: var(--maroon-600); }

.agenda-section { color: var(--white); background: linear-gradient(125deg, var(--navy-950), var(--navy-800)); }
.agenda-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; }
.agenda-heading { position: sticky; top: 130px; align-self: start; }
.agenda-heading h2 { color: var(--white); }
.agenda-heading p { color: rgba(255,255,255,.65); }
.agenda-list { border-top: 1px solid rgba(255,255,255,.15); }
.agenda-item { display: grid; grid-template-columns: 78px 1fr auto; align-items: center; gap: 24px; padding: 25px 4px; border-bottom: 1px solid rgba(255,255,255,.15); transition: padding .2s, background .2s; }
a.agenda-item:hover { padding-inline: 15px; background: rgba(255,255,255,.05); }
.agenda-item time { width: 70px; height: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy-900); background: var(--gold-300); border-radius: 13px; }
.agenda-item time strong { font-family: Georgia, serif; font-size: 28px; line-height: .9; }
.agenda-item time span { margin-top: 5px; font-size: 9px; font-weight: 900; }
.agenda-type { color: var(--gold-300); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.agenda-item h3 { margin: 5px 0 8px; font-family: Georgia, serif; font-size: 22px; }
.agenda-item p { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; color: rgba(255,255,255,.57); font-size: 10px; }
.agenda-item p span { display: inline-flex; align-items: center; gap: 6px; }
.agenda-item > .icon { color: var(--gold-300); }

.achievement-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.achievement-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
.achievement-card::after { content: ""; position: absolute; right: -50px; bottom: -55px; width: 150px; height: 150px; border-radius: 50%; background: var(--cream-100); transition: transform .3s; }
.achievement-card:hover { transform: translateY(-6px); border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.achievement-card:hover::after { transform: scale(1.25); }
.achievement-icon { position: relative; z-index: 1; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; margin-bottom: 27px; color: var(--maroon-600); background: var(--cream-100); border-radius: 15px; }
.achievement-level { color: var(--maroon-600); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.achievement-card h3 { position: relative; z-index: 1; margin: 9px 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 22px; line-height: 1.25; }
.achievement-card p { position: relative; z-index: 1; margin: 0; color: var(--slate-500); font-size: 12px; }
.achievement-card > strong { position: absolute; z-index: 2; right: 24px; bottom: 20px; color: var(--navy-800); font-family: Georgia, serif; font-size: 28px; }
.center-action { margin-top: 40px; text-align: center; }

.program-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.program-card { position: relative; height: 410px; overflow: hidden; border-radius: var(--radius); color: var(--white); }
.program-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.program-card:hover img { transform: scale(1.07); }
.program-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,13,61,.95), rgba(8,13,61,.05) 70%); }
.program-content { position: absolute; inset: auto 0 0; padding: 28px; }
.program-content span { color: var(--gold-300); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.program-content h3 { margin: 8px 0; font-family: Georgia, serif; font-size: 26px; }
.program-content p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; }

.facilities-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 80px; }
.facilities-copy p { margin-bottom: 28px; }
.facility-collage { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 240px 200px; gap: 14px; }
.facility-tile { position: relative; overflow: hidden; border-radius: 16px; }
.facility-tile.tile-1 { grid-row: 1 / 3; }
.facility-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.facility-tile:hover img { transform: scale(1.05); }
.facility-tile::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(8,13,61,.85)); }
.facility-tile span { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 15px; color: var(--white); font-family: Georgia, serif; font-size: 18px; }
.facility-tile.tile-4 { display: none; }

.gallery-preview-section { color: var(--white); background: var(--navy-950); }
.gallery-preview-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 240px 240px; gap: 14px; }
.gallery-preview-item { position: relative; overflow: hidden; border-radius: 14px; }
.gallery-preview-item.item-1 { grid-row: 1 / 3; }
.gallery-preview-item.item-4 { grid-column: 2 / 4; }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery-preview-item:hover img { transform: scale(1.06); }
.gallery-preview-item::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(8,13,61,.9)); }
.gallery-preview-item > div { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 18px; }
.gallery-preview-item span { color: var(--gold-300); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.gallery-preview-item h3 { margin: 5px 0 0; font-family: Georgia, serif; font-size: 22px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card { position: relative; margin: 0; padding: 32px; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.quote-mark { position: absolute; top: 15px; right: 24px; color: var(--gold-300); font-family: Georgia, serif; font-size: 72px; line-height: 1; }
.testimonial-card > p { position: relative; margin: 0 0 26px; color: var(--slate-700); font-size: 14px; font-style: italic; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; }
.testimonial-card footer img { width: 45px; height: 45px; object-fit: cover; border-radius: 50%; }
.testimonial-card footer strong, .testimonial-card footer small { display: block; }
.testimonial-card footer strong { color: var(--navy-900); font-size: 12px; }
.testimonial-card footer small { color: var(--slate-500); font-size: 10px; }

.cta-section { padding: 82px 0; color: var(--white); background: linear-gradient(120deg, var(--maroon-700), var(--maroon-600)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-inner h2 { max-width: 700px; color: var(--white); }
.cta-inner p { max-width: 690px; margin: 18px 0 0; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex: 0 0 auto; gap: 12px; }

.page-hero { position: relative; min-height: 360px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(30deg, transparent 48%, rgba(255,255,255,.2) 49%, rgba(255,255,255,.2) 51%, transparent 52%); background-size: 32px 32px; }
.page-hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.page-hero-orb-one { right: 8%; top: -120px; width: 320px; height: 320px; background: rgba(220,168,60,.14); }
.page-hero-orb-two { right: 28%; bottom: -180px; width: 360px; height: 360px; background: rgba(53,66,184,.22); }
.page-hero-content { position: relative; z-index: 2; padding-top: 18px; }
.page-hero h1 { max-width: 850px; margin: 0; font-family: Georgia, serif; font-size: clamp(44px, 5vw, 67px); line-height: 1.04; letter-spacing: -.04em; }
.page-hero p { max-width: 700px; margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: 16px; }
.breadcrumbs { display: flex; gap: 9px; margin-top: 28px; color: rgba(255,255,255,.55); font-size: 11px; }
.breadcrumbs a:hover { color: var(--gold-300); }

.alert { width: min(calc(100% - 40px), var(--container)); margin: 20px auto 0; padding: 14px 18px; display: flex; align-items: flex-start; gap: 9px; border-radius: 10px; font-size: 13px; }
.alert-success { color: #11613f; background: #e9f8f0; border: 1px solid #b9e7ce; }
.alert-error { color: #8b1e2e; background: #fff0f1; border: 1px solid #f1c3c9; }
.alert ul { margin: 6px 0 0 18px; }

.content-layout, .article-layout, .event-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
.prose { color: var(--slate-700); font-size: 16px; line-height: 1.85; }
.prose > :first-child { margin-top: 0; }
.prose h2, .prose h3, .prose h4 { color: var(--navy-900); font-family: Georgia, serif; line-height: 1.2; }
.prose h2 { margin: 42px 0 16px; font-size: 32px; }
.prose h3 { margin: 32px 0 14px; font-size: 25px; }
.prose p { margin: 0 0 20px; }
.prose ul, .prose ol { padding-left: 23px; }
.prose blockquote { margin: 30px 0; padding: 22px 28px; border-left: 4px solid var(--maroon-600); color: var(--navy-800); background: var(--cream-100); font-family: Georgia, serif; font-size: 19px; }
.prose a { color: var(--maroon-600); text-decoration: underline; }
.content-hero-image, .article-cover { width: 100%; max-height: 520px; margin-bottom: 34px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.content-sidebar, .article-sidebar { position: sticky; top: 125px; }
.sidebar-card { padding: 26px; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.sidebar-card h3 { margin: 0 0 18px; color: var(--navy-900); font-family: Georgia, serif; font-size: 23px; }
.sidebar-card nav { display: grid; }
.sidebar-card nav a { display: flex; justify-content: space-between; gap: 10px; padding: 13px 0; border-bottom: 1px solid var(--slate-200); color: var(--slate-700); font-size: 12px; font-weight: 700; }
.sidebar-card nav a:last-child { border-bottom: 0; }
.sidebar-card nav a:hover { color: var(--maroon-600); }
.sidebar-card nav .icon { width: 15px; }
.sidebar-cta { margin-top: 20px; padding: 28px; color: var(--white); background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); border-radius: var(--radius); }
.sidebar-cta > .icon { font-size: 30px; color: var(--gold-300); }
.sidebar-cta h3 { margin: 15px 0 6px; font-family: Georgia, serif; font-size: 23px; }
.sidebar-cta p { color: rgba(255,255,255,.65); font-size: 12px; }

.filter-bar { display: flex; align-items: center; gap: 13px; margin-bottom: 38px; padding: 16px; border: 1px solid var(--slate-200); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm); }
.filter-bar.compact { max-width: 620px; margin-inline: auto; }
.filter-search { flex: 1; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid var(--slate-200); border-radius: 999px; }
.filter-search .icon { color: var(--slate-500); }
.filter-search input { width: 100%; height: 46px; border: 0; outline: none; }
.filter-bar select { min-width: 210px; height: 46px; padding: 0 16px; border: 1px solid var(--slate-200); border-radius: 999px; color: var(--slate-700); background: var(--white); outline: none; }
.article-grid, .event-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.empty-state { grid-column: 1 / -1; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 45px; border: 1px dashed var(--slate-300); border-radius: var(--radius); color: var(--slate-500); text-align: center; background: var(--slate-100); }
.empty-state .icon { width: 50px; height: 50px; margin-bottom: 16px; color: var(--slate-300); }
.empty-state h2 { margin: 0; color: var(--navy-900); font-family: Georgia, serif; }
.empty-state p { margin: 8px 0 0; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 45px; }
.page-link { min-height: 43px; display: inline-flex; align-items: center; gap: 7px; padding: 0 16px; border: 1px solid var(--slate-200); border-radius: 999px; color: var(--navy-900); font-size: 11px; font-weight: 800; }
a.page-link:hover { color: var(--white); background: var(--navy-800); border-color: var(--navy-800); }
.page-link.disabled { color: var(--slate-300); }
.page-info { color: var(--slate-500); font-size: 11px; }

.article-hero { padding: 92px 0 84px; color: var(--white); background: linear-gradient(120deg, var(--navy-950), var(--navy-700)); }
.article-hero-inner { max-width: 900px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 38px; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; }
.back-link:hover { color: var(--gold-300); }
.article-hero h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(43px, 5vw, 65px); line-height: 1.08; letter-spacing: -.035em; }
.article-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; color: rgba(255,255,255,.65); font-size: 11px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-lead { margin: 0 0 30px; color: var(--navy-800); font-family: Georgia, serif; font-size: 23px; line-height: 1.55; }
.article-share { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 24px; border-top: 1px solid var(--slate-200); }
.related-item { display: grid; grid-template-columns: 74px 1fr; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--slate-200); }
.related-item:last-child { border-bottom: 0; }
.related-item img { width: 74px; height: 62px; object-fit: cover; border-radius: 8px; }
.related-item strong, .related-item small { display: block; }
.related-item small { margin-bottom: 5px; color: var(--slate-500); font-size: 9px; }
.related-item strong { color: var(--navy-900); font-size: 11px; line-height: 1.45; }

.tab-links { width: max-content; display: flex; gap: 4px; margin: 0 auto 38px; padding: 5px; background: var(--slate-100); border-radius: 999px; }
.tab-links a { min-width: 135px; padding: 10px 18px; border-radius: 999px; color: var(--slate-500); text-align: center; font-size: 11px; font-weight: 800; }
.tab-links a.active { color: var(--white); background: var(--navy-800); }
.event-card { overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); transition: transform .25s, box-shadow .25s; }
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.event-image { position: relative; display: block; }
.event-image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.event-image time { position: absolute; left: 17px; bottom: 17px; width: 62px; height: 62px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy-900); background: var(--gold-300); border-radius: 11px; }
.event-image time strong { font-family: Georgia, serif; font-size: 24px; line-height: .9; }
.event-image time span { margin-top: 4px; font-size: 8px; font-weight: 900; }
.event-body { padding: 23px; }
.event-body h2 { margin: 12px 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 23px; line-height: 1.25; }
.event-body > p { color: var(--slate-500); font-size: 12px; }
.event-details { display: grid; gap: 8px; margin: 18px 0; color: var(--slate-500); font-size: 10px; }
.event-details span { display: flex; align-items: center; gap: 7px; }
.event-details .icon { color: var(--maroon-600); }
.event-info-card { position: sticky; top: 125px; padding: 30px; border: 1px solid var(--slate-200); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.event-info-card > div { display: flex; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--slate-200); }
.event-info-card > div > .icon { color: var(--maroon-600); font-size: 22px; }
.event-info-card small, .event-info-card strong { display: block; }
.event-info-card small { color: var(--slate-500); font-size: 9px; text-transform: uppercase; }
.event-info-card strong { margin-top: 3px; color: var(--navy-900); font-size: 12px; }
.event-info-card .btn { width: 100%; margin-top: 25px; }

.staff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.staff-card { overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); transition: transform .25s, box-shadow .25s; }
.staff-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.staff-photo { position: relative; }
.staff-photo img { width: 100%; aspect-ratio: 4/4.5; object-fit: cover; background: var(--slate-100); }
.staff-photo span { position: absolute; left: 14px; bottom: 14px; padding: 6px 10px; color: var(--navy-900); background: var(--gold-300); border-radius: 999px; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.staff-card > div:last-child { padding: 20px; }
.staff-card h2 { margin: 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 19px; }
.staff-card p { margin: 5px 0; color: var(--maroon-600); font-size: 10px; font-weight: 800; }
.staff-card small { color: var(--slate-500); font-size: 10px; }
.achievement-list { display: grid; gap: 18px; }
.achievement-row { display: grid; grid-template-columns: 210px 1fr 90px; align-items: center; gap: 28px; padding: 18px; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); transition: transform .2s, box-shadow .2s; }
.achievement-row:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.achievement-row > img { width: 210px; height: 150px; object-fit: cover; border-radius: 12px; }
.achievement-row-content > div { display: flex; gap: 10px; }
.year-pill { padding: 5px 9px; color: var(--navy-800); background: var(--slate-100); border-radius: 999px; font-size: 9px; font-weight: 900; }
.achievement-row h2 { margin: 10px 0 5px; color: var(--navy-900); font-family: Georgia, serif; font-size: 25px; }
.achievement-owner { color: var(--maroon-600)!important; font-size: 11px!important; font-weight: 800; }
.achievement-row p { margin: 5px 0; color: var(--slate-500); font-size: 12px; }
.achievement-medal { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; color: var(--maroon-600); background: var(--cream-100); border-radius: 50%; }
.achievement-medal .icon { width: 33px; height: 33px; }
.program-directory-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.program-directory-card { display: grid; grid-template-columns: 220px 1fr; overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); }
.program-directory-card > img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.program-directory-card > div { padding: 28px; }
.program-directory-card h2 { margin: 12px 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 27px; }
.program-directory-card p { color: var(--slate-500); font-size: 12px; }
.program-directory-card ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.program-directory-card li { display: flex; align-items: center; gap: 9px; color: var(--slate-500); font-size: 10px; }
.program-directory-card li .icon { color: var(--maroon-600); }
.program-directory-card li strong { color: var(--slate-700); }
.facility-directory-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.facility-directory-card { overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius); background: var(--white); }
.facility-directory-card img { width: 100%; aspect-ratio: 16/11; object-fit: cover; transition: transform .6s; }
.facility-directory-card:hover img { transform: scale(1.05); }
.facility-directory-card div { padding: 22px; }
.facility-directory-card h2 { margin: 0 0 8px; color: var(--navy-900); font-family: Georgia, serif; font-size: 23px; }
.facility-directory-card p { margin: 0; color: var(--slate-500); font-size: 12px; }

.album-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.album-card { position: relative; height: 370px; overflow: hidden; border-radius: var(--radius); color: var(--white); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.album-card:hover img { transform: scale(1.06); }
.album-overlay { position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgba(8,13,61,.94)); }
.album-content { position: absolute; left: 25px; right: 25px; bottom: 22px; }
.album-content span { color: var(--gold-300); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.album-content h2 { margin: 7px 0 4px; font-family: Georgia, serif; font-size: 25px; }
.album-content p { margin: 0; color: rgba(255,255,255,.65); font-size: 10px; }
.photo-grid { columns: 3 280px; column-gap: 15px; }
.photo-item { position: relative; width: 100%; margin: 0 0 15px; padding: 0; overflow: hidden; break-inside: avoid; border: 0; border-radius: 12px; background: var(--slate-100); cursor: zoom-in; }
.photo-item img { width: 100%; transition: transform .5s, filter .5s; }
.photo-item:hover img { transform: scale(1.04); filter: brightness(.75); }
.photo-item span { position: absolute; left: 14px; right: 14px; bottom: 12px; display: flex; align-items: center; gap: 6px; color: var(--white); opacity: 0; transform: translateY(8px); transition: .2s; font-size: 10px; font-weight: 700; }
.photo-item:hover span { opacity: 1; transform: translateY(0); }
.lightbox { position: fixed; inset: 0; z-index: 100; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 50px; background: rgba(3,10,24,.95); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 90vw); max-height: 78vh; object-fit: contain; border-radius: 10px; }
.lightbox p { color: var(--white); }
.lightbox button { position: absolute; right: 28px; top: 25px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; }
.download-list { display: grid; gap: 14px; }
.download-item { display: grid; grid-template-columns: 68px 1fr auto; align-items: center; gap: 20px; padding: 22px; border: 1px solid var(--slate-200); border-radius: 14px; background: var(--white); transition: box-shadow .2s, transform .2s; }
.download-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.download-icon { width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; color: var(--maroon-600); background: var(--cream-100); border-radius: 13px; }
.download-item > div:nth-child(2) > span { color: var(--maroon-600); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.download-item h2 { margin: 4px 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 20px; }
.download-item p { margin: 0; color: var(--slate-500); font-size: 11px; }
.download-item small { color: var(--slate-300); font-size: 9px; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.contact-info h2 { margin: 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 43px; line-height: 1.12; }
.contact-info > p { color: var(--slate-500); }
.contact-cards { display: grid; gap: 14px; margin: 30px 0; }
.contact-cards > div { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--slate-200); border-radius: 12px; }
.contact-cards > div > span { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--maroon-600); background: var(--cream-100); border-radius: 10px; }
.contact-cards small, .contact-cards strong { display: block; }
.contact-cards small { color: var(--slate-500); font-size: 9px; text-transform: uppercase; }
.contact-cards strong { margin-top: 3px; color: var(--navy-900); font-size: 12px; }
.contact-form { padding: 38px; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); background: var(--slate-100); }
.contact-form h2 { margin: 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 32px; }
.contact-form > p { margin: 6px 0 25px; color: var(--slate-500); font-size: 12px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label > span { color: var(--slate-700); font-size: 10px; font-weight: 800; }
.form-grid input, .form-grid textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--slate-300); border-radius: 9px; background: var(--white); outline: none; transition: border .2s, box-shadow .2s; }
.form-grid input { height: 47px; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--navy-700); box-shadow: 0 0 0 3px rgba(53,66,184,.1); }
.contact-form .btn { margin-top: 23px; }
.large-search { max-width: 850px; display: flex; align-items: center; gap: 12px; margin: 0 auto 35px; padding: 10px 10px 10px 20px; border: 1px solid var(--slate-200); border-radius: 999px; box-shadow: var(--shadow-sm); }
.large-search .icon { color: var(--slate-500); }
.large-search input { flex: 1; height: 44px; border: 0; outline: none; }
.result-summary { margin-bottom: 20px; color: var(--slate-500); font-size: 12px; }
.search-results { display: grid; gap: 13px; }
.search-result { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 20px; padding: 22px; border: 1px solid var(--slate-200); border-radius: 13px; transition: transform .2s, box-shadow .2s; }
.search-result:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.result-type { color: var(--maroon-600); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.search-result h2 { margin: 0; color: var(--navy-900); font-family: Georgia, serif; font-size: 21px; }
.search-result p { margin: 5px 0 0; color: var(--slate-500); font-size: 11px; }
.search-result > .icon { color: var(--maroon-600); }

.site-footer { position: relative; padding-top: 80px; color: rgba(255,255,255,.68); background: var(--navy-950); overflow: hidden; }
.footer-pattern { position: absolute; right: -120px; top: -180px; width: 450px; height: 450px; border: 80px solid rgba(220,168,60,.05); border-radius: 50%; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 55px; padding-bottom: 60px; }
.brand-light strong { color: var(--white); }
.brand-light small { color: rgba(255,255,255,.45); }
.footer-about p { max-width: 330px; margin: 22px 0 0; font-size: 12px; }
.site-footer h3 { margin: 5px 0 19px; color: var(--white); font-size: 13px; }
.footer-links, .footer-contact { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; font-size: 11px; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-300); }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact .icon { width: 15px; margin-top: 4px; color: var(--gold-300); }
.footer-bottom { position: relative; min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: var(--gold-300); }
.back-to-top { position: fixed; z-index: 40; right: 22px; bottom: 22px; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transform: translateY(12px); border: 0; border-radius: 50%; color: var(--white); background: var(--maroon-600); box-shadow: var(--shadow-md); cursor: pointer; transition: .25s; }
.back-to-top.visible { visibility: visible; opacity: 1; transform: translateY(0); }
.back-to-top .icon { transform: rotate(-90deg); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
    .main-nav > a, .nav-dropdown-toggle { padding-inline: 8px; font-size: 12px; }
    .brand { min-width: 215px; }
    .brand strong { font-size: 14px; }
    .intro-grid, .facilities-layout { gap: 55px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .news-card-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; }
    .news-card-featured .card-media img { height: 100%; }
    .article-grid, .event-grid, .facility-directory-grid { grid-template-columns: repeat(2,1fr); }
    .staff-grid { grid-template-columns: repeat(3,1fr); }
    .program-directory-card { grid-template-columns: 180px 1fr; }
    .footer-grid { grid-template-columns: 1.2fr repeat(3,1fr); gap: 30px; }
}

@media (max-width: 900px) {
    :root { --header-height: 74px; }
    .topbar { display: none; }
    .site-header { top: 0; }
    .nav-toggle { display: inline-flex; }
    .main-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; width: min(390px, 88vw); padding: 20px; display: block; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateX(100%); background: var(--white); box-shadow: var(--shadow-lg); transition: .3s var(--ease); }
    body.nav-open .main-nav { visibility: visible; opacity: 1; transform: translateX(0); }
    .main-nav > a, .nav-dropdown-toggle { width: 100%; min-height: 50px; justify-content: space-between; padding-inline: 12px; border-bottom: 1px solid var(--slate-200); border-radius: 0; font-size: 14px; }
    .main-nav > a::after, .nav-dropdown-toggle::after { display: none; }
    .main-nav .nav-cta { margin: 16px 0 0; justify-content: center; border: 0; border-radius: 10px; }
    .search-toggle { margin: 14px 0 0; }
    .nav-dropdown-menu { position: static; width: auto; display: none; visibility: visible; opacity: 1; transform: none; border: 0; box-shadow: none; }
    .nav-dropdown.open .nav-dropdown-menu { display: grid; }
    .nav-dropdown:hover .nav-dropdown-menu { display: none; }
    .nav-dropdown.open:hover .nav-dropdown-menu { display: grid; }
    .search-panel { inset: 0; padding-top: 80px; }
    .hero { height: 700px; min-height: 0; }
    .hero-copy { width: 85%; }
    .quick-access { grid-template-columns: repeat(2,1fr); }
    .quick-access > a:nth-child(2) { border-right: 0; }
    .quick-access > a:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
    .intro-grid, .agenda-layout, .facilities-layout, .contact-layout { grid-template-columns: 1fr; }
    .intro-grid { gap: 65px; }
    .intro-visual { max-width: 550px; margin-inline: auto; }
    .agenda-heading { position: static; }
    .statistics-grid { grid-template-columns: repeat(2,1fr); gap: 35px 0; }
    .stat-item:nth-child(2) { border-right: 0; }
    .achievement-grid, .program-grid, .testimonial-grid, .album-grid { grid-template-columns: repeat(2,1fr); }
    .cta-inner { align-items: flex-start; flex-direction: column; }
    .content-layout, .article-layout, .event-detail-layout { grid-template-columns: 1fr; }
    .content-sidebar, .article-sidebar, .event-info-card { position: static; }
    .program-directory-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 75px 0; }
    .brand { min-width: 0; }
    .brand img { width: 44px; height: 44px; }
    .brand strong { font-size: 13px; }
    .brand small { display: none; }
    .hero { height: 650px; }
    .hero-copy { width: 100%; }
    .hero-copy h1 { font-size: 48px; }
    .hero-copy p { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-controls { bottom: 30px; }
    .hero-scroll { display: none; }
    .quick-access-wrap { margin-top: 0; }
    .quick-access { width: 100%; grid-template-columns: 1fr; border-radius: 0; }
    .quick-access > a { border-right: 0; border-bottom: 1px solid var(--slate-200); }
    .quick-access > a:last-child { border-bottom: 0; }
    .image-label { right: -8px; }
    .intro-badge { left: -8px; width: 110px; height: 110px; }
    .feature-list { grid-template-columns: 1fr; }
    .statistics-grid { gap: 25px 0; }
    .stat-item { padding: 5px 14px; }
    .stat-item strong { font-size: 34px; }
    .split-heading { align-items: flex-start; flex-direction: column; }
    .news-grid, .article-grid, .event-grid, .achievement-grid, .program-grid, .testimonial-grid, .facility-directory-grid, .album-grid { grid-template-columns: 1fr; }
    .news-card-featured { display: block; grid-column: auto; }
    .agenda-item { grid-template-columns: 62px 1fr; gap: 14px; }
    .agenda-item time { width: 58px; height: 58px; }
    .agenda-item > .icon { display: none; }
    .agenda-item p { align-items: flex-start; flex-direction: column; gap: 4px; }
    .facility-collage, .gallery-preview-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 250px 180px; }
    .facility-tile.tile-1, .gallery-preview-item.item-1 { grid-row: auto; grid-column: 1 / 3; }
    .gallery-preview-item.item-4 { display: none; }
    .cta-actions { width: 100%; flex-direction: column; }
    .page-hero { min-height: 320px; }
    .page-hero h1 { font-size: 42px; }
    .filter-bar { align-items: stretch; flex-direction: column; }
    .filter-bar select { width: 100%; }
    .article-hero { padding: 70px 0; }
    .article-hero h1 { font-size: 39px; }
    .article-share { align-items: flex-start; flex-direction: column; }
    .staff-grid { grid-template-columns: repeat(2,1fr); }
    .achievement-row { grid-template-columns: 1fr; }
    .achievement-row > img { width: 100%; height: 200px; }
    .achievement-medal { display: none; }
    .program-directory-card { grid-template-columns: 1fr; }
    .program-directory-card > img { min-height: 230px; }
    .download-item { grid-template-columns: 55px 1fr; }
    .download-item .btn { grid-column: 1 / -1; }
    .contact-form { padding: 25px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid label.full { grid-column: auto; }
    .large-search { border-radius: 14px; }
    .large-search .btn { padding-inline: 15px; }
    .search-result { grid-template-columns: 1fr auto; }
    .result-type { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto!important; transition-duration: .01ms!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; }
    .reveal { opacity: 1; transform: none; }
}

/* Error pages */
.error-page { min-height: 68vh; display: grid; place-items: center; padding: 110px 0; overflow: hidden; background: radial-gradient(circle at 80% 10%, rgba(245,196,91,.25), transparent 26%), linear-gradient(145deg, #f7f9fc, #fff8f1); }
.error-inner { position: relative; max-width: 780px; text-align: center; }
.error-code { position: absolute; z-index: 0; top: 50%; left: 50%; transform: translate(-50%,-58%); color: rgba(23,52,95,.055); font-family: Georgia, serif; font-size: clamp(190px,32vw,410px); font-weight: 800; line-height: .8; pointer-events: none; }
.error-inner > *:not(.error-code) { position: relative; z-index: 1; }
.error-inner h1 { max-width: 700px; margin: 14px auto; color: var(--navy-900); font-family: Georgia, serif; font-size: clamp(40px,6vw,68px); line-height: 1.05; letter-spacing: -.04em; }
.error-inner p { max-width: 570px; margin: 0 auto; color: var(--slate-600); font-size: 16px; }
.error-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
@media (max-width: 560px) { .error-actions { align-items: stretch; flex-direction: column; } }

/* =========================================================
   PERCik MODERN HERITAGE — multicolor identity system
   ========================================================= */
:root {
    --navy-950: #0a1037;
    --navy-900: #10184f;
    --navy-800: #1a218b;
    --navy-700: #3947b7;
    --maroon-700: #c75346;
    --maroon-600: #e56f5d;
    --gold-500: #d4a93a;
    --gold-300: #f1d78a;
    --teal-700: #0f6f6b;
    --teal-600: #168c86;
    --sky-500: #5b8fd9;
    --cream-50: #fffdf8;
    --cream-100: #fff8e9;
    --mint-100: #edf8f4;
    --coral-100: #fff0ec;
    --lavender-100: #f2f1ff;
    --slate-900: #18213d;
    --slate-700: #46516d;
    --slate-500: #727b90;
    --slate-300: #cbd0dc;
    --slate-200: #e4e5eb;
    --slate-100: #f7f7fa;
    --white: #fff;
    --success: #18724b;
    --danger: #b42336;
    --shadow-sm: 0 10px 28px rgba(25, 31, 73, .08);
    --shadow-md: 0 20px 52px rgba(25, 31, 73, .13);
    --shadow-lg: 0 32px 84px rgba(10, 16, 55, .24);
}

body {
    background: var(--cream-50);
}
::selection { color: #fff; background: var(--maroon-600); }

.topbar {
    background: linear-gradient(90deg, var(--navy-950), var(--navy-900));
}
.topbar-contact a:hover { color: var(--gold-300); }
.site-header {
    border-bottom-color: rgba(26, 33, 139, .08);
    background: rgba(255,253,248,.96);
}
.site-header.scrolled { box-shadow: 0 12px 34px rgba(16,24,79,.10); }
.brand img {
    padding: 4px;
    border: 1px solid rgba(26,33,139,.10);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(26,33,139,.11);
}
.brand strong { color: var(--navy-800); }
.brand small { color: #68718d; }
.main-nav > a::after,
.nav-dropdown-toggle::after {
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-500), var(--maroon-600));
}
.nav-dropdown-menu a:hover { color: var(--navy-800); background: var(--cream-100); }
.main-nav .nav-cta,
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--maroon-600), #cf584b);
    box-shadow: 0 12px 28px rgba(229,111,93,.24);
}
.main-nav .nav-cta:hover,
.btn-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #cf584b, #af4038);
    box-shadow: 0 16px 34px rgba(199,83,70,.30);
}
.search-toggle { color: var(--navy-800); background: var(--lavender-100); }
.search-toggle:hover { color: #fff; background: var(--teal-600); }
.search-panel {
    background: radial-gradient(circle at 82% 0%, rgba(212,169,58,.20), transparent 30rem), rgba(10,16,55,.98);
}
.btn-outline:hover { border-color: var(--teal-600); background: var(--teal-600); }
.text-link { color: var(--navy-700); }
.text-link:hover { color: var(--maroon-600); }
.eyebrow { color: var(--teal-700); }
.eyebrow.light { color: var(--gold-300); }

.hero {
    background: var(--navy-950);
}
.hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 18%, rgba(212,169,58,.21), transparent 27rem),
        radial-gradient(circle at 74% 80%, rgba(229,111,93,.13), transparent 25rem);
}
.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10,16,55,.97) 0%, rgba(16,24,79,.85) 42%, rgba(10,16,55,.25) 76%, rgba(10,16,55,.38) 100%),
        linear-gradient(0deg, rgba(10,16,55,.66), transparent 60%);
}
.hero-copy h1,
.page-hero h1,
.article-hero h1 { text-shadow: 0 14px 44px rgba(0,0,0,.23); }
.slider-dot.active { background: var(--gold-300); }
.slider-arrows button:hover { color: var(--navy-950); background: var(--gold-300); }

.quick-access {
    border: 1px solid rgba(16,24,79,.07);
    box-shadow: 0 22px 55px rgba(16,24,79,.13);
}
.quick-access > a { position: relative; overflow: hidden; background: #fff; }
.quick-access > a::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--quick-accent, var(--navy-800));
}
.quick-access > a:nth-child(1) { --quick-accent: var(--maroon-600); --quick-soft: var(--coral-100); }
.quick-access > a:nth-child(2) { --quick-accent: var(--gold-500); --quick-soft: var(--cream-100); }
.quick-access > a:nth-child(3) { --quick-accent: var(--teal-600); --quick-soft: var(--mint-100); }
.quick-access > a:nth-child(4) { --quick-accent: var(--navy-700); --quick-soft: var(--lavender-100); }
.quick-access > a:hover { color: var(--navy-900); background: var(--quick-soft); }
.quick-access > a:hover > .icon { color: var(--quick-accent); }
.quick-icon { color: var(--quick-accent); background: var(--quick-soft); }
.quick-access a:hover .quick-icon { color: #fff; background: var(--quick-accent); }
.quick-access a:hover small { color: var(--slate-500); }

.intro-section {
    background:
        radial-gradient(circle at 0% 100%, rgba(212,169,58,.10), transparent 24rem),
        var(--cream-50);
}
.image-frame::before { border-color: var(--gold-500); }
.image-label { background: var(--teal-600); }
.intro-badge {
    color: var(--navy-900);
    background: linear-gradient(145deg, #f6df9c, var(--gold-300));
}
.feature-list .icon { color: var(--teal-600); background: var(--mint-100); }

.statistics-section {
    background:
        radial-gradient(circle at 8% 20%, rgba(212,169,58,.24), transparent 24%),
        radial-gradient(circle at 83% 80%, rgba(22,140,134,.22), transparent 28%),
        linear-gradient(120deg, var(--navy-950), var(--navy-800));
}
.statistics-section::before { opacity: .16; background: radial-gradient(circle at 45% 50%, var(--maroon-600), transparent 26%); }
.stat-item strong { color: #fff; }
.stat-item:nth-child(2) strong { color: var(--gold-300); }
.stat-item:nth-child(3) strong { color: #86d6cf; }
.stat-item:nth-child(4) strong { color: #ffb3a7; }

.section-soft {
    background:
        radial-gradient(circle at 95% 8%, rgba(212,169,58,.13), transparent 24rem),
        linear-gradient(180deg, #fffaf0, var(--cream-100));
}
.section-heading h2,
.intro-copy h2,
.news-card h2,
.event-body h2,
.staff-card h2,
.achievement-row h2,
.program-directory-card h2,
.facility-directory-card h2,
.download-item h2,
.contact-info h2,
.contact-form h2 { color: var(--navy-900); }
.news-card,
.event-card,
.staff-card,
.achievement-row,
.program-directory-card,
.facility-directory-card,
.download-item,
.contact-form,
.sidebar-card,
.search-result,
.filter-bar,
.testimonial-card {
    border-color: rgba(16,24,79,.09);
    box-shadow: 0 16px 40px rgba(16,24,79,.07);
}
.news-card { position: relative; }
.news-card::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0 0 auto;
    height: 4px;
    background: var(--card-accent, var(--navy-700));
}
.news-card:nth-child(1) { --card-accent: var(--maroon-600); }
.news-card:nth-child(2) { --card-accent: var(--teal-600); }
.news-card:nth-child(3) { --card-accent: var(--gold-500); }
.news-card:nth-child(4) { --card-accent: var(--sky-500); }
.news-card:nth-child(5) { --card-accent: var(--maroon-600); }
.news-card:nth-child(6) { --card-accent: var(--teal-600); }
.news-card:hover,
.event-card:hover,
.staff-card:hover,
.achievement-row:hover,
.program-directory-card:hover,
.facility-directory-card:hover,
.download-item:hover,
.search-result:hover { box-shadow: 0 24px 58px rgba(16,24,79,.14); }
.card-category { color: var(--navy-950); background: var(--gold-300); }
.news-card:nth-child(2) .card-category { color: #fff; background: var(--teal-600); }
.news-card:nth-child(3) .card-category { color: #fff; background: var(--maroon-600); }

.agenda-section {
    background:
        radial-gradient(circle at 14% 8%, rgba(212,169,58,.18), transparent 25rem),
        radial-gradient(circle at 95% 90%, rgba(22,140,134,.30), transparent 29rem),
        linear-gradient(125deg, var(--navy-950), #142367 58%, var(--teal-700));
}
.agenda-item time { color: var(--navy-950); background: linear-gradient(145deg, #f6dfa0, var(--gold-300)); }
.agenda-item:nth-child(even) time { color: #fff; background: var(--maroon-600); }
.agenda-type, .agenda-item > .icon { color: var(--gold-300); }
.agenda-item:hover { background: rgba(255,255,255,.06); }

.achievement-card { border-color: rgba(16,24,79,.08); box-shadow: 0 14px 36px rgba(16,24,79,.06); }
.achievement-card:nth-child(3n+1) { --achievement-accent: var(--gold-500); --achievement-soft: var(--cream-100); }
.achievement-card:nth-child(3n+2) { --achievement-accent: var(--teal-600); --achievement-soft: var(--mint-100); }
.achievement-card:nth-child(3n+3) { --achievement-accent: var(--maroon-600); --achievement-soft: var(--coral-100); }
.achievement-card::after { background: var(--achievement-soft); }
.achievement-card:hover { border-color: var(--achievement-accent); }
.achievement-icon { color: var(--achievement-accent); background: var(--achievement-soft); }
.achievement-level { color: var(--achievement-accent); }
.achievement-card > strong { color: var(--achievement-accent); }

.programs-section {
    background:
        radial-gradient(circle at 5% 90%, rgba(22,140,134,.12), transparent 25rem),
        radial-gradient(circle at 96% 10%, rgba(229,111,93,.10), transparent 24rem),
        var(--lavender-100);
}
.program-card { border: 1px solid rgba(16,24,79,.08); box-shadow: 0 18px 44px rgba(16,24,79,.11); }
.program-card:nth-child(3n+1) .program-overlay { background: linear-gradient(0deg, rgba(10,16,55,.96), rgba(10,16,55,.03) 73%); }
.program-card:nth-child(3n+2) .program-overlay { background: linear-gradient(0deg, rgba(11,92,88,.96), rgba(11,92,88,.03) 73%); }
.program-card:nth-child(3n+3) .program-overlay { background: linear-gradient(0deg, rgba(145,55,46,.96), rgba(145,55,46,.03) 73%); }
.program-content span { color: var(--gold-300); }

.facilities-layout { position: relative; }
.facilities-layout::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -70px -45px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--mint-100), #fff 55%, var(--cream-100));
}
.facility-tile { box-shadow: 0 16px 38px rgba(16,24,79,.11); }
.facility-tile::after { background: linear-gradient(transparent, rgba(10,16,55,.86)); }
.facility-tile:nth-child(2)::after { background: linear-gradient(transparent, rgba(15,111,107,.88)); }
.facility-tile:nth-child(3)::after { background: linear-gradient(transparent, rgba(179,70,58,.88)); }
.facility-tile:nth-child(4)::after { background: linear-gradient(transparent, rgba(126,88,21,.88)); }

.gallery-preview-section {
    background:
        radial-gradient(circle at 14% 10%, rgba(229,111,93,.20), transparent 26rem),
        radial-gradient(circle at 90% 80%, rgba(212,169,58,.19), transparent 28rem),
        linear-gradient(145deg, #0a1037, #131d5b 55%, #0b5b58);
}
.gallery-preview-item { box-shadow: 0 18px 48px rgba(0,0,0,.19); }
.gallery-preview-item span { color: var(--gold-300); }

.testimonials-section {
    background:
        radial-gradient(circle at 100% 0%, rgba(229,111,93,.08), transparent 24rem),
        var(--cream-50);
}
.testimonial-card:nth-child(3n+1) { border-top: 4px solid var(--gold-500); }
.testimonial-card:nth-child(3n+2) { border-top: 4px solid var(--teal-600); }
.testimonial-card:nth-child(3n+3) { border-top: 4px solid var(--maroon-600); }
.quote-mark { color: var(--gold-500); }

.page-hero,
.article-hero,
.sidebar-cta {
    background:
        radial-gradient(circle at 88% 14%, rgba(212,169,58,.27), transparent 25rem),
        radial-gradient(circle at 65% 100%, rgba(229,111,93,.16), transparent 25rem),
        linear-gradient(125deg, var(--navy-950), var(--navy-800) 62%, var(--teal-700));
}
.prose a { color: var(--teal-700); }
.prose blockquote { color: var(--navy-800); border-left-color: var(--gold-500); background: var(--cream-100); }
.staff-photo span, .event-image time { color: var(--navy-950); background: var(--gold-300); }
.achievement-owner, .result-type, .search-result > .icon { color: var(--teal-700); }

.cta-section {
    background:
        radial-gradient(circle at 85% 15%, rgba(255,216,138,.25), transparent 25rem),
        radial-gradient(circle at 5% 90%, rgba(22,140,134,.23), transparent 26rem),
        linear-gradient(118deg, var(--navy-900), var(--navy-700) 58%, #b64c41);
}
.site-footer {
    background:
        radial-gradient(circle at 88% 0%, rgba(212,169,58,.15), transparent 26rem),
        radial-gradient(circle at 18% 100%, rgba(22,140,134,.13), transparent 25rem),
        linear-gradient(145deg, #080d2d, #10184f 64%, #13245d);
}
.footer-pattern { border-color: rgba(212,169,58,.06); }
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover,
.breadcrumbs a:hover,
.back-link:hover { color: var(--gold-300); }
.footer-contact .icon { color: var(--gold-300); }

.form-grid input:focus,
.form-grid textarea:focus,
.filter-search input:focus,
.large-search input:focus {
    border-color: var(--teal-600);
    box-shadow: 0 0 0 4px rgba(22,140,134,.11);
}
.back-to-top { background: linear-gradient(135deg, var(--teal-600), var(--navy-700)); }

@media (max-width: 720px) {
    .brand img { width: 52px; height: 52px; border-radius: 15px; }
    .facilities-layout::before { inset: -35px -12px; border-radius: 25px; }
}
.facilities-layout { isolation: isolate; }

/* =========================================================
   PERCik LIGHT HOME SECTIONS — START
   Statistics, agenda, gallery, CTA and footer refinement
   ========================================================= */

.statistics-section {
    color: var(--navy-900);
    background: #ffffff;
    border-top: 1px solid #edf0f7;
    border-bottom: 1px solid #edf0f7;
}
.statistics-section::before {
    opacity: 1;
    background:
        radial-gradient(circle at 9% 35%, rgba(212,169,58,.10), transparent 20rem),
        radial-gradient(circle at 88% 70%, rgba(22,140,134,.08), transparent 22rem);
}
.stat-item {
    border-right-color: #e2e7f1;
}
.stat-item strong { color: var(--navy-800); }
.stat-item:nth-child(2) strong { color: #b88616; }
.stat-item:nth-child(3) strong { color: var(--teal-600); }
.stat-item:nth-child(4) strong { color: var(--maroon-600); }
.stat-item span { color: var(--slate-500); }

.agenda-section {
    color: var(--slate-900);
    background: #ffffff;
    border-top: 1px solid #edf0f7;
    border-bottom: 1px solid #edf0f7;
}
.agenda-heading h2 { color: var(--navy-900); }
.agenda-heading p { color: var(--slate-500); }
.agenda-section .eyebrow.light { color: var(--teal-700); }
.agenda-list { border-top-color: #dfe4ee; }
.agenda-item {
    border-bottom-color: #dfe4ee;
}
a.agenda-item:hover,
.agenda-item:hover {
    padding-inline: 15px;
    background: #f7f9fd;
}
.agenda-item h3 { color: var(--navy-900); }
.agenda-item p { color: var(--slate-500); }
.agenda-type,
.agenda-item > .icon { color: #b88616; }
.agenda-section .btn-light {
    color: #ffffff;
    background: var(--navy-800);
    box-shadow: 0 12px 30px rgba(26,33,139,.16);
}
.agenda-section .btn-light:hover {
    color: #ffffff;
    background: var(--teal-700);
}

.gallery-preview-section {
    color: var(--slate-900);
    background: #ffffff;
    border-top: 1px solid #edf0f7;
    border-bottom: 1px solid #edf0f7;
}
.gallery-preview-section .section-heading.light h2 { color: var(--navy-900); }
.gallery-preview-section .section-heading.light p {
    color: var(--slate-500);
    opacity: 1;
}
.gallery-preview-section .eyebrow.light { color: #b88616; }
.gallery-preview-item {
    border: 1px solid rgba(16,24,79,.08);
    box-shadow: 0 18px 44px rgba(16,24,79,.12);
}
.gallery-preview-section .btn-light {
    color: #ffffff;
    background: var(--navy-800);
    box-shadow: 0 12px 30px rgba(26,33,139,.16);
}
.gallery-preview-section .btn-light:hover {
    color: #ffffff;
    background: var(--teal-700);
}

.cta-section {
    padding: 86px 0;
    color: var(--slate-900);
    background: #ffffff;
    border-top: 1px solid #edf0f7;
}
.cta-section .cta-inner {
    position: relative;
    padding: 54px 58px;
    overflow: hidden;
    border: 1px solid #e4e8f2;
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 15%, rgba(229,111,93,.13), transparent 20rem),
        radial-gradient(circle at 8% 90%, rgba(22,140,134,.11), transparent 20rem),
        linear-gradient(135deg, #f8f9ff, #fffdf8);
    box-shadow: 0 24px 60px rgba(16,24,79,.09);
}
.cta-section .cta-inner::after {
    content: "";
    position: absolute;
    z-index: 0;
    right: -70px;
    top: -90px;
    width: 240px;
    height: 240px;
    border: 44px solid rgba(26,33,139,.045);
    border-radius: 50%;
    pointer-events: none;
}
.cta-section .cta-inner > * {
    position: relative;
    z-index: 1;
}
.cta-inner h2 { color: var(--navy-900); }
.cta-inner p { color: var(--slate-500); }
.cta-section .eyebrow.light { color: var(--teal-700); }
.cta-section .btn-light {
    color: #ffffff;
    background: var(--navy-800);
    box-shadow: 0 12px 30px rgba(26,33,139,.16);
}
.cta-section .btn-light:hover {
    color: #ffffff;
    background: var(--teal-700);
}
.cta-section .btn-ghost-light {
    color: var(--navy-800);
    border-color: rgba(26,33,139,.28);
    background: #ffffff;
}
.cta-section .btn-ghost-light:hover {
    color: #ffffff;
    border-color: var(--maroon-600);
    background: var(--maroon-600);
}

.site-footer {
    color: var(--slate-700);
    background: #f4f6fc;
    border-top: 1px solid #e0e5f0;
}
.footer-pattern {
    border-color: rgba(26,33,139,.045);
}
.site-footer h3 { color: var(--navy-900); }
.site-footer .brand-light strong { color: var(--navy-800); }
.site-footer .brand-light small { color: var(--slate-500); }
.footer-about p,
.footer-links,
.footer-contact,
.footer-bottom { color: var(--slate-700); }
.footer-links a,
.footer-contact a,
.footer-bottom a { color: var(--slate-700); }
.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover { color: var(--teal-700); }
.footer-contact .icon { color: #b88616; }
.footer-bottom { border-top-color: #dce2ed; }

@media (max-width: 900px) {
    .cta-section .cta-inner { padding: 42px 36px; }
}

@media (max-width: 720px) {
    .statistics-section { padding-block: 46px; }
    .stat-item { border-right-color: #e2e7f1; }
    .agenda-section { padding-block: 78px; }
    .gallery-preview-section { padding-block: 78px; }
    .cta-section { padding-block: 64px; }
    .cta-section .cta-inner {
        padding: 36px 24px;
        border-radius: 22px;
    }
}

/* PERCik LIGHT HOME SECTIONS — END */

/* PERCIC_NATURAL_HERO_START */
/* Menampilkan warna asli foto hero tanpa lapisan biru. */
.hero {
    background: #171717;
}

.hero::before {
    display: none !important;
    background: none !important;
}

.hero-media {
    opacity: 1 !important;
    filter: none !important;
    mix-blend-mode: normal !important;
    transform: translateZ(0);
}

/*
 * Overlay menggunakan hitam netral dan hanya lebih kuat di area kiri,
 * tempat judul hero ditampilkan. Bagian kanan tetap memperlihatkan
 * warna asli foto secara maksimal.
 */
.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .60) 0%,
            rgba(0, 0, 0, .40) 30%,
            rgba(0, 0, 0, .16) 56%,
            rgba(0, 0, 0, .03) 76%,
            rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .22) 0%,
            rgba(0, 0, 0, 0) 48%
        ) !important;
}

.hero-copy h1 {
    text-shadow:
        0 3px 8px rgba(0, 0, 0, .55),
        0 16px 42px rgba(0, 0, 0, .28);
}

.hero-copy p {
    color: rgba(255, 255, 255, .96);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.hero .eyebrow.light {
    color: #ffe18a;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
}

@media (max-width: 768px) {
    .hero-media {
        object-position: center center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, .62) 0%,
                rgba(0, 0, 0, .42) 56%,
                rgba(0, 0, 0, .18) 100%
            ),
            linear-gradient(
                0deg,
                rgba(0, 0, 0, .30) 0%,
                rgba(0, 0, 0, 0) 55%
            ) !important;
    }
}
/* PERCIC_NATURAL_HERO_END */

/* PERCIC_HERO_CONTENT_FIX_START */
/* Pastikan konten slider selalu terlihat tanpa bergantung pada animasi reveal. */
.hero-content {
    position: relative;
    z-index: 5 !important;
}

.hero-copy,
.hero-copy.reveal,
.hero-slide.active .hero-copy,
.hero-slide.active .hero-copy.reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-copy h1 {
    color: #ffffff !important;
    text-shadow:
        0 3px 10px rgba(0, 0, 0, .72),
        0 18px 48px rgba(0, 0, 0, .34);
}

.hero-copy p {
    color: rgba(255, 255, 255, .96) !important;
}

.hero-actions {
    position: relative;
    z-index: 6;
}

@media (max-width: 768px) {
    .hero-copy {
        width: 100% !important;
    }
}
/* PERCIC_HERO_CONTENT_FIX_END */

/* PERCIC_HERO_LAYOUT_FIX_START */
/*
 * Perbaikan struktur hero:
 * gambar dan overlay harus menjadi layer absolut, sedangkan konten slider
 * berada di atasnya. Sebelumnya gambar setinggi hero masih ikut alur normal,
 * sehingga teks terdorong ke bawah dan terpotong oleh overflow hero.
 */
.hero-slide {
    position: absolute !important;
    inset: 0;
    overflow: hidden;
}

.hero-media {
    position: absolute !important;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover;
}

.hero-overlay {
    position: absolute !important;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: absolute !important;
    inset: 0;
    z-index: 5 !important;
    width: min(calc(100% - 40px), var(--container));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
}

.hero-copy,
.hero-slide.active .hero-copy {
    position: relative;
    z-index: 6;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.hero-copy h1,
.hero-copy p,
.hero-actions,
.hero .eyebrow {
    opacity: 1 !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .hero-content {
        width: min(calc(100% - 28px), var(--container));
    }

    .hero-copy {
        width: 100% !important;
    }
}
/* PERCIC_HERO_LAYOUT_FIX_END */
