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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #202020;
    background: #ffffff;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p { margin-top: 0; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}
.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 30px;
}
.site-branding { display: flex; align-items: center; flex-shrink: 0; }
.site-logo { display: inline-flex; align-items: center; }
.site-logo-image {
    display: block;
    width: auto;
    max-width: 260px;
    height: 54px;
    object-fit: contain;
}

/* Desktop nav */
.main-navigation { display: block; }
.main-navigation ul { display: flex; align-items: center; gap: 28px; }
.main-navigation li { position: relative; }
.main-navigation a {
    position: relative;
    display: block;
    padding: 31px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: color .25s ease;
}
.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 2px;
    background: #111;
    transition: width .25s ease;
}
.main-navigation a:hover { color: #000; }
.main-navigation a:hover::after { width: 100%; }

/* Hamburger */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.56) 45%, rgba(0,0,0,.15) 100%),
        url("https://www.highschoolofperformingarts.com/images/hero-performing-arts.webp") center center / cover no-repeat;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; color: #fff; }
.hero-label {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
}
.hero h1 {
    max-width: 800px;
    margin-bottom: 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.04;
    letter-spacing: -2px;
    color: #fff;
}
.hero p {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.button:hover { background: transparent; color: #111; transform: translateY(-2px); }
.hero .button { border-color: #fff; background: #fff; color: #111; }
.hero .button:hover { background: transparent; color: #fff; }

/* Sections */
section { padding: 40px 0; }
.section-header { max-width: 720px; margin-bottom: 45px; }
.section-label {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777;
}
.section-header h2,
.historical-introduction h2,
.archive-section h2,
.about-publication h2 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.18;
    color: #151515;
}
.section-header p,
.historical-introduction p,
.archive-section p,
.about-publication p { font-size: 17px; color: #626262; }

/* Intro */
.historical-introduction { background: #f7f5f1; }
.historical-introduction .container { max-width: 900px; }
.historical-introduction p { max-width: 800px; }
.historical-introduction a:not(.button) {
    display: inline-block;
    margin-top: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #222;
    font-weight: 700;
}

/* Topic cards */
.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}
.topic-card {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}
.topic-card-image { position: absolute; inset: 0; }
.topic-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.topic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.30) 62%, rgba(0,0,0,.05) 100%);
}
.topic-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 32px;
    color: #fff;
}
.topic-card h3 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.2;
}
.topic-card p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.8);
}
.topic-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
}
.topic-card-link::after { content: "→"; transition: transform .25s ease; }
.topic-card:hover .topic-card-image img { transform: scale(1.06); }
.topic-card:hover .topic-card-link::after { transform: translateX(5px); }

/* Article cards */

/* Four-card editorial grids */
.article-grid .article-card h3 {
    font-size: 21px;
    padding-left:10px;
}

