:root {
    --lacson-maroon: #7a1118;
    --lacson-maroon-deep: #3a070b;
    --lacson-maroon-black: #1d0508;
    --lacson-gold: #d6a536;
    --lacson-gold-soft: #f5d675;
    --lacson-cream: #fff8e8;
    --lacson-paper: #fffcf5;
    --lacson-ink: #18080a;
    --lacson-muted: #6e5c5e;
    --white: #fff;
    --line: rgba(122, 17, 24, 0.14);
    --shadow: 0 24px 70px rgba(45, 6, 10, 0.15);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shell: min(1220px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--lacson-ink);
    background: var(--lacson-paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

::selection {
    color: var(--white);
    background: var(--lacson-maroon);
}

:focus-visible {
    outline: 3px solid var(--lacson-gold-soft);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--lacson-maroon-deep);
    border-radius: 10px;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-pad {
    padding: clamp(88px, 10vw, 150px) 0;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    background: rgba(35, 4, 8, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(20, 0, 3, 0.22);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    width: var(--shell);
    min-height: 82px;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    color: var(--white);
}

.brand img {
    width: 52px;
    height: 52px;
    padding: 3px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: 1.04rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--lacson-gold-soft);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 31px);
}

.desktop-nav a {
    position: relative;
    padding: 29px 0 25px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.06em;
}

.desktop-nav a::after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    content: "";
    background: var(--lacson-gold);
    transform: translateX(-50%);
    transition: width 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    width: 100%;
}

.header-cta {
    padding: 12px 19px;
    color: var(--lacson-ink);
    background: linear-gradient(135deg, var(--lacson-gold-soft), var(--lacson-gold));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(214, 165, 54, 0.22);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
    box-shadow: 0 11px 34px rgba(214, 165, 54, 0.34);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    min-height: max(720px, 100svh);
    color: var(--white);
    background: var(--lacson-maroon-black);
    align-items: stretch;
    overflow: hidden;
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img {
    object-fit: cover;
    object-position: center 47%;
    animation: hero-scale 16s ease-out both;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(25, 2, 5, 0.97) 0%, rgba(43, 3, 8, 0.83) 37%, rgba(43, 3, 8, 0.28) 68%, rgba(22, 1, 3, 0.24) 100%),
        linear-gradient(0deg, rgba(20, 1, 3, 0.86) 0%, transparent 40%);
}

.hero-glow {
    background: radial-gradient(circle at 75% 75%, rgba(245, 214, 117, 0.18), transparent 35%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    padding-top: 150px;
    padding-bottom: 120px;
    align-items: center;
    grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.55fr);
    gap: clamp(60px, 8vw, 130px);
}

.hero-copy {
    max-width: 810px;
}

.hero-kicker,
.eyebrow {
    display: flex;
    margin: 0 0 22px;
    align-items: center;
    gap: 12px;
    color: var(--lacson-maroon);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-kicker {
    color: var(--lacson-gold-soft);
}

.kicker-mark {
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    max-width: 800px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3.2rem, 6.6vw, 6.8rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.92;
    text-wrap: balance;
}

.hero h1 em,
.display-title em,
.classroom-quote em {
    color: var(--lacson-gold-soft);
    font-weight: 400;
}

.hero-lead {
    max-width: 680px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.79);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.8;
}

.hero-lead strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.18em;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 23px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-align: center;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.arrow-link svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover svg,
.arrow-link:hover svg {
    transform: translateX(4px);
}

.button-gold {
    color: var(--lacson-ink);
    background: linear-gradient(135deg, #ffe99c, var(--lacson-gold));
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 38px rgba(214, 165, 54, 0.22);
}

.button-gold:hover {
    box-shadow: 0 17px 42px rgba(214, 165, 54, 0.34);
}

.button-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.button-glass:hover {
    background: rgba(255, 255, 255, 0.14);
}

.text-link {
    position: relative;
    margin-left: 7px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.87);
    font-size: 0.77rem;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.text-link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--lacson-gold);
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 200ms ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

