:root {
    --burgundy: #ad1f3d;
    --burgundy-dark: #7e132b;
    --burgundy-deep: #4f0c1c;
    --rose-soft: #f8e9ed;
    --cream: #fffaf6;
    --paper: #ffffff;
    --ink: #202029;
    --ink-soft: #4f4f5c;
    --line: #e7deda;
    --gold: #d9a441;
    --green: #237a57;
    --warning: #9a5b12;
    --shadow-sm: 0 8px 28px rgba(52, 20, 28, .08);
    --shadow-lg: 0 24px 70px rgba(52, 20, 28, .16);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --container: 1200px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--font-sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--burgundy); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--burgundy-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .65em; color: var(--ink); font-family: var(--font-display); font-weight: 700; line-height: 1.12; text-wrap: balance; }
h1 { font-size: clamp(2.6rem, 6vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0 0 1.25em; }
ul, ol { margin-top: 0; }
address { font-style: normal; }
blockquote { margin: 1.8rem 0 0; padding: 1.3rem 1.5rem; border-left: 4px solid var(--burgundy); background: var(--rose-soft); font-family: var(--font-display); font-size: 1.3rem; }
hr { margin: 2.5rem 0; border: 0; border-top: 1px solid var(--line); }
::selection { color: #fff; background: var(--burgundy); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-soft { background: #f7f1ed; }
.section-dark { color: #fff; background: #17171e; }
.section-burgundy { color: #fff; background: var(--burgundy-deep); }
.section-dark h2, .section-dark h3, .section-burgundy h2, .section-burgundy h3 { color: #fff; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading > :last-child { margin-bottom: 0; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); gap: 50px; max-width: none; align-items: end; }
.split-heading p:last-child { color: inherit; opacity: .82; font-size: 1.06rem; }
.eyebrow { margin-bottom: .9rem; color: var(--burgundy); font-family: var(--font-sans); font-size: .75rem; font-weight: 800; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
.eyebrow-light { color: #f3cbd5; }
.lead { color: var(--ink-soft); font-family: var(--font-display); font-size: clamp(1.2rem, 2.1vw, 1.65rem); line-height: 1.55; }
.data-note { margin-top: 1.25rem; color: #706a6c; font-size: .88rem; }
.data-note-light { color: rgba(255,255,255,.7); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: .8rem 1rem; color: #fff; background: var(--burgundy-dark); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.button-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button { display: inline-flex; min-height: 48px; padding: .78rem 1.35rem; align-items: center; justify-content: center; gap: .45rem; border: 1px solid transparent; border-radius: 999px; font-size: .9rem; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--burgundy); }
.button-primary:hover { color: #fff; background: var(--burgundy-dark); }
.button-secondary { color: var(--burgundy-dark); border-color: #d9b8c0; background: #fff; }
.button-secondary:hover { color: #fff; border-color: var(--burgundy); background: var(--burgundy); }
.button-light { color: var(--burgundy-deep); background: #fff; }
.button-light:hover { color: var(--burgundy-dark); background: #f9e9ed; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.65); background: transparent; }
.button-outline-light:hover { color: var(--burgundy-deep); background: #fff; }
.button-small { min-height: 40px; padding: .6rem 1rem; font-size: .8rem; }
.button-block { width: 100%; margin-top: .65rem; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-notice { color: #fff; background: var(--burgundy); font-size: .84rem; }
.notice-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; }
.notice-inner a { color: #fff; font-weight: 800; }
.site-header { position: relative; z-index: 1000; background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(173,31,61,.1); }
.site-header.is-sticky { position: sticky; top: 0; box-shadow: var(--shadow-sm); }
.utility-bar { color: #e9dde0; background: #19171c; font-size: .76rem; }
.utility-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; gap: 20px; }
.utility-links a { color: #fff; text-decoration: none; }
.navbar { display: flex; min-height: 94px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; flex: 0 1 350px; align-items: center; gap: 14px; color: var(--ink); text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand img { width: 92px; height: 60px; border-radius: 7px; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: var(--font-display); font-size: 1.18rem; }
.brand-copy small { margin-top: 5px; color: var(--burgundy); font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.main-nav > ul { display: flex; margin: 0; padding: 0; align-items: center; gap: 4px; list-style: none; }
.main-nav > ul > li { position: relative; display: flex; align-items: center; }
.main-nav > ul > li > a { display: flex; min-height: 44px; padding: .65rem .62rem; align-items: center; color: #343039; border-radius: 8px; font-size: .76rem; font-weight: 800; line-height: 1.15; text-decoration: none; white-space: nowrap; }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.is-active { color: var(--burgundy); background: var(--rose-soft); }
.main-nav .nav-regulation { color: #fff; background: var(--burgundy); }
.main-nav .nav-regulation:hover, .main-nav .nav-regulation.is-active { color: #fff; background: var(--burgundy-dark); }
.nav-dropdown > button { width: 25px; height: 40px; margin-left: -5px; padding: 0; color: var(--ink-soft); border: 0; background: transparent; }
.submenu { position: absolute; top: calc(100% + 8px); left: 0; width: 280px; margin: 0; padding: 10px; visibility: hidden; opacity: 0; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-lg); list-style: none; transform: translateY(8px); transition: .2s ease; }
.submenu a { display: block; padding: .65rem .8rem; color: var(--ink); border-radius: 8px; font-size: .84rem; font-weight: 700; text-decoration: none; }
.submenu a:hover { color: var(--burgundy); background: var(--rose-soft); }
.nav-dropdown:hover .submenu, .nav-dropdown:focus-within .submenu, .nav-dropdown.submenu-open .submenu { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.nav-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: .2s ease; }

.home-hero { position: relative; display: grid; min-height: 690px; overflow: hidden; align-items: center; color: #fff; background: #292229; }
.home-hero-media, .home-hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.home-hero-media { object-fit: cover; object-position: center; }
.home-hero-overlay { background: linear-gradient(90deg, rgba(40,7,18,.9) 0%, rgba(40,7,18,.7) 35%, rgba(40,7,18,.13) 70%, rgba(40,7,18,.08) 100%); }
.home-hero-content { position: relative; z-index: 1; padding-block: 100px; }
.home-hero-content h1 { max-width: 720px; color: #fff; }
.home-hero-lead { max-width: 650px; color: rgba(255,255,255,.9); font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.75rem); }
.home-hero .button-group { margin-top: 32px; }
.trust-strip { color: #fff; background: #17171e; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 26px 24px; border-right: 1px solid rgba(255,255,255,.12); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: #fff; font-family: var(--font-display); font-size: 1.3rem; }
.trust-grid span { color: rgba(255,255,255,.66); font-size: .78rem; }

.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy)); }
.page-hero::after { position: absolute; right: -80px; bottom: -170px; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; content: ""; }
.page-hero-image { background-image: linear-gradient(90deg, rgba(54,9,23,.93), rgba(54,9,23,.55)), var(--page-hero-image); background-position: center; background-size: cover; }
.page-hero-inner { position: relative; z-index: 1; padding-block: clamp(80px, 11vw, 150px) 55px; }
.page-hero h1 { max-width: 970px; color: #fff; font-size: clamp(2.7rem, 5vw, 5rem); }
.page-hero-inner > p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.84); font-size: 1.12rem; }
.breadcrumbs { margin-top: 45px; font-size: .78rem; }
.breadcrumbs ol { display: flex; margin: 0; padding: 0; flex-wrap: wrap; gap: .5rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: .5rem; color: rgba(255,255,255,.5); content: "/"; }
.breadcrumbs a, .breadcrumbs span { color: #fff; }

.program-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.program-card { grid-column: span 2; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.program-card:nth-last-child(-n+2) { grid-column: span 3; }
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.program-card-image { display: block; overflow: hidden; aspect-ratio: 3 / 2; }
.program-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.program-card:hover .program-card-image img { transform: scale(1.035); }
.program-card-body { padding: 26px; }
.program-card h3 a { color: var(--ink); text-decoration: none; }
.program-meta { margin-bottom: .6rem; color: var(--burgundy); font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.program-card-body > p:not(.program-meta) { color: var(--ink-soft); }
.program-facts { display: flex; margin: 18px 0; padding: 0; flex-wrap: wrap; gap: 8px; list-style: none; }
.program-facts li, .tag-list span { padding: .36rem .65rem; border: 1px solid #eed9df; border-radius: 999px; color: var(--burgundy-dark); background: #fff8fa; font-size: .7rem; font-weight: 700; }

.regulation-spotlight { padding: clamp(70px, 9vw, 110px) 0; color: #fff; background: linear-gradient(135deg, #3f0919, #7e132b 55%, #ad1f3d); }
.regulation-spotlight h2 { color: #fff; }
.regulation-spotlight-grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(45px, 8vw, 100px); align-items: center; }
.document-mark { display: flex; min-height: 340px; padding: 30px; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.25); border-radius: 8px 28px 8px 8px; background: rgba(255,255,255,.09); box-shadow: 18px 18px 0 rgba(0,0,0,.15); }
.document-mark span { font-family: var(--font-display); font-size: 4rem; }
.document-mark strong { font-size: 2.2rem; letter-spacing: .16em; }
.document-mark small { color: rgba(255,255,255,.7); text-transform: uppercase; }
.feature-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(45px, 8vw, 95px); align-items: center; }
.feature-media { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.feature-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.feature-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.06rem; }
.section-burgundy .feature-copy > p:not(.eyebrow) { color: rgba(255,255,255,.82); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; margin: .65rem 0; padding-left: 1.8rem; }
.check-list li::before { position: absolute; top: .05rem; left: 0; color: var(--burgundy); font-weight: 900; content: "✓"; }
.check-list-light li::before { color: #f5b9c7; }
.feature-grid { display: grid; gap: 22px; margin-bottom: 34px; }
.feature-grid-three { grid-template-columns: repeat(3, 1fr); }
.feature-grid article { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.05); }
.feature-number { display: block; margin-bottom: 45px; color: #f2a8b8; font-family: var(--font-display); font-size: 2.2rem; }
.feature-grid article p { color: rgba(255,255,255,.7); }

.admissions-panel, .action-panel { position: relative; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); gap: 60px; padding: clamp(35px, 6vw, 70px); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.admissions-panel .data-note { position: absolute; right: 30px; bottom: 12px; }
.admission-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 0; gap: 12px; }
.admission-facts div { padding: 20px; border-radius: var(--radius-sm); background: var(--rose-soft); }
.admission-facts dt { color: var(--ink-soft); font-size: .72rem; font-weight: 700; }
.admission-facts dd { margin: 5px 0 0; color: var(--burgundy-dark); font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.notice-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.notice-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.notice-card h3 { min-height: 2.2em; }
.notice-card a { font-weight: 800; text-decoration: none; }
.notice-tag { color: var(--burgundy); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cta-band { padding: clamp(55px, 8vw, 90px) 0; color: #fff; background: var(--burgundy); }
.cta-band h2 { color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: center; }
.cta-inner p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.8); }
.cta-inner .button-group { justify-content: flex-end; }

.feature-split-logo { grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); }
.institution-logo-panel { padding: 34px; color: #fff; border-radius: var(--radius-lg); background: var(--burgundy); box-shadow: var(--shadow-lg); text-align: center; }
.institution-logo-panel img { width: 100%; margin-bottom: 25px; border-radius: var(--radius-sm); }
.institution-logo-panel p { margin-bottom: 5px; font-size: .85rem; }
.institution-logo-panel strong { font-size: 1.2rem; letter-spacing: .12em; }
.two-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.statement-card { padding: clamp(30px, 5vw, 55px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.statement-card > span { display: grid; width: 56px; height: 56px; margin-bottom: 30px; place-items: center; color: #fff; border-radius: 50%; background: var(--burgundy); font-family: var(--font-display); font-size: 1.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 18px; }
.values-grid article { grid-column: span 2; padding: 26px 22px; border-top: 3px solid var(--burgundy); background: #fff; box-shadow: var(--shadow-sm); }
.values-grid span { color: #c79da7; font-family: var(--font-display); }
.quote-card { padding: clamp(30px, 5vw, 55px); border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius-lg); background: rgba(255,255,255,.08); }
.quote-card p { font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.45; }
.quote-card cite { color: #f3cbd5; font-style: normal; font-weight: 700; }
.directory-highlight { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.directory-highlight article { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.directory-role { color: var(--burgundy); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.directory-highlight h3 { margin-bottom: .4rem; font-size: 1.25rem; }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.data-table { width: 100%; border-collapse: collapse; text-align: left; }
.data-table th, .data-table td { padding: 18px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.data-table thead th { color: #fff; background: var(--burgundy-dark); font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table a { color: var(--ink); font-weight: 800; }
.info-card, .contact-card { padding: 32px; border: 1px solid #ead5db; border-radius: var(--radius); background: var(--rose-soft); }

.program-summary { color: #fff; background: #17171e; }
.program-summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.program-summary-grid > div { padding: 26px 22px; border-right: 1px solid rgba(255,255,255,.12); }
.program-summary-grid > div:last-child { border: 0; }
.program-summary-grid span, .program-summary-grid strong { display: block; }
.program-summary-grid span { color: rgba(255,255,255,.55); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.program-summary-grid strong { margin-top: 5px; font-family: var(--font-display); font-size: 1.1rem; }
.program-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 80px; align-items: start; }
.program-content h2:not(:first-of-type) { margin-top: 2.8rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.arrow-list { padding: 0; list-style: none; }
.arrow-list li { position: relative; margin: .7rem 0; padding-left: 1.6rem; }
.arrow-list li::before { position: absolute; left: 0; color: var(--burgundy); content: "→"; }
.tag-list { display: flex; flex-wrap: wrap; gap: 9px; }
.number-list { padding-left: 1.4rem; }
.number-list li { margin: .55rem 0; padding-left: .4rem; }
.sticky-card { position: sticky; top: 120px; padding: 30px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg); }
.sticky-card dl { margin: 24px 0 0; }
.sticky-card dl div { display: flex; padding: 10px 0; justify-content: space-between; gap: 15px; border-bottom: 1px solid var(--line); }
.sticky-card dt { color: var(--ink-soft); font-size: .78rem; }
.sticky-card dd { margin: 0; font-weight: 800; }
.sticky-card small { display: block; margin-top: 15px; color: #726b6d; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; gap: 15px; counter-reset: none; list-style: none; }
.process-grid li { padding: 26px 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.process-grid > li > span, .process-list > li > span { display: grid; width: 40px; height: 40px; margin-bottom: 35px; place-items: center; color: #fff; border-radius: 50%; background: var(--burgundy); font-family: var(--font-display); }
.process-grid h3 { font-size: 1.2rem; }
.two-column-content { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 80px; align-items: start; }
.document-list { padding: 0; list-style: none; }
.document-list li { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.document-list span { color: var(--ink-soft); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.timeline article { position: relative; padding: 35px 22px 20px; border-top: 2px solid #d9b2bb; }
.timeline article::before { position: absolute; top: -7px; left: 22px; width: 12px; height: 12px; border: 3px solid var(--cream); border-radius: 50%; background: var(--burgundy); content: ""; }
.timeline time { color: var(--burgundy); font-size: .8rem; font-weight: 900; text-transform: uppercase; }
.timeline h3 { margin-top: 10px; font-size: 1.12rem; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-grid article { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.price-grid span, .price-grid strong, .price-grid small { display: block; }
.price-grid strong { color: #fff; font-family: var(--font-display); font-size: 3rem; line-height: 1.2; }
.price-grid small { color: #f3cbd5; }
.promotion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.promotion-grid article { padding: 28px; color: var(--ink); border-radius: var(--radius); background: #fff; }
.promotion-grid ul { padding-left: 1.2rem; }
.action-panel { align-items: center; }

.partner-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.partner-grid article { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.partner-grid article > span { color: var(--burgundy); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.partner-grid ul { padding-left: 1.1rem; }
.institution-details, .faculty-directory { margin-top: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.institution-details summary, .faculty-directory summary { padding: 20px 24px; color: var(--burgundy-dark); font-weight: 800; cursor: pointer; }
.columns-list { padding: 5px 24px 24px; columns: 2; column-gap: 40px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; margin-bottom: 18px; }
.process-list > li > span { margin: 0; }
.process-list h3 { margin-bottom: .2rem; }
.contact-card { background: #fff; box-shadow: var(--shadow-sm); }

.mini-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 25px; }
.mini-feature-grid > div { padding: 17px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.mini-feature-grid strong, .mini-feature-grid span { display: block; }
.mini-feature-grid strong { color: var(--burgundy); }
.mini-feature-grid span { color: var(--ink-soft); font-size: .78rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-grid article { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); text-align: center; }
.stat-grid strong, .stat-grid span { display: block; }
.stat-grid strong { color: #fff; font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); }
.stat-grid span { color: rgba(255,255,255,.72); }
.faculty-directory ul { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 5px 24px 28px; gap: 8px 28px; list-style: none; }
.faculty-directory li { padding: 8px 0; border-bottom: 1px solid var(--line); }

.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: center; }
.contact-details > div { padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-details span, .contact-details strong, .contact-details small { display: block; }
.contact-details span { color: var(--burgundy); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-details strong { margin: 4px 0; }
.contact-details small { color: var(--ink-soft); }
.contact-map-card { padding: 38px; border-radius: var(--radius-lg); background: #f1e7e3; }
.contact-map-card h3 { margin-top: 0; }
.map-embed { position: relative; height: clamp(310px, 32vw, 390px); margin-bottom: 28px; overflow: hidden; border: 1px solid rgba(91,10,34,.12); border-radius: var(--radius); background: #e5d8d0; }
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-location-pin { position: absolute; top: 50%; left: 50%; display: flex; align-items: center; flex-direction: column; pointer-events: none; filter: drop-shadow(0 5px 5px rgba(25,8,13,.28)); transform: translate(-50%, -78%); }
.map-location-pin i { position: relative; display: block; width: 48px; height: 48px; border: 3px solid #fff; border-radius: 50% 50% 50% 0; background: var(--burgundy); transform: rotate(-45deg); }
.map-location-pin i::after { position: absolute; top: 50%; left: 50%; width: 15px; height: 15px; border: 3px solid #f3e8e3; border-radius: 50%; background: #fff; content: ""; transform: translate(-50%, -50%); }
.map-location-pin strong { margin-top: 3px; padding: .18rem .48rem; color: #fff; border-radius: 5px; background: var(--burgundy-dark); font-size: .62rem; line-height: 1.2; letter-spacing: .04em; }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.privacy-inline { display: grid; gap: 4px; padding: 18px; border-left: 3px solid var(--green); background: #eaf6f0; }
.privacy-inline span { color: var(--ink-soft); font-size: .82rem; }
.contact-form { padding: clamp(25px, 5vw, 45px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: .8rem .9rem; color: var(--ink); border: 1px solid #cabfc1; border-radius: 9px; background: #fff; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--burgundy); outline: 3px solid rgba(173,31,61,.12); }
.consent-check { display: flex !important; grid-template-columns: auto 1fr; align-items: start; font-weight: 500 !important; }
.consent-check input { width: auto; margin-top: .35rem; }
.form-status { margin: 12px 0 0; color: var(--green); font-size: .85rem; font-weight: 700; }

.news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.news-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.news-featured { grid-row: span 2; padding: clamp(35px, 5vw, 55px); color: #fff; background: linear-gradient(145deg, var(--burgundy-deep), var(--burgundy)); }
.news-featured h2 { color: #fff; }
.news-featured .notice-tag { color: #f3cbd5; }
.news-featured .button { margin-top: 15px; }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.visit-grid article { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.visit-grid span { display: block; margin-bottom: 30px; color: #c89da7; font-family: var(--font-display); font-size: 1.5rem; }

.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 820px); gap: 70px; align-items: start; }
.legal-index, .regulation-index { position: sticky; top: 120px; display: flex; padding: 22px; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.legal-index strong, .regulation-index strong { margin-bottom: 10px; }
.legal-index a, .regulation-index a { padding: .38rem .5rem; color: var(--ink-soft); border-radius: 6px; font-size: .78rem; text-decoration: none; }
.legal-index a:hover, .regulation-index a:hover { color: var(--burgundy); background: var(--rose-soft); }
.legal-document h2 { margin-top: 2.5rem; font-size: 2rem; }
.error-page { display: grid; min-height: 68vh; align-items: center; padding: 90px 0; }
.error-grid { display: grid; grid-template-columns: 1fr .7fr; align-items: center; }
.error-code { color: var(--rose-soft); font-family: var(--font-display); font-size: clamp(8rem, 25vw, 20rem); font-weight: 900; line-height: .8; text-align: right; }

.regulation-page { background: #f5f0ec; }
.regulation-layout { display: grid; grid-template-columns: 270px minmax(0, 860px); gap: 55px; align-items: start; }
.regulation-index { max-height: calc(100vh - 145px); overflow-y: auto; }
.regulation-index .button { margin-top: 12px; }
.regulation-document { padding: clamp(30px, 6vw, 70px); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.document-cover { display: flex; min-height: 540px; padding: 50px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); background: linear-gradient(160deg, #fff 65%, var(--rose-soft)); text-align: center; }
.document-cover img { width: 220px; margin-bottom: 40px; }
.document-cover p { margin: 0; color: var(--burgundy); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.document-cover h2 { margin: 15px 0; font-size: clamp(2.4rem, 5vw, 4rem); }
.document-cover span { padding: .4rem .8rem; color: var(--burgundy-dark); border-radius: 999px; background: var(--rose-soft); font-size: .75rem; font-weight: 800; }
.regulation-document > section { padding-top: 65px; }
.regulation-document > section + section { margin-top: 65px; border-top: 1px solid var(--line); }
.regulation-document h2 { font-size: clamp(2rem, 4vw, 3rem); }
.regulation-document h3 { margin-top: 2rem; margin-bottom: .4rem; font-family: var(--font-sans); font-size: 1.02rem; }
.regulation-document p { color: #41414b; }
.chapter-label { margin-bottom: .6rem; color: var(--burgundy) !important; font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.regulation-table th { width: 220px; }

.site-footer { color: rgba(255,255,255,.73); background: #151419; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .9fr 1.1fr; gap: 45px; padding-block: 75px; }
.site-footer h2 { color: #fff; font-family: var(--font-sans); font-size: 1rem; }
.footer-brand img { width: 150px; margin-bottom: 20px; border-radius: 8px; }
.footer-brand h2 { margin-bottom: .3rem; font-family: var(--font-display); font-size: 1.35rem; }
.footer-cct { display: inline-block; padding: .35rem .6rem; color: #fff; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: .45rem 0; }
.site-footer a { color: rgba(255,255,255,.76); }
.site-footer a:hover { color: #fff; }
.site-footer .footer-regulation { color: #ffbecd; font-weight: 800; }
.site-footer address p { margin-bottom: .6rem; font-size: .84rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; min-height: 65px; align-items: center; justify-content: space-between; gap: 30px; }
.footer-bottom p { margin: 0; font-size: .72rem; }
.whatsapp-icon { display: block; width: 1.25em; height: 1.25em; flex: 0 0 auto; overflow: visible; }
.whatsapp-icon-bubble { fill: none; stroke: currentColor; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-icon-phone { fill: currentColor; }
.floating-whatsapp { position: fixed; z-index: 990; right: 22px; bottom: 22px; display: grid; width: 54px; height: 54px; place-items: center; color: #fff; border: 3px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 10px 28px rgba(0,0,0,.22); text-decoration: none; }
.floating-whatsapp .whatsapp-icon { width: 29px; height: 29px; }
.floating-whatsapp:hover { color: #fff; background: #176442; }

@media print {
    .site-notice, .site-header, .site-footer, .floating-whatsapp, .regulation-index, .cta-band, .breadcrumbs { display: none !important; }
    body, .regulation-page { color: #000; background: #fff; }
    .page-hero { color: #000; background: #fff; border-bottom: 2px solid #000; }
    .page-hero h1, .page-hero p { color: #000 !important; }
    .regulation-layout { display: block; }
    .regulation-document { padding: 0; border: 0; box-shadow: none; }
    .regulation-document > section { break-inside: auto; }
    .regulation-document h2, .regulation-document h3 { break-after: avoid; }
    a { color: #000; text-decoration: none; }
}