.article-grid .article-card p {
    font-size: 14px;
    padding-left:10px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 30px;
}
.article-card { background: #fff; }
.article-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    margin-bottom: 22px;
    overflow: hidden;
    background: #eee;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}
.article-card:hover .article-card-image img { transform: scale(1.045); }
.article-category {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    color: #777;
    padding-left:10px;
}
.article-card h3 {
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.35;
    color: #181818;
}
.article-card h3 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.article-card p { margin-bottom: 0; font-size: 15px; line-height: 1.7; color: #666; }

.alumni-section { background: #f6f6f4; }
.alumni-section .button { margin-top: 38px; }

/* Feature */
.cultural-legacy {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.35)),
        url("https://www.highschoolofperformingarts.com/images/fame-performing-arts.webp") center / cover no-repeat;
}
.cultural-legacy .content { max-width: 640px; color: #fff; }
.cultural-legacy .section-label { color: rgba(255,255,255,.72); }
.cultural-legacy h2 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}
.cultural-legacy p { font-size: 17px; color: rgba(255,255,255,.82); }
.cultural-legacy a {
    display: inline-block;
    margin-top: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    font-weight: 700;
}

.archive-section { text-align: center; background: #171717; color: #fff; }
.archive-section .container { max-width: 760px; }
.archive-section h2 { color: #fff; }
.archive-section p { color: rgba(255,255,255,.72); }
.archive-section .button { margin-top: 15px; border-color: #fff; background: #fff; color: #111; }
.archive-section .button:hover { background: transparent; color: #fff; }

.about-publication { padding: 75px 0; background: #f4f1eb; }
.about-publication .container { max-width: 850px; }

/* Footer */
.site-footer { padding: 70px 0 25px; background: #0d0d0d; color: #fff; }
.footer-columns { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
.site-footer h2,.site-footer h3 { margin-bottom: 18px; font-family: Georgia, "Times New Roman", serif; }
.site-footer h2 { font-size: 27px; }
.site-footer h3 { font-size: 17px; }
.site-footer p { max-width: 450px; color: #a9a9a9; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { font-size: 14px; color: #bcbcbc; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.copyright { margin-top: 55px; padding-top: 24px; border-top: 1px solid #292929;display: flex;justify-content: center; }
.copyright p { margin: 0; font-size: 13px; }

/* Tablet */
@media (max-width: 1024px) {
    .header-container { min-height: 76px; flex-direction: row; padding-top: 0; padding-bottom: 0; }
    .site-logo-image { max-width: 220px; height: 48px; }
    .menu-toggle { display: flex; position: relative; z-index: 1002; margin-left: auto; }

    .main-navigation {
        position: absolute;
        top: 100%;

        left: 50%;
        right: auto;

        width: 100vw;
        max-width: none;

        transform: translateX(-50%);

        max-height: 0;
        overflow: hidden;
        visibility: hidden;

        background: #ffffff;

        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);

        transition:
            max-height 0.4s ease,
            visibility 0.4s ease;
    }
    .main-navigation.active { 
         width: 100vw;
        max-width: none;
        max-height: 650px;
        visibility: visible;
    }
    .main-navigation ul {
        display: block;
        min-width: 0;
        width: min(100% - 40px, 1180px);
        margin: 0 auto;
        padding: 15px 0 20px;
    }
    .main-navigation li { display: block; border-bottom: 1px solid #eee; }
    .main-navigation li:last-child { border-bottom: 0; }
    .main-navigation a { display: block; padding: 15px 4px; font-size: 15px; line-height: 1.4; color: #222; }
    .main-navigation a::after { display: none; }

    .hero { min-height: 570px; }
    .topic-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .topic-card:last-child { grid-column: span 2; }
    .article-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
}

/* Mobile */
@media (max-width: 767px) {
    .container { width: min(100% - 30px, 1180px); }
    section { padding: 65px 0; }
    .header-container { min-height: 70px; }
    .site-logo-image { max-width: 190px; height: 43px; }
    .menu-toggle { width: 42px; height: 42px; }
    .menu-toggle span { width: 24px; }
      .main-navigation,
    .main-navigation.active {
        width: 100vw;
        max-width: none;
    }

    .main-navigation ul {
        width: calc(100% - 30px);
    }
    .main-navigation a { padding: 14px 2px; font-size: 14px; }

    .hero {
        min-height: 600px;
        align-items: flex-end;
        padding: 90px 0 60px;
        background-position: 62% center;
    }
    .hero h1 { margin-bottom: 20px; font-size: clamp(42px, 13vw, 58px); letter-spacing: -1.2px; }
    .hero p { font-size: 16px; line-height: 1.65; }

    .topic-grid { grid-template-columns: 1fr; }
    .topic-card, .topic-card:last-child { grid-column: auto; min-height: 420px; }
    .topic-card-content { padding: 26px; }
    .topic-card h3 { font-size: 27px; }

    .article-grid { grid-template-columns: 1fr; gap: 40px; }
    .article-card h3 { font-size: 22px; }

    .cultural-legacy { min-height: 530px; background-position: 60% center; }
    .footer-columns { grid-template-columns: 1fr; gap: 35px; }
    .copyright { margin-top: 35px; }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 24px); }
    .site-logo-image { max-width: 165px; height: 40px; }
    .hero { min-height: 540px; }
    .hero-label { margin-bottom: 14px; font-size: 11px; }
    .hero h1 { font-size: 40px; }
    .button { width: 100%; }
    .topic-card { min-height: 370px; }
    .topic-card-content { padding: 22px; }
}


/* =========================================================
   HISTORY PILLAR PAGE
========================================================= */

.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: #171717;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.84) 0%,
            rgba(0, 0, 0, 0.60) 45%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        url("https://www.highschoolofperformingarts.com/images/performing-arts-history.webp")
        center center / cover no-repeat;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 780px;
    padding: 90px 0 70px;
    color: #ffffff;
}

.page-hero .hero-label {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -1.8px;
}

.page-hero p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumbs-wrap {
    padding: 18px 0;
    border-bottom: 1px solid #e9e9e9;
    background: #ffffff;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: #777777;
}

.breadcrumbs a {
    color: #333333;
}

.breadcrumbs a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.history-intro {
    background: #f7f5f1;
}

.history-intro .container,
.history-story .container,
.history-legacy .container,
.history-sources .container {
    max-width: 960px;
}

.history-lead {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.55;
    color: #242424;
}

.history-story h2,
.history-milestones h2,
.history-explore h2,
.history-legacy h2,
.history-sources h2 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.2;
}

.history-story h3 {
    margin-top: 38px;
    margin-bottom: 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.3;
}

.history-story p,
.history-legacy p,
.history-sources p {
    font-size: 17px;
    color: #595959;
}

.history-milestones {
    background: #ffffff;
}

.milestone-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

.milestone-card {
    padding: 28px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

.milestone-year {
    display: block;
    margin-bottom: 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 700;
    color: #181818;
}

.milestone-card h3 {
    margin-bottom: 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.3;
}

.milestone-card p {
    margin-bottom: 0;
    font-size: 14px;
    color: #696969;
}

.history-explore {
    background: #f6f6f4;
}

.history-explore .article-grid {
    align-items: stretch;
}

.history-explore .article-card {
    height: 100%;
}

.history-explore .article-card-image {
    aspect-ratio: 16 / 10;
}

.history-legacy {
    background: #171717;
    color: #ffffff;
}

.history-legacy h2 {
    color: #ffffff;
}

.history-legacy p {
    color: rgba(255, 255, 255, 0.76);
}

.history-legacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.history-legacy-links a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    transition: background .2s ease, color .2s ease;
}

.history-legacy-links a:hover {
    background: #ffffff;
    color: #111111;
}

.history-sources {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #f4f1eb;
}

.source-list {
    margin: 25px 0 0;
    padding-left: 22px;
    list-style: decimal;
}

.source-list li {
    margin-bottom: 12px;
    color: #555555;
}

.source-list a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.independent-note {
    padding: 24px 0;
    border-top: 1px solid #e2ddd4;
    background: #f4f1eb;
}

.independent-note p {
    max-width: 950px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    color: #6a6a6a;
}

@media (max-width: 1024px) {
    .page-hero {
        min-height: 470px;
    }

    .page-hero-content {
        padding: 75px 0 60px;
    }

    .milestone-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .page-hero {
        min-height: 500px;
        background-position: 58% center;
    }

    .page-hero-content {
        padding: 90px 0 55px;
    }

    .page-hero h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .page-hero p {
        font-size: 16px;
    }

    .history-lead {
        font-size: 23px;
    }

    .milestone-grid {
        grid-template-columns: 1fr;
    }

    .milestone-card {
        padding: 24px;
    }

    .history-legacy-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .history-legacy-links a {
        justify-content: center;
    }
}


/* =========================================================
   HISTORY CHILD ARTICLES
========================================================= */

.history-explore .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.history-child-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #151515;
}

.history-child-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.84) 0%,
        rgba(0, 0, 0, 0.61) 48%,
        rgba(0, 0, 0, 0.17) 100%
    );
}

.history-child-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.history-child-hero .container {
    position: relative;
    z-index: 2;
}

.history-child-hero-content {
    max-width: 790px;
    padding: 95px 0 68px;
    color: #ffffff;
}

.history-child-hero h1 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.8vw, 70px);
    line-height: 1.07;
    letter-spacing: -1.7px;
}