.hero-card {
    position: relative;
    align-self: end;
    max-width: 330px;
    padding: 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    box-shadow: 0 30px 70px rgba(16, 0, 3, 0.22);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.hero-card-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--serif);
    font-size: 2rem;
}

.hero-card > p {
    margin: 0 0 12px;
    color: var(--lacson-gold-soft);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-card h2 {
    max-width: 240px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
    font-weight: 400;
    line-height: 1.18;
}

.hero-card-rule {
    width: 100%;
    height: 1px;
    margin: 23px 0 18px;
    background: linear-gradient(90deg, var(--lacson-gold), transparent);
}

.hero-card ul {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-card li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
}

.hero-card li::before {
    margin-right: 7px;
    color: var(--lacson-gold);
    content: "•";
}

.hero-values {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(38, 3, 7, 0.64);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.hero-values .section-shell {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 4vw, 65px);
}

.hero-values span {
    color: rgba(255, 255, 255, 0.84);
    font-family: var(--serif);
    font-size: clamp(0.76rem, 1.3vw, 1rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-values i {
    width: 4px;
    height: 4px;
    background: var(--lacson-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--lacson-gold);
}

.section-heading {
    margin-bottom: clamp(50px, 7vw, 90px);
}

.split-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
    gap: clamp(40px, 8vw, 120px);
}

.display-title {
    max-width: 820px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 5.2vw, 5.2rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 1;
    text-wrap: balance;
}

.display-title em {
    color: var(--lacson-maroon);
}

.heading-copy {
    margin: 0;
    color: var(--lacson-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.heading-copy > p {
    margin: 0;
}

.arrow-link {
    display: inline-flex;
    margin-top: 27px;
    align-items: center;
    gap: 12px;
    color: var(--lacson-maroon);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about {
    position: relative;
    background:
        radial-gradient(circle at 92% 10%, rgba(214, 165, 54, 0.13), transparent 24%),
        var(--lacson-paper);
}

.about-visual {
    position: relative;
    min-height: 580px;
    margin-left: clamp(0px, 8vw, 105px);
}

.about-visual picture {
    display: block;
    width: 90%;
    height: 100%;
}

.about-visual img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 8px 80px 8px 8px;
    box-shadow: var(--shadow);
}

.image-note {
    position: absolute;
    right: 0;
    bottom: -34px;
    display: grid;
    width: min(380px, 78%);
    min-height: 145px;
    padding: 29px 34px;
    align-content: center;
    color: var(--white);
    background: var(--lacson-maroon);
    border-top: 4px solid var(--lacson-gold);
    box-shadow: 0 20px 50px rgba(52, 5, 10, 0.22);
}

.image-note span {
    margin-bottom: 8px;
    color: var(--lacson-gold-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.image-note strong {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 400;
    line-height: 1.3;
}

.seal-orbit {
    position: absolute;
    bottom: -50px;
    left: -78px;
    display: grid;
    width: 156px;
    height: 156px;
    color: var(--lacson-maroon);
    background: var(--lacson-cream);
    border: 1px solid rgba(122, 17, 24, 0.2);
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(48, 6, 10, 0.15);
    place-items: center;
}

.seal-orbit::before {
    width: 55px;
    height: 55px;
    content: "";
    background: url("../img/optimized/lacson-logo.webp") center / contain no-repeat;
    border-radius: 50%;
}

.seal-orbit span {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 13px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-align: center;
    text-transform: uppercase;
    animation: orbit 20s linear infinite;
}

.about-points {
    display: grid;
    margin-top: 115px;
    grid-template-columns: repeat(3, 1fr);
}

.value-card {
    position: relative;
    padding: 4px clamp(22px, 4vw, 52px) 15px;
    border-right: 1px solid var(--line);
}

.value-card:first-child {
    padding-left: 0;
}

.value-card:last-child {
    padding-right: 0;
    border-right: 0;
}

.value-card > span {
    color: var(--lacson-gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.value-card h3 {
    margin: 15px 0 11px;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.value-card p {
    margin: 0;
    color: var(--lacson-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.program {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(122, 17, 24, 0.3), transparent 45%),
        var(--lacson-maroon-black);
    overflow: hidden;
}

.program::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    content: "";
    opacity: 0.08;
    background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 45px 45px;
}

.program-orb {
    position: absolute;
    border: 1px solid rgba(214, 165, 54, 0.18);
    border-radius: 50%;
}

.program-orb-one {
    top: -220px;
    right: -180px;
    width: 540px;
    height: 540px;
}

.program-orb-two {
    bottom: -160px;
    left: -120px;
    width: 360px;
    height: 360px;
}

.program-intro {
    position: relative;
    z-index: 1;
    display: grid;
    margin-bottom: 70px;
    align-items: end;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(40px, 8vw, 130px);
}

.eyebrow-light {
    color: var(--lacson-gold-soft);
}

.display-title-light {
    color: var(--white);
}

.display-title-light em {
    color: var(--lacson-gold-soft);
}

.program-intro > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
}

.program-layout {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(40px, 6vw, 85px);
}

.program-photo {
    position: relative;
    min-height: 690px;
}

.program-photo picture,
.program-photo img {
    width: 100%;
    height: 100%;
}

.program-photo img {
    object-fit: cover;
    border-radius: 12px 65px 12px 12px;
}

.photo-badge {
    position: absolute;
    right: -36px;
    bottom: 42px;
    display: flex;
    padding: 20px 25px;
    align-items: center;
    gap: 16px;
    color: var(--lacson-ink);
    background: var(--lacson-gold-soft);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.photo-badge svg {
    width: 32px;
    fill: none;
    stroke: var(--lacson-maroon);
    stroke-width: 1.3;
}

.photo-badge span {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
}

.photo-badge strong {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
}

.program-pillars {
    display: grid;
    align-content: center;
}

.pillar {
    display: grid;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 22px;
}

.pillar:first-child {
    padding-top: 0;
}

.pillar:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.pillar-icon {
    display: grid;
    width: 56px;
    height: 56px;
    color: var(--lacson-gold-soft);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(214, 165, 54, 0.32);
    border-radius: 50%;
    place-items: center;
}

.pillar-icon svg {
    width: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.pillar h3 {
    margin: 1px 0 7px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.pillar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.7;
}

.formation {
    background:
        radial-gradient(circle at 6% 45%, rgba(214, 165, 54, 0.1), transparent 22%),
        var(--lacson-paper);
}

.centered-heading {
    max-width: 850px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading .eyebrow {
    justify-content: center;
}

.centered-heading > p:last-child {
    max-width: 710px;
    margin: 25px auto 0;
    color: var(--lacson-muted);
    line-height: 1.85;
}

.formation-feature {
    position: relative;
    height: clamp(440px, 57vw, 680px);
    overflow: hidden;
    border-radius: 70px 12px 12px 12px;
    box-shadow: var(--shadow);
}

.formation-feature picture,
.formation-feature img {
    width: 100%;
    height: 100%;
}

.formation-feature img {
    object-fit: cover;
}

.formation-feature::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(30, 3, 6, 0.85), transparent 55%);
}

.formation-overlay {
    position: absolute;
    z-index: 1;
    right: clamp(25px, 5vw, 75px);
    bottom: clamp(25px, 5vw, 62px);
    left: clamp(25px, 5vw, 75px);
    color: var(--white);
}

.formation-overlay p {
    margin: 0 0 8px;
    color: var(--lacson-gold-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.formation-overlay h3 {
    max-width: 600px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
}

.experience-grid {
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(56, 7, 12, 0.07);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.experience-card:hover {
    box-shadow: 0 24px 55px rgba(56, 7, 12, 0.13);
    transform: translateY(-6px);
}

.experience-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.experience-image picture,
.experience-image img {
    width: 100%;
    height: 100%;
}

.experience-image img {
    object-fit: cover;
    transition: transform 550ms ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.04);
}

.experience-image > span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 43px;
    height: 43px;
    color: var(--lacson-ink);
    background: var(--lacson-gold-soft);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 0.86rem;
    place-items: center;
}

.experience-copy {
    padding: 28px;
}

.experience-copy > p:first-child {
    margin: 0 0 8px;
    color: var(--lacson-maroon);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.experience-copy h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
}

.experience-copy > p:last-child {
    margin: 0;
    color: var(--lacson-muted);
    font-size: 0.87rem;
    line-height: 1.75;
}

.classroom-story {
    position: relative;
    min-height: 730px;
    color: var(--white);
    background: var(--lacson-maroon-black);
    overflow: hidden;
}

.classroom-media,
.classroom-media img,
.classroom-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.classroom-media img {
    object-fit: cover;
}

.classroom-shade {
    background: linear-gradient(90deg, rgba(28, 2, 5, 0.94) 0%, rgba(41, 3, 7, 0.7) 42%, rgba(25, 2, 4, 0.15) 76%);
}

.classroom-inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 730px;
    align-items: center;
}

.classroom-quote {
    max-width: 670px;
}

.classroom-quote > svg {
    width: 50px;
    margin-bottom: 28px;
    fill: var(--lacson-gold);
}

.classroom-quote blockquote {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.1vw, 5.4rem);
    letter-spacing: -0.05em;
    line-height: 1;
}

.classroom-quote p {
    max-width: 550px;
    margin: 31px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
}

.gallery {
    background:
        linear-gradient(rgba(122, 17, 24, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(122, 17, 24, 0.035) 1px, transparent 1px),
        var(--lacson-cream);
    background-size: 52px 52px;
}

.gallery-heading {
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-auto-rows: 255px;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-card {
    position: relative;
    display: block;
    min-width: 0;
    padding: 0;
    color: var(--white);
    background: var(--lacson-maroon-deep);
    border: 0;
    border-radius: 14px;
    cursor: zoom-in;
    overflow: hidden;
    text-align: left;
}

.gallery-card-1 {
    grid-column: span 7;
}

.gallery-card-2 {
    grid-column: span 5;
}

.gallery-card-3,
.gallery-card-4,
.gallery-card-5,
.gallery-card-8,
.gallery-card-9,
.gallery-card-10 {
    grid-column: span 4;
}

.gallery-card-6,
.gallery-card-7 {
    grid-column: span 6;
}

.gallery-card picture,
.gallery-card img {
    width: 100%;
    height: 100%;
}

.gallery-card img {
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2,.65,.3,1);
}

.gallery-card:hover img {
    transform: scale(1.045);
}

.gallery-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(26, 2, 5, 0.85), transparent 62%);
    transition: background 220ms ease;
}

.gallery-card:hover .gallery-card-shade {
    background: linear-gradient(0deg, rgba(64, 5, 12, 0.9), rgba(64, 5, 12, 0.05) 70%);
}

.gallery-card-copy {
    position: absolute;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: grid;
}

.gallery-card-copy small {
    margin-bottom: 3px;
    color: var(--lacson-gold-soft);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-card-copy strong {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}

.gallery-expand {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 200ms ease, transform 200ms ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    place-items: center;
}

.gallery-expand svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.gallery-card:hover .gallery-expand,
.gallery-card:focus-visible .gallery-expand {
    opacity: 1;
    transform: translateY(0);
}

.visual-disclaimer {
    margin: 22px 0 0;
    color: var(--lacson-muted);
    font-size: 0.73rem;
    text-align: right;
}

.admissions {
    position: relative;
    color: var(--white);
    background:
        radial-gradient(circle at 85% 10%, rgba(214, 165, 54, 0.15), transparent 25%),
        var(--lacson-maroon-deep);
}

.admissions-shell {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(50px, 8vw, 120px);
}

.admissions-image {
    position: relative;
}

.admissions-image img {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 80px 12px 12px 12px;
    box-shadow: 0 35px 75px rgba(12, 0, 2, 0.36);
}

.admissions-image-tag {
    position: absolute;
    right: -35px;
    bottom: 36px;
    display: grid;
    padding: 22px 30px;
    color: var(--lacson-ink);
    background: var(--lacson-gold-soft);
    box-shadow: 0 15px 40px rgba(20, 0, 3, 0.25);
}

.admissions-image-tag span {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admissions-image-tag strong {
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 400;
}

.admissions-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
}

.admission-steps {
    display: grid;
    margin: 36px 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.admission-steps li {
    display: grid;
    padding: 15px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
}

.admission-steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--lacson-gold-soft);
    border: 1px solid rgba(214, 165, 54, 0.42);
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 0.82rem;
    place-items: center;
}

.admission-steps strong,
.admission-steps small {
    display: block;
}

.admission-steps strong {
    font-family: var(--serif);
    font-size: 1.08rem;
    font-weight: 400;
}

.admission-steps small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
}

.admissions-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact {
    background: var(--lacson-paper);
}

.contact-heading {
    display: grid;
    margin-bottom: 60px;
    align-items: end;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 70px;
}

.contact-heading > p {
    margin: 0 0 8px;
    color: var(--lacson-muted);
    line-height: 1.85;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.95fr;
    gap: 18px;
}

.contact-card {
    position: relative;
    display: flex;
    min-height: 280px;
    padding: 32px;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(56, 7, 12, 0.07);
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.contact-card:hover {
    color: var(--white);
    background: var(--lacson-maroon);
    transform: translateY(-5px);
}

.contact-icon {
    display: grid;
    width: 54px;
    height: 54px;
    margin-bottom: auto;
    color: var(--lacson-maroon);
    background: var(--lacson-cream);
    border-radius: 50%;
    place-items: center;
}

.contact-icon svg {
    width: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.contact-card:hover .contact-icon {
    color: var(--lacson-maroon);
    background: var(--lacson-gold-soft);
}

.contact-card > small {
    margin: 29px 0 8px;
    color: var(--lacson-maroon);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-card:hover > small {
    color: var(--lacson-gold-soft);
}

.contact-card > strong {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.8vw, 1.48rem);
    font-weight: 400;
    line-height: 1.45;
}

.contact-card > strong a {
    display: block;
    transition: color 180ms ease;
}

.contact-card > strong a:hover {
    color: var(--lacson-gold-soft);
}

.contact-link {
    margin-top: 20px;
    color: var(--lacson-muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.contact-card:hover .contact-link {
    color: rgba(255, 255, 255, 0.65);
}

.site-footer {
    color: var(--white);
    background: var(--lacson-maroon-black);
}

.footer-main {
    display: grid;
    padding-top: 82px;
    padding-bottom: 65px;
    grid-template-columns: 1.8fr 0.7fr 0.8fr 1.15fr;
    gap: clamp(35px, 6vw, 90px);
}

.brand-footer {
    margin-bottom: 22px;
}

.brand-footer img {
    width: 60px;
    height: 60px;
}

.footer-brand > p {
    max-width: 400px;
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.86rem;
    line-height: 1.85;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2 {
    margin: 7px 0 12px;
    color: var(--lacson-gold-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.8rem;
    line-height: 1.65;
    transition: color 180ms ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.lightbox {
    width: min(1100px, calc(100% - 30px));
    max-width: none;
    max-height: calc(100dvh - 30px);
    padding: 0;
    color: var(--white);
    background: #170306;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    overflow: hidden;
}

.lightbox::backdrop {
    background: rgba(15, 0, 2, 0.88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.lightbox figure {
    margin: 0;
}

.lightbox img {
    width: 100%;
    max-height: calc(100dvh - 110px);
    object-fit: contain;
}

.lightbox figcaption {
    padding: 17px 22px;
    color: var(--lacson-gold-soft);
    font-family: var(--serif);
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    background: rgba(20, 0, 3, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    place-items: center;
}

.lightbox-close svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms cubic-bezier(.2,.65,.3,1), transform 700ms cubic-bezier(.2,.65,.3,1);
}

.js .reveal.is-visible,
.js .hero .reveal {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-scale {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

@keyframes orbit {
    to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
    .desktop-nav {
        display: none;
    }

    .header-cta {
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        z-index: 999;
        top: 82px;
        right: 0;
        left: 0;
        display: flex;
        height: calc(100dvh - 82px);
        padding: 34px 20px 42px;
        flex-direction: column;
        background:
            radial-gradient(circle at 90% 10%, rgba(214, 165, 54, 0.16), transparent 30%),
            rgba(35, 4, 8, 0.98);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
        overflow-y: auto;
    }

    .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu nav {
        display: grid;
    }

    .mobile-menu nav a {
        padding: 13px 4px;
        color: rgba(255, 255, 255, 0.88);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-family: var(--serif);
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .mobile-menu-cta {
        width: 100%;
        margin-top: 30px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(250px, 0.48fr);
        gap: 40px;
    }

    .hero-card {
        padding: 25px;
    }

    .program-layout {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 45px;
    }

    .photo-badge {
        right: -20px;
    }

    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .contact-card:last-child {
        grid-column: 1 / -1;
        min-height: 230px;
    }

    .footer-main {
        grid-template-columns: 1.6fr 0.7fr 0.8fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    :root {
        --shell: min(100% - 32px, 720px);
    }

    .hero {
        min-height: 820px;
    }

    .hero-media img {
        object-position: 58% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(28, 2, 5, 0.95) 0%, rgba(41, 3, 7, 0.73) 60%, rgba(30, 2, 5, 0.35) 100%),
            linear-gradient(0deg, rgba(19, 1, 3, 0.94), transparent 55%);
    }

    .hero-inner {
        padding-top: 135px;
        padding-bottom: 125px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        align-self: end;
    }

    .hero-card {
        display: none;
    }

    .split-heading,
    .program-intro,
    .contact-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-visual {
        min-height: 480px;
        margin-left: 30px;
    }

    .about-visual img {
        height: 480px;
        border-radius: 8px 55px 8px 8px;
    }

    .seal-orbit {
        left: -45px;
        width: 125px;
        height: 125px;
    }

    .seal-orbit::before {
        width: 45px;
        height: 45px;
    }

    .about-points {
        margin-top: 105px;
        grid-template-columns: 1fr;
    }

    .value-card,
    .value-card:first-child,
    .value-card:last-child {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .value-card:last-child {
        border-bottom: 0;
    }

    .program-layout {
        grid-template-columns: 1fr;
    }

    .program-photo {
        min-height: 540px;
    }

    .photo-badge {
        right: 20px;
    }

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

    .experience-card {
        display: grid;
        grid-template-columns: minmax(240px, 0.85fr) 1.15fr;
    }

    .experience-image {
        height: 100%;
        min-height: 310px;
    }

    .gallery-grid {
        grid-auto-rows: 230px;
    }

    .gallery-card-1,
    .gallery-card-2,
    .gallery-card-3,
    .gallery-card-4,
    .gallery-card-5,
    .gallery-card-6,
    .gallery-card-7,
    .gallery-card-8,
    .gallery-card-9,
    .gallery-card-10 {
        grid-column: span 6;
    }

    .gallery-card-1,
    .gallery-card-6,
    .gallery-card-9 {
        grid-column: 1 / -1;
    }

    .admissions-shell {
        grid-template-columns: 1fr;
    }

    .admissions-image {
        max-width: 650px;
    }

    .admissions-image img {
        min-height: 520px;
    }

    .admissions-image-tag {
        right: 20px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    :root {
        --shell: calc(100% - 28px);
    }

    html {
        scroll-padding-top: 72px;
    }

    .nav-shell {
        min-height: 72px;
    }

    .brand {
        gap: 8px;
    }

    .brand img {
        width: 44px;
        height: 44px;
    }

    .brand-copy strong {
        font-size: 0.92rem;
    }

    .brand-copy small {
        font-size: 0.5rem;
        letter-spacing: 0.11em;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu {
        top: 72px;
        height: calc(100dvh - 72px);
    }

    .section-pad {
        padding: 82px 0;
    }

    .hero {
        min-height: 790px;
    }

    .hero-media img {
        object-position: 62% center;
    }

    .hero-inner {
        padding-top: 118px;
        padding-bottom: 105px;
        align-items: end;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 14vw, 4.4rem);
        line-height: 0.96;
    }

    .hero-lead {
        margin-top: 23px;
        font-size: 0.93rem;
        line-height: 1.68;
    }

    .hero-actions {
        display: grid;
        margin-top: 28px;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
        min-height: 52px;
        padding: 0 14px;
        font-size: 0.68rem;
    }

    .hero-actions .text-link {
        margin: 4px 0 0;
        justify-self: start;
    }

    .hero-values .section-shell {
        min-height: 58px;
        justify-content: space-between;
        gap: 5px;
    }

    .hero-values span {
        font-family: var(--sans);
        font-size: 0.5rem;
        font-weight: 800;
        letter-spacing: 0.07em;
    }

    .hero-values i {
        width: 3px;
        height: 3px;
    }

    .display-title {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .about-visual {
        min-height: 405px;
        margin-left: 16px;
    }

    .about-visual picture {
        width: 95%;
    }

    .about-visual img {
        height: 405px;
        border-radius: 7px 40px 7px 7px;
    }

    .image-note {
        right: -2px;
        bottom: -58px;
        width: 85%;
        min-height: 120px;
        padding: 21px 24px;
    }

    .seal-orbit {
        display: none;
    }

    .about-points {
        margin-top: 100px;
    }

    .program-intro {
        margin-bottom: 45px;
    }

    .program-photo {
        min-height: 420px;
    }

    .program-photo img {
        border-radius: 8px 42px 8px 8px;
    }

    .photo-badge {
        right: 14px;
        bottom: 14px;
        padding: 14px 17px;
    }

    .photo-badge svg {
        width: 26px;
    }

    .pillar {
        padding: 23px 0;
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 15px;
    }

    .pillar-icon {
        width: 48px;
        height: 48px;
    }

    .pillar h3 {
        font-size: 1.2rem;
    }

    .formation-feature {
        height: 500px;
        border-radius: 44px 8px 8px 8px;
    }

    .formation-feature img {
        object-position: 52% center;
    }

    .experience-grid {
        margin-top: 16px;
        gap: 16px;
    }

    .experience-card {
        display: block;
    }

    .experience-image {
        height: 245px;
        min-height: 0;
    }

    .experience-copy {
        padding: 24px;
    }

    .classroom-story,
    .classroom-inner {
        min-height: 650px;
    }

    .classroom-media img {
        object-position: 62% center;
    }

    .classroom-shade {
        background: linear-gradient(90deg, rgba(28, 2, 5, 0.95) 0%, rgba(41, 3, 7, 0.7) 75%, rgba(25, 2, 4, 0.35));
    }

    .classroom-quote blockquote {
        font-size: clamp(2.7rem, 12vw, 4rem);
    }

    .gallery-grid {
        display: grid;
        grid-auto-rows: 280px;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-card-1,
    .gallery-card-2,
    .gallery-card-3,
    .gallery-card-4,
    .gallery-card-5,
    .gallery-card-6,
    .gallery-card-7,
    .gallery-card-8,
    .gallery-card-9,
    .gallery-card-10 {
        grid-column: 1;
    }

    .gallery-expand {
        opacity: 1;
        transform: none;
    }

    .visual-disclaimer {
        text-align: left;
    }

    .admissions-image img {
        min-height: 420px;
        border-radius: 48px 8px 8px 8px;
    }

    .admissions-image-tag {
        right: 12px;
        bottom: 12px;
        padding: 16px 20px;
    }

    .admissions-actions {
        display: grid;
    }

    .admissions-actions .button {
        width: 100%;
    }

    .contact-heading {
        margin-bottom: 40px;
    }

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

    .contact-card,
    .contact-card:last-child {
        min-height: 250px;
        grid-column: auto;
    }

    .footer-main {
        padding-top: 65px;
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
    }
}

@media (max-width: 370px) {
    .brand-copy small {
        display: none;
    }

    .hero-actions {
        grid-template-columns: 1fr;
    }

    .hero-actions .text-link {
        grid-column: auto;
    }

    .hero-values span {
        font-size: 0.45rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}