.history-child-hero p {
    max-width: 690px;
    margin-bottom: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
}

.history-article {
    padding: 82px 0;
    background: #ffffff;
}

.history-article .article-shell {
    width: min(860px, 100%);
    margin-inline: auto;
}

.history-article .article-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #777777;
}

.history-article .article-lead {
    margin-bottom: 36px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 3vw, 32px);
    line-height: 1.55;
    color: #252525;
}

.history-article h2 {
    margin-top: 50px;
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 3.6vw, 41px);
    line-height: 1.22;
    color: #171717;
}

.history-article h3 {
    margin-top: 36px;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.32;
}

.history-article p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.85;
    color: #505050;
}

.history-article .fact-box {
    margin: 38px 0;
    padding: 26px 28px;
    border-left: 4px solid #252525;
    background: #f6f3ed;
}

.history-article .fact-box strong {
    display: block;
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    color: #191919;
}

.history-article .fact-box p {
    margin-bottom: 0;
    font-size: 15px;
}

.history-nav-section {
    padding: 75px 0;
    background: #f6f6f4;
}

.history-nav-section .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.history-nav-section .article-card {
    height: 100%;
}

.history-source-section {
    padding: 65px 0;
    background: #f4f1eb;
}

.history-source-section .container {
    max-width: 900px;
}

.history-source-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
}

.history-source-section p,
.history-source-section li {
    color: #5e5e5e;
}

.timeline-page {
    padding: 80px 0;
    background: #ffffff;
}

.timeline-page .container {
    max-width: 960px;
}

.timeline-list {
    position: relative;
    margin-top: 45px;
}

.timeline-list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 116px;
    width: 1px;
    background: #d9d4cb;
}

.timeline-entry {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 55px;
    padding: 0 0 48px;
}

.timeline-entry:last-child {
    padding-bottom: 0;
}

.timeline-year {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
    color: #1d1d1d;
}

.timeline-copy {
    position: relative;
    padding-left: 24px;
}

.timeline-copy::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 7px;
    width: 13px;
    height: 13px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #222222;
    box-shadow: 0 0 0 1px #bcb7ae;
}

.timeline-copy h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.25;
}

.timeline-copy p {
    margin-bottom: 0;
    font-size: 16px;
    color: #595959;
}

@media (max-width: 1024px) {
    .history-explore .article-grid,
    .history-nav-section .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .history-child-hero {
        min-height: 500px;
    }

    .history-child-hero-content {
        padding: 90px 0 55px;
    }

    .history-child-hero h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .history-child-hero p {
        font-size: 16px;
    }

    .history-article {
        padding: 62px 0;
    }

    .history-explore .article-grid,
    .history-nav-section .article-grid {
        grid-template-columns: 1fr;
    }

    .timeline-list::before {
        left: 10px;
    }

    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 6px;
        padding-left: 34px;
    }

    .timeline-year {
        text-align: left;
        font-size: 23px;
    }

    .timeline-copy {
        padding-left: 0;
    }

    .timeline-copy::before {
        left: -30px;
        top: -25px;
    }
}


/* =========================================================
   ALUMNI CLUSTER
========================================================= */

.alumni-page-hero,
.alumni-child-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #151515;
}

.alumni-page-hero-bg,
.alumni-child-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.alumni-page-hero::after,
.alumni-child-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.86) 0%,
        rgba(0, 0, 0, 0.60) 48%,
        rgba(0, 0, 0, 0.16) 100%
    );
}

.alumni-page-hero .container,
.alumni-child-hero .container {
    position: relative;
    z-index: 2;
}

.alumni-hero-content {
    max-width: 790px;
    padding: 96px 0 70px;
    color: #ffffff;
}

.alumni-hero-content h1 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -1.7px;
}

.alumni-hero-content p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
}

.alumni-intro {
    background: #f7f5f1;
}

.alumni-intro .container {
    max-width: 950px;
}

.alumni-intro-lead {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.55;
    color: #252525;
}

.alumni-overview,
.alumni-article {
    background: #ffffff;
}

.alumni-overview .container,
.alumni-article .container {
    max-width: 960px;
}

.alumni-overview h2,
.alumni-article h2,
.alumni-explore h2,
.alumni-sources h2 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.2;
    margin-top: 25px;
}

.alumni-overview h3,
.alumni-article h3 {
    margin-top: 38px;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.32;
}

.alumni-overview p,
.alumni-article p,
.alumni-sources p {
    font-size: 17px;
    color: #575757;
}

.alumni-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 40px;
    border-top: 1px solid #e2ded6;
    border-left: 1px solid #e2ded6;
}

.alumni-stat {
    padding: 26px;
    border-right: 1px solid #e2ded6;
    border-bottom: 1px solid #e2ded6;
}

.alumni-stat strong {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    color: #181818;
}

.alumni-stat span {
    font-size: 14px;
    color: #6a6a6a;
}

.alumni-explore {
    background: #f6f6f4;
}

.alumni-explore .article-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.alumni-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.alumni-feature {
    padding: 28px;
    border: 1px solid #e2e2e2;
    background: #faf9f6;
}

.alumni-feature h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.alumni-feature .role {
    display: block;
    margin-bottom: 13px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #777777;
}

.alumni-feature p {
    margin-bottom: 0;
    font-size: 15px;
}

.alumni-note {
    margin: 36px 0;
    padding: 26px 28px;
    border-left: 4px solid #222222;
    background: #f5f1e9;
}

.alumni-note strong {
    display: block;
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.alumni-note p {
    margin-bottom: 0;
    font-size: 15px;
}

.alumni-nav-section {
    background: #f6f6f4;
}

.alumni-nav-section .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alumni-sources {
    padding: 65px 0;
    background: #f4f1eb;
}

.alumni-sources .container {
    max-width: 900px;
}

@media (max-width: 1024px) {
    .alumni-stat-grid,
    .alumni-explore .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alumni-nav-section .article-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .alumni-page-hero,
    .alumni-child-hero {
        min-height: 500px;
    }

    .alumni-hero-content {
        padding: 90px 0 55px;
    }

    .alumni-hero-content h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .alumni-hero-content p {
        font-size: 16px;
    }

    .alumni-stat-grid,
    .alumni-explore .article-grid,
    .alumni-feature-grid,
    .alumni-nav-section .article-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   DRAMA & THEATER CLUSTER
========================================================= */

.drama-page-hero,
.drama-child-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #151515;
}

.drama-page-hero-bg,
.drama-child-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.drama-page-hero::after,
.drama-child-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.86) 0%,
        rgba(0,0,0,.60) 47%,
        rgba(0,0,0,.17) 100%
    );
}

.drama-page-hero .container,
.drama-child-hero .container {
    position: relative;
    z-index: 2;
}

.drama-hero-content {
    max-width: 800px;
    padding: 96px 0 70px;
    color: #fff;
}

.drama-hero-content h1 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -1.7px;
}

.drama-hero-content p {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
}

.drama-intro {
    background: #f7f5f1;
}

.drama-intro .container,
.drama-overview .container,
.drama-article .container,
.drama-sources .container {
    max-width: 960px;
}

.drama-intro-lead {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.55;
    color: #252525;
}

.drama-overview,
.drama-article {
    background: #fff;
}

.drama-overview h2,
.drama-article h2,
.drama-explore h2,
.drama-sources h2 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.2;
}

.drama-overview h3,
.drama-article h3 {
    margin-top: 38px;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.32;
}

.drama-overview p,
.drama-article p,
.drama-sources p {
    font-size: 17px;
    color: #575757;
}

.drama-explore {
    background: #f6f6f4;
}

.drama-explore .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.drama-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    margin-top: 38px;
    border-top: 1px solid #e2ded6;
    border-left: 1px solid #e2ded6;
}

.drama-process {
    padding: 26px;
    border-right: 1px solid #e2ded6;
    border-bottom: 1px solid #e2ded6;
}

.drama-process strong {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    color: #181818;
}

.drama-process span {
    font-size: 14px;
    color: #696969;
}

.drama-note {
    margin: 36px 0;
    padding: 26px 28px;
    border-left: 4px solid #222;
    background: #f5f1e9;
}

.drama-note strong {
    display: block;
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.drama-note p {
    margin-bottom: 0;
    font-size: 15px;
}

.drama-nav-section {
    background: #f6f6f4;
}

.drama-nav-section .article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.drama-sources {
    padding: 65px 0;
    background: #f4f1eb;
}

@media (max-width: 1024px) {
    .drama-explore .article-grid,
    .drama-nav-section .article-grid {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
    .drama-process-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 767px) {
    .drama-page-hero,
    .drama-child-hero {
        min-height: 500px;
    }
    .drama-hero-content {
        padding: 90px 0 55px;
    }
    .drama-hero-content h1 {
        font-size: clamp(39px, 12vw, 54px);
    }
    .drama-hero-content p {
        font-size: 16px;
    }
    .drama-explore .article-grid,
    .drama-nav-section .article-grid,
    .drama-process-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MUSIC / DANCE / PERFORMING ARTS CLUSTERS
========================================================= */

.discipline-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #151515;
}
.discipline-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.discipline-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.60) 47%, rgba(0,0,0,.16) 100%);
}
.discipline-hero .container { position: relative; z-index: 2; }
.discipline-hero-content {
    max-width: 800px;
    padding: 96px 0 70px;
    color: #fff;
}
.discipline-hero-content h1 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -1.7px;
}
.discipline-hero-content p {
    max-width: 710px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
}

.discipline-intro { background: #f7f5f1; }
.discipline-intro .container,
.discipline-copy .container,
.discipline-sources .container { max-width: 960px; }

.discipline-lead {
    margin-bottom: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.55;
    color: #252525;
}
.discipline-copy { background: #fff; }
.discipline-copy h2,
.discipline-explore h2,
.discipline-sources h2 {
    margin-bottom: 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.2;
}
.discipline-copy h3 {
    margin-top: 38px;
    margin-bottom: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.32;
}
.discipline-copy p,
.discipline-sources p {
    font-size: 17px;
    color: #575757;
}
.discipline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 38px;
    border-top: 1px solid #e2ded6;
    border-left: 1px solid #e2ded6;
}
.discipline-grid-item {
    padding: 26px;
    border-right: 1px solid #e2ded6;
    border-bottom: 1px solid #e2ded6;
}
.discipline-grid-item strong {
    display: block;
    margin-bottom: 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    color: #181818;
}
.discipline-grid-item span { font-size: 14px; color: #696969; }

.discipline-explore { background: #f6f6f4; }
.discipline-explore .article-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }

.discipline-note {
    margin: 36px 0;
    padding: 26px 28px;
    border-left: 4px solid #222;
    background: #f5f1e9;
}
.discipline-note strong {
    display: block;
    margin-bottom: 7px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}
.discipline-note p { margin-bottom: 0; font-size: 15px; }

.discipline-sources {
    padding: 65px 0;
    background: #f4f1eb;
}
.discipline-nav-section { background: #f6f6f4; }
.discipline-nav-section .article-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }

@media (max-width:1024px) {
    .discipline-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .discipline-explore .article-grid,
    .discipline-nav-section .article-grid { grid-template-columns: repeat(1,minmax(0,1fr)); }
}
@media (max-width:767px) {
    .discipline-hero { min-height: 500px; }
    .discipline-hero-content { padding: 90px 0 55px; }
    .discipline-hero-content h1 { font-size: clamp(39px,12vw,54px); }
    .discipline-hero-content p { font-size: 16px; }
    .discipline-grid,
    .discipline-explore .article-grid,
    .discipline-nav-section .article-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   TRUST / INFORMATION PAGES
========================================================= */

.info-page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #171717;
}

.info-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.45)),
        url("https://www.highschoolofperformingarts.com/images/performing-arts-history.webp") center / cover no-repeat;
}

.info-page-hero .container {
    position: relative;
    z-index: 2;
}

.info-page-hero-content {
    max-width: 760px;
    padding: 80px 0 55px;
    color: #fff;
}

.info-page-hero-content h1 {
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.08;
}

.info-page-hero-content p {
    max-width: 680px;
    margin-bottom: 0;
    font-size: 17px;
    color: rgba(255,255,255,.86);
}

.info-page {
    padding: 80px 0;
    background: #fff;
}

.info-page .container {
    max-width: 900px;
}

.info-page h2 {
    margin-top: 46px;
    margin-bottom: 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.25;
}

.info-page h2:first-of-type {
    margin-top: 0;
}

.info-page h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.info-page p,
.info-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.info-page ul,
.info-page ol {
    padding-left: 22px;
    margin: 18px 0 26px;
}

.info-page li {
    margin-bottom: 8px;
}

.info-callout {
    margin: 34px 0;
    padding: 24px 26px;
    border-left: 4px solid #222;
    background: #f5f1e9;
}

.info-callout p {
    margin-bottom: 0;
}

.contact-box {
    margin-top: 28px;
    padding: 28px;
    border: 1px solid #e2e2e2;
    background: #faf9f6;
}

.contact-box strong {
    display: block;
    margin-bottom: 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

@media (max-width: 767px) {
    .info-page-hero {
        min-height: 420px;
    }

    .info-page-hero-content {
        padding: 80px 0 48px;
    }

    .info-page {
        padding: 60px 0;
    }
}


/* Responsive hero focal points: preserve subjects when wide images crop on phones. */
.history-child-hero-bg,
.alumni-page-hero-bg,
.alumni-child-hero-bg,
.drama-page-hero-bg,
.drama-child-hero-bg,
.discipline-hero-bg {
    background-position: var(--hero-focus-desktop, 50% 50%);
}

@media (max-width: 767px) {
    .history-child-hero-bg,
    .alumni-page-hero-bg,
    .alumni-child-hero-bg,
    .drama-page-hero-bg,
    .drama-child-hero-bg,
    .discipline-hero-bg {
        background-position: var(--hero-focus-mobile, var(--hero-focus-desktop, 50% 50%));
    }
}


/* =========================================================
   ALUMNI CLASS YEAR ARCHIVE
========================================================= */
.class-year-intro { background:#f7f5f1; }
.class-year-intro .container,
.class-year-article .container,
.class-year-sources .container { max-width:960px; }
.class-year-lead {
    margin:0;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(24px,3vw,34px);
    line-height:1.55;
    color:#252525;
}
.class-year-article { background:#fff; }
.class-year-article h2, .class-year-sources h2 {
    margin:0 0 20px;
    font-family:Georgia, "Times New Roman", serif;
    font-size:clamp(31px,4vw,46px);
    line-height:1.2;
}
.class-year-article h3 {
    margin:38px 0 12px;
    font-family:Georgia, "Times New Roman", serif;
    font-size:24px;
    line-height:1.32;
}
.class-year-article p, .class-year-sources p { font-size:17px; color:#575757; }
.class-year-profile {
    display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:28px;
    margin:34px 0; padding:30px; background:#faf9f6; border:1px solid #e2ded6;
}
.class-year-profile h3 { margin-top:0; }
.class-year-profile-meta {
    font-size:12px; font-weight:700; letter-spacing:1.1px; text-transform:uppercase; color:#777;
}
.class-year-note { margin:36px 0; padding:26px 28px; border-left:4px solid #222; background:#f5f1e9; }
.class-year-note p { margin:0; font-size:15px; }
.class-year-sources { padding:65px 0; background:#f4f1eb; }
@media (max-width:767px) { .class-year-profile { grid-template-columns:1fr; padding:22px; } }
