/*
 * Liceo Rosales — front-end and editor styles.
 * No external font, framework or icon dependency.
 */

:root {
    --lr-blue: #0000ff;
    --lr-blue-dark: #0000b8;
    --lr-navy: #121b3a;
    --lr-navy-soft: #1c294f;
    --lr-burgundy: #8f1231;
    --lr-sky: #e9f0ff;
    --lr-cream: #f7f6f2;
    --lr-ink: #252b3a;
    --lr-muted: #5c6476;
    --lr-line: #dfe3ec;
    --lr-white: #fff;
    --lr-success: #087a46;
    --lr-warning: #8a5000;
    --lr-font: "Century Gothic", "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
    --lr-shadow-sm: 0 8px 24px rgba(18, 27, 58, .08);
    --lr-shadow: 0 20px 60px rgba(18, 27, 58, .13);
    --lr-radius-sm: 12px;
    --lr-radius: 22px;
    --lr-radius-lg: 34px;
    --lr-container: 1180px;
    --lr-content: 760px;
    --lr-header-height: 88px;
}

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

html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--lr-white);
    color: var(--lr-ink);
    font-family: var(--lr-font);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
figure { margin: 0; }
address { font-style: normal; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: var(--lr-blue); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--lr-blue-dark); }
p { margin: 0 0 1.2em; }
ul, ol { margin-top: 0; }
h1, h2, h3, h4, h5, h6 {
    color: var(--lr-navy);
    font-family: var(--lr-font);
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.14;
    margin: 0 0 .65em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.45rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }

::selection { background: var(--lr-blue); color: var(--lr-white); }
:focus-visible { outline: 3px solid #ffcf33; outline-offset: 4px; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    word-wrap: normal !important;
}
.lr-skip-link {
    background: var(--lr-white);
    border: 2px solid var(--lr-blue);
    border-radius: 8px;
    color: var(--lr-navy);
    font-weight: 700;
    left: 16px;
    padding: 10px 16px;
    position: fixed;
    top: -100px;
    z-index: 100000;
}
.lr-skip-link:focus { top: 16px; }
.lr-site-shell { min-height: 100vh; overflow: clip; }
.lr-icon { display: inline-block; flex: 0 0 auto; vertical-align: middle; }

/* WordPress layout */
.lr-entry-content > :where(:not(.alignwide):not(.alignfull)),
.lr-article-content > :where(:not(.alignwide):not(.alignfull)) {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--lr-content);
    width: calc(100% - 40px);
}
.alignwide { margin-left: auto; margin-right: auto; max-width: var(--lr-container); width: calc(100% - 40px); }
.alignfull { margin-left: 0; margin-right: 0; max-width: none; width: 100%; }
.wp-block-columns { align-items: center; display: flex; gap: clamp(32px, 6vw, 86px); margin-bottom: 0; }
.wp-block-column { flex: 1 1 0; min-width: 0; }
.wp-block-image img { border-radius: var(--lr-radius); width: 100%; }
.wp-block-buttons { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.wp-block-button__link, .lr-button, .lr-header-cta {
    align-items: center;
    background: var(--lr-blue);
    border: 2px solid var(--lr-blue);
    border-radius: 999px;
    color: var(--lr-white);
    display: inline-flex;
    font-size: .9rem;
    font-weight: 700;
    gap: 9px;
    justify-content: center;
    line-height: 1.2;
    min-height: 48px;
    padding: 13px 22px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.wp-block-button__link:hover, .lr-button:hover, .lr-header-cta:hover {
    background: var(--lr-blue-dark);
    border-color: var(--lr-blue-dark);
    box-shadow: 0 10px 26px rgba(0, 0, 255, .2);
    color: var(--lr-white);
    transform: translateY(-2px);
}
.wp-block-button.is-style-outline .wp-block-button__link,
.lr-button-outline {
    background: transparent;
    border-color: var(--lr-blue);
    color: var(--lr-blue);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.lr-button-outline:hover { background: var(--lr-blue); color: var(--lr-white); }
.lr-button-light { background: var(--lr-white); border-color: var(--lr-white); color: var(--lr-navy); }
.lr-button-light:hover { background: var(--lr-sky); border-color: var(--lr-sky); color: var(--lr-navy); }
.lr-button-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: var(--lr-white); }
.lr-button-ghost:hover { background: rgba(255,255,255,.12); border-color: var(--lr-white); }
.lr-button-row { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.lr-button-row-center, .lr-buttons-centered { justify-content: center; }
.lr-buttons-centered.wp-block-buttons { justify-content: center; }
.lr-text-link { align-items: center; display: inline-flex; font-weight: 700; gap: 7px; text-decoration: none; }
.lr-text-link:hover .lr-icon { transform: translateX(4px); }
.lr-text-link .lr-icon { transition: transform .2s ease; }

/* Header */
.lr-topbar { background: var(--lr-navy); color: rgba(255,255,255,.88); font-size: .76rem; }
.lr-topbar-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: var(--lr-container);
    min-height: 38px;
    padding: 5px 20px;
}
.lr-topbar p { margin: 0; }
.lr-topbar-links { align-items: center; display: flex; gap: 20px; }
.lr-topbar-links a { align-items: center; color: inherit; display: inline-flex; gap: 6px; text-decoration: none; }
.lr-topbar-links a:hover { color: var(--lr-white); }
.lr-social-link { border-left: 1px solid rgba(255,255,255,.2); padding-left: 18px; }
.lr-site-header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(18,27,58,.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .2s ease, background-color .2s ease;
}
.admin-bar .lr-site-header { top: 32px; }
.lr-site-header.is-scrolled { box-shadow: 0 12px 35px rgba(18,27,58,.1); }
.lr-header-inner {
    align-items: center;
    display: flex;
    gap: 26px;
    justify-content: space-between;
    margin: auto;
    max-width: 1280px;
    min-height: var(--lr-header-height);
    padding: 9px 20px;
}
.lr-brand { flex: 0 0 auto; }
.lr-brand-link { align-items: center; color: var(--lr-navy); display: flex; gap: 12px; text-decoration: none; }
.lr-brand-logo { height: 69px; object-fit: contain; width: 69px; }
.lr-brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.lr-brand-copy strong { font-size: 1.08rem; letter-spacing: -.02em; }
.lr-brand-copy small { color: var(--lr-muted); font-size: .63rem; margin-top: 4px; max-width: 170px; }
.lr-navigation-wrap { align-items: center; display: flex; gap: 18px; min-width: 0; }
.lr-primary-navigation { min-width: 0; }
.lr-menu { align-items: center; display: flex; gap: 3px; list-style: none; margin: 0; padding: 0; }
.lr-menu li { margin: 0; position: relative; }
.lr-menu a {
    border-radius: 9px;
    color: var(--lr-navy);
    display: block;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1.25;
    padding: 10px 8px;
    text-decoration: none;
}
.lr-menu a:hover, .lr-menu .current-menu-item > a, .lr-menu .current_page_item > a { background: var(--lr-sky); color: var(--lr-blue); }
.lr-menu .sub-menu {
    background: var(--lr-white);
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-radius-sm);
    box-shadow: var(--lr-shadow);
    display: none;
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 240px;
    padding: 10px;
    position: absolute;
    top: 100%;
}
.lr-menu li:hover > .sub-menu, .lr-menu li:focus-within > .sub-menu { display: block; }
.lr-menu .sub-menu a { font-size: .82rem; padding: 11px 12px; }
.lr-header-cta { flex: 0 0 auto; font-size: .78rem; min-height: 43px; padding: 11px 16px; }
.lr-menu-toggle { align-items: center; background: transparent; border: 0; color: var(--lr-navy); display: none; justify-content: center; padding: 8px; }
.lr-menu-toggle-close { display: none; }
.menu-open .lr-menu-toggle-open { display: none; }
.menu-open .lr-menu-toggle-close { display: inline-flex; }

/* Shared headings and sections */
.lr-eyebrow {
    color: var(--lr-blue);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .18em;
    margin: 0 0 17px;
    text-transform: uppercase;
}
.lr-eyebrow-light { color: #a9bdff; }
.lr-section-lead { color: var(--lr-muted); margin-left: auto; margin-right: auto; max-width: 790px; }
.lr-home-section, .lr-page-section { padding-bottom: clamp(70px, 9vw, 120px); padding-top: clamp(70px, 9vw, 120px); }
.lr-home-section.alignfull, .lr-page-section.alignfull {
    max-width: none;
    padding-left: max(20px, calc((100vw - var(--lr-container)) / 2));
    padding-right: max(20px, calc((100vw - var(--lr-container)) / 2));
    width: 100%;
}
.lr-page-section-compact { padding-bottom: 50px; padding-top: 50px; }
.lr-section-soft { background: var(--lr-cream); }
.lr-section-ink { background: var(--lr-navy); color: rgba(255,255,255,.86); }
.lr-section-ink h1, .lr-section-ink h2, .lr-section-ink h3, .lr-section-ink h4 { color: var(--lr-white); }
.lr-section-ink .lr-eyebrow { color: #a9bdff; }
.lr-section-ink a:not(.lr-button):not(.wp-block-button__link) { color: #cbd6ff; }
.lr-section-centered { text-align: center; }
.lr-section-centered > .wp-block-columns, .lr-section-centered > .lr-card-grid { text-align: left; }
.lr-section-narrow { max-width: 900px; }
.lr-section-warning { background: #fff8e7; border: 1px solid #efcf82; border-radius: var(--lr-radius); margin-bottom: 90px; padding: 42px; }
.lr-split { align-items: center; }
.lr-split > .wp-block-column { flex-basis: 50%; }
.lr-split-reverse > .wp-block-column:first-child { order: 0; }
.lr-image-shadow img { box-shadow: var(--lr-shadow); }
.lr-anchor-offset { scroll-margin-top: 130px; }

/* Home hero */
.lr-home-hero { min-height: min(760px, calc(100vh - 80px)); position: relative; }
.lr-home-hero .wp-block-cover__background { background: linear-gradient(90deg, rgba(11,21,54,.9) 0%, rgba(11,21,54,.66) 54%, rgba(11,21,54,.22) 100%) !important; opacity: 1 !important; }
.lr-home-hero .wp-block-cover__image-background { object-position: center 45%; }
.lr-home-hero .wp-block-cover__inner-container { margin: auto; max-width: var(--lr-container); padding: 90px 20px; width: 100%; }
.lr-hero-content { color: rgba(255,255,255,.9); max-width: 760px; }
.lr-hero-content h1 { color: var(--lr-white); font-size: clamp(3rem, 7vw, 6.3rem); letter-spacing: -.055em; margin-bottom: 24px; }
.lr-hero-lead { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 680px; }
.lr-hero-actions .wp-block-button.is-style-outline .wp-block-button__link { border-color: rgba(255,255,255,.75); color: var(--lr-white); }
.lr-hero-actions .wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--lr-white); border-color: var(--lr-white); color: var(--lr-navy); }
.lr-hero-anniversary { align-items: center; border-left: 3px solid #a9bdff; display: flex; gap: 13px; margin-top: 42px; padding-left: 16px; }
.lr-hero-anniversary strong { color: var(--lr-white); font-size: 1.1rem; }
.lr-hero-anniversary span { color: rgba(255,255,255,.72); font-size: .85rem; }
.lr-trust-strip { background: var(--lr-white); border-bottom: 1px solid var(--lr-line); }
.lr-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin: auto; max-width: var(--lr-container); padding: 32px 20px; }
.lr-trust-grid > div { align-items: center; border-right: 1px solid var(--lr-line); display: flex; flex-direction: column; padding: 3px 20px; text-align: center; }
.lr-trust-grid > div:last-child { border-right: 0; }
.lr-trust-grid strong { color: var(--lr-blue); font-size: 2rem; line-height: 1; }
.lr-trust-grid span { color: var(--lr-muted); font-size: .78rem; margin-top: 7px; }
.lr-home-intro .wp-block-column:first-child { flex: 1.05; }

/* Cards and grids */
.lr-card-grid { display: grid; gap: 20px; margin-top: 44px; }
.lr-card-grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.lr-card-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.lr-card-grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.lr-card-grid-large { gap: 26px; }
.lr-info-card {
    background: var(--lr-white);
    border: 1px solid var(--lr-line);
    border-radius: var(--lr-radius);
    box-shadow: 0 1px 0 rgba(18,27,58,.02);
    padding: 30px;
    transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.lr-info-card:hover { border-color: #b8c6ff; box-shadow: var(--lr-shadow-sm); transform: translateY(-5px); }
.lr-card-icon { align-items: center; background: var(--lr-sky); border-radius: 50%; color: var(--lr-blue); display: inline-flex; height: 54px; justify-content: center; margin-bottom: 21px; width: 54px; }
.lr-info-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.lr-info-card p { color: var(--lr-muted); font-size: .92rem; margin: 0; }
.lr-section-ink .lr-info-card { background: var(--lr-navy-soft); border-color: rgba(255,255,255,.13); }
.lr-section-ink .lr-info-card p { color: rgba(255,255,255,.72); }

/* Stage cards */
.lr-stage-columns { gap: 24px; margin-top: 45px; }
.lr-stage-card {
    background: var(--lr-sky);
    border-radius: var(--lr-radius-lg);
    min-height: 430px;
    overflow: hidden;
    padding: 46px;
    position: relative;
}
.lr-stage-card-alt { background: var(--lr-navy); color: rgba(255,255,255,.78); }
.lr-stage-card-alt h3 { color: var(--lr-white); }
.lr-stage-card-alt .wp-block-button.is-style-outline .wp-block-button__link { border-color: var(--lr-white); color: var(--lr-white); }
.lr-stage-number { color: rgba(0,0,255,.12); display: block; font-size: clamp(6rem, 12vw, 10rem); font-weight: 700; letter-spacing: -.08em; line-height: .8; margin-bottom: 42px; }
.lr-stage-card-alt .lr-stage-number { color: rgba(255,255,255,.1); }

/* Method and image mosaic */
.lr-split-method { min-height: 610px; }
.lr-image-mosaic { display: grid; gap: 14px; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1fr 1fr; }
.lr-image-mosaic img { border-radius: var(--lr-radius); height: 100%; object-fit: cover; width: 100%; }
.lr-image-mosaic img:first-child { grid-row: 1 / 3; min-height: 520px; }
.lr-check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.lr-check-list li { margin: 0 0 14px; padding-left: 31px; position: relative; }
.lr-check-list li::before { color: var(--lr-blue); content: "✓"; font-weight: 700; left: 0; position: absolute; }
.lr-section-ink .lr-check-list li::before { color: #a9bdff; }
.lr-check-list-columns { columns: 2; column-gap: 50px; }

/* Services */
.lr-service-grid { display: grid; gap: 22px; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 45px; text-align: left; }
.lr-service-card { background: var(--lr-white); border-radius: var(--lr-radius); box-shadow: var(--lr-shadow-sm); overflow: hidden; }
.lr-service-card > img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.lr-service-card > div:last-child { padding: 27px; }
.lr-service-card > div:last-child > span { color: var(--lr-blue); font-size: .72rem; font-weight: 700; letter-spacing: .15em; }
.lr-service-card h3 { margin: 9px 0 11px; }
.lr-service-card p { color: var(--lr-muted); font-size: .9rem; margin: 0; }
.lr-service-card-color { background: var(--lr-blue); color: rgba(255,255,255,.82); }
.lr-service-card-color h3, .lr-service-card-color p, .lr-service-card-color > div:last-child > span { color: var(--lr-white); }
.lr-service-card-burgundy { background: var(--lr-burgundy); }
.lr-service-illustration { align-items: center; color: var(--lr-white); display: flex; height: 212px; justify-content: center; padding: 0 !important; }
.lr-service-illustration .lr-icon { height: 70px; opacity: .9; width: 70px; }
.lr-program-columns { align-items: stretch; gap: 24px; }
.lr-service-detail-card, .lr-program-card { background: var(--lr-sky); border-radius: var(--lr-radius); padding: 38px; }
.lr-service-detail-card-alt, .lr-program-card-alt { background: var(--lr-cream); }
.lr-section-ink :is(.lr-service-detail-card, .lr-program-card) { color: var(--lr-ink); }
.lr-section-ink :is(.lr-service-detail-card, .lr-program-card) :is(h1, h2, h3, h4) { color: var(--lr-navy); }
.lr-section-ink :is(.lr-service-detail-card, .lr-program-card) .lr-eyebrow { color: var(--lr-blue); }
.lr-price-grid { display: grid; gap: 18px; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 30px; }
.lr-price-grid article { background: var(--lr-white); border-radius: var(--lr-radius-sm); padding: 25px; }
.lr-price-grid dl, .lr-price-grid dd { margin: 0; }
.lr-price-grid dl > div { align-items: center; border-top: 1px solid var(--lr-line); display: flex; justify-content: space-between; padding: 11px 0; }
.lr-price-grid dd { color: var(--lr-blue); font-weight: 700; }
.lr-data-warning { color: var(--lr-warning); margin: 24px 0 0; }

/* Life gallery */
.lr-life-gallery { display: grid; gap: 15px; grid-template-columns: repeat(4,1fr); margin-top: 43px; }
.lr-life-gallery a { border-radius: var(--lr-radius); color: var(--lr-white); min-height: 360px; overflow: hidden; position: relative; text-decoration: none; }
.lr-life-gallery img { height: 100%; object-fit: cover; transition: transform .45s ease; width: 100%; }
.lr-life-gallery a::after { background: linear-gradient(transparent, rgba(10,18,45,.86)); bottom: 0; content: ""; inset: 0; position: absolute; }
.lr-life-gallery span { bottom: 22px; font-size: 1.03rem; font-weight: 700; left: 22px; position: absolute; right: 22px; text-align: left; z-index: 1; }
.lr-life-gallery a:hover img { transform: scale(1.045); }
.lr-gallery-grid { display: grid; gap: 15px; grid-template-columns: repeat(3,1fr); margin-top: 40px; }
.lr-gallery-grid figure { border-radius: var(--lr-radius); overflow: hidden; position: relative; }
.lr-gallery-grid img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.lr-gallery-grid figcaption { background: linear-gradient(transparent,rgba(18,27,58,.88)); bottom: 0; color: var(--lr-white); font-weight: 700; left: 0; padding: 45px 20px 18px; position: absolute; right: 0; }

/* Why band */
.lr-why-band { background: var(--lr-burgundy); color: rgba(255,255,255,.85); padding: clamp(70px,9vw,120px) 20px; }
.lr-why-band-inner { align-items: center; display: grid; gap: 80px; grid-template-columns: 1.2fr .8fr; margin: auto; max-width: var(--lr-container); }
.lr-why-band h2 { color: var(--lr-white); }
.lr-why-band ul { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.lr-why-band li { border-bottom: 1px solid rgba(255,255,255,.22); font-weight: 700; padding: 0 0 14px 31px; position: relative; }
.lr-why-band li::before { content: "✓"; left: 0; position: absolute; }
.lr-big-closing { background: var(--lr-navy); color: var(--lr-white); padding: clamp(70px,9vw,115px) 20px; text-align: center; }
.lr-big-closing p { font-size: clamp(2rem,5vw,4.6rem); font-weight: 700; letter-spacing: -.04em; line-height: 1.12; margin: 0 auto 35px; max-width: 1050px; }
.lr-big-quote { color: var(--lr-blue); font-size: clamp(1.7rem,4vw,3rem); font-weight: 700; line-height: 1.3; margin: 0 auto; max-width: 900px; text-align: center; }

/* News */
.lr-news-grid { display: grid; gap: 24px; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 42px; text-align: left; }
.lr-news-card { background: var(--lr-white); border: 1px solid var(--lr-line); border-radius: var(--lr-radius); box-shadow: 0 1px 0 rgba(18,27,58,.02); overflow: hidden; transition: box-shadow .22s ease, transform .22s ease; }
.lr-news-card:hover { box-shadow: var(--lr-shadow-sm); transform: translateY(-5px); }
.lr-news-card-image { background: var(--lr-sky); display: block; overflow: hidden; }
.lr-news-card-image img { aspect-ratio: 16/10; object-fit: cover; transition: transform .4s ease; width: 100%; }
.lr-news-card:hover .lr-news-card-image img { transform: scale(1.04); }
.lr-news-placeholder { align-items: center; color: var(--lr-blue); display: flex; height: 220px; justify-content: center; }
.lr-news-card-body { padding: 27px; }
.lr-news-card time { color: var(--lr-burgundy); font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.lr-news-card h2, .lr-news-card h3 { font-size: 1.2rem; margin: 10px 0 12px; }
.lr-news-card h2 a, .lr-news-card h3 a { color: var(--lr-navy); text-decoration: none; }
.lr-news-card p { color: var(--lr-muted); font-size: .9rem; }
.lr-news-card-text { min-height: 260px; }
.lr-empty-state { background: var(--lr-sky); border-radius: var(--lr-radius); color: var(--lr-navy); margin: 35px auto; max-width: 760px; padding: 30px; text-align: center; }
.lr-pagination, .navigation.pagination { margin-top: 50px; text-align: center; }
.nav-links { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.page-numbers { align-items: center; border: 1px solid var(--lr-line); border-radius: 8px; display: inline-flex; min-height: 42px; padding: 8px 13px; text-decoration: none; }
.page-numbers.current { background: var(--lr-blue); border-color: var(--lr-blue); color: var(--lr-white); }

/* Admissions */
.lr-admission-section { background: var(--lr-navy); }
.lr-admission-panel { align-items: stretch; background: linear-gradient(135deg,var(--lr-blue) 0%,#253bdb 100%); border-radius: var(--lr-radius-lg); color: rgba(255,255,255,.87); display: grid; grid-template-columns: 1fr 310px; margin: auto; max-width: var(--lr-container); overflow: hidden; }
.lr-admission-panel-copy { padding: clamp(38px,6vw,70px); }
.lr-admission-panel h2 { color: var(--lr-white); max-width: 760px; }
.lr-status-pill { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32); border-radius: 999px; display: inline-block; font-size: .76rem; font-weight: 700; margin-bottom: 20px; padding: 7px 12px; }
.lr-admission-panel-date { align-items: center; background: rgba(8,16,57,.35); display: flex; flex-direction: column; justify-content: center; padding: 36px; text-align: center; }
.lr-admission-panel-date span { font-size: .74rem; letter-spacing: .08em; opacity: .75; text-transform: uppercase; }
.lr-admission-panel-date strong { color: var(--lr-white); display: block; font-size: 1.12rem; margin: 8px 0 17px; }
.lr-admission-closed { background: linear-gradient(135deg,var(--lr-burgundy),#5f1730); }
.lr-calendar-table-wrap { border: 1px solid var(--lr-line); border-radius: var(--lr-radius); margin-top: 34px; overflow-x: auto; text-align: left; }
.lr-calendar-table { border-collapse: collapse; min-width: 700px; width: 100%; }
.lr-calendar-table th { background: var(--lr-navy); color: var(--lr-white); font-size: .8rem; letter-spacing: .05em; padding: 16px 20px; text-transform: uppercase; }
.lr-calendar-table td { border-bottom: 1px solid var(--lr-line); padding: 16px 20px; vertical-align: top; }
.lr-calendar-table tbody tr:nth-child(even) { background: rgba(233,240,255,.45); }
.lr-calendar-table td:first-child { color: var(--lr-blue); font-weight: 700; white-space: nowrap; }
.lr-data-note { background: var(--lr-sky); border-left: 4px solid var(--lr-blue); border-radius: 0 var(--lr-radius-sm) var(--lr-radius-sm) 0; color: var(--lr-navy); padding: 18px 20px; }
.lr-course-data, .lr-inline-facts { display: flex; flex-wrap: wrap; gap: 13px; list-style: none; padding: 0; }
.lr-course-data li, .lr-inline-facts li { background: var(--lr-sky); border-radius: 999px; color: var(--lr-navy); font-size: .82rem; font-weight: 700; padding: 8px 14px; }
.lr-process-steps, .lr-number-list { counter-reset: lr-step; list-style: none; padding: 0; }
.lr-process-steps li, .lr-number-list li { border-bottom: 1px solid var(--lr-line); counter-increment: lr-step; padding: 20px 0 20px 64px; position: relative; }
.lr-process-steps li::before, .lr-number-list li::before { align-items: center; background: var(--lr-blue); border-radius: 50%; color: var(--lr-white); content: counter(lr-step); display: flex; font-weight: 700; height: 42px; justify-content: center; left: 0; position: absolute; top: 18px; width: 42px; }

/* Contact and forms */
.lr-contact-section { background: var(--lr-cream); }
.lr-contact-layout { align-items: flex-start; }
.lr-contact-details { list-style: none; margin: 30px 0 0; padding: 0; }
.lr-contact-details li { align-items: flex-start; border-bottom: 1px solid var(--lr-line); display: flex; gap: 15px; padding: 17px 0; }
.lr-contact-details .lr-icon { color: var(--lr-blue); margin-top: 4px; }
.lr-contact-details div { display: flex; flex-direction: column; min-width: 0; }
.lr-contact-details span { color: var(--lr-muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.lr-contact-details a, .lr-contact-details address, .lr-contact-details p { color: var(--lr-navy); font-weight: 700; margin: 3px 0 0; overflow-wrap: anywhere; text-decoration: none; }
.lr-form-wrap { background: var(--lr-white); border-radius: var(--lr-radius); box-shadow: var(--lr-shadow-sm); padding: clamp(25px,4vw,42px); text-align: left; }
.lr-section-ink .lr-form-wrap { color: var(--lr-ink); margin: 35px auto 0; max-width: 900px; }
.lr-form-centered > * { max-width: 980px; }
.lr-form-grid { display: grid; gap: 18px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.lr-field { display: flex; flex-direction: column; gap: 7px; }
.lr-field-full { grid-column: 1/-1; }
.lr-field label { color: var(--lr-navy); font-size: .82rem; font-weight: 700; }
.lr-field input:not([type="checkbox"]), .lr-field select, .lr-field textarea {
    background: var(--lr-white);
    border: 1px solid #c8ceda;
    border-radius: 10px;
    color: var(--lr-ink);
    min-height: 50px;
    padding: 11px 13px;
    width: 100%;
}
.lr-field textarea { min-height: 145px; resize: vertical; }
.lr-field input:focus, .lr-field select:focus, .lr-field textarea:focus { border-color: var(--lr-blue); box-shadow: 0 0 0 3px rgba(0,0,255,.1); outline: none; }
.lr-field small { color: var(--lr-muted); font-size: .73rem; }
.lr-form-privacy-summary { background: var(--lr-cream); border: 1px solid var(--lr-line); border-radius: var(--lr-radius-sm); color: var(--lr-muted); font-size: .74rem; line-height: 1.55; padding: 16px 18px; }
.lr-form-privacy-summary p { margin: 0; }
.lr-form-privacy-summary p + p { margin-top: 7px; }
.lr-form-privacy-summary strong { color: var(--lr-navy); }
.lr-form-privacy-summary a { overflow-wrap: anywhere; }
.lr-checkbox-field label { align-items: flex-start; display: flex; font-weight: 400; gap: 10px; }
.lr-checkbox-field input { flex: 0 0 auto; height: 18px; margin-top: 4px; width: 18px; }
.lr-submit-button { margin-top: 24px; }
.lr-required-note { color: var(--lr-muted); font-size: .7rem; margin: 12px 0 0; }
.lr-honeypot { height: 0; left: -10000px; overflow: hidden; position: absolute; width: 0; }
.lr-form-notice { border-radius: var(--lr-radius-sm); font-weight: 700; margin: 0 0 22px; padding: 14px 16px; }
.lr-form-notice-success { background: #e8f7ef; color: var(--lr-success); }
.lr-form-notice-error { background: #fff0f0; color: #a21f26; }
.lr-contact-note { align-items: flex-start; display: flex; gap: 23px; margin: auto; max-width: var(--lr-container); }
.lr-contact-note > div:first-child { align-items: center; background: var(--lr-white); border-radius: 50%; color: var(--lr-blue); display: flex; flex: 0 0 64px; height: 64px; justify-content: center; }
.lr-contact-note h2 { font-size: 1.5rem; }

/* Map and video */
.lr-map-block { background: #dfe6f7; border-radius: var(--lr-radius); min-height: 430px; overflow: hidden; position: relative; }
.lr-map-placeholder { align-items: center; display: flex; flex-direction: column; justify-content: center; min-height: 430px; padding: 40px 20px; text-align: center; }
.lr-map-placeholder-icon { align-items: center; background: var(--lr-white); border-radius: 50%; box-shadow: var(--lr-shadow-sm); color: var(--lr-blue); display: flex; height: 88px; justify-content: center; margin-bottom: 22px; width: 88px; }
.lr-map-placeholder h2 { font-size: 1.7rem; }
.lr-map-privacy { color: var(--lr-muted); font-size: .8rem; max-width: 600px; }
.lr-map-block iframe { border: 0; height: 480px; width: 100%; }
.lr-video-frame { background: var(--lr-navy); border-radius: var(--lr-radius); box-shadow: var(--lr-shadow); margin: 38px auto 0; max-width: 980px; overflow: hidden; }
.lr-video-frame video { aspect-ratio: 16/9; width: 100%; }

/* Internal page heroes */
.lr-page-hero, .lr-archive-hero {
    background-color: var(--lr-navy);
    background-image: var(--lr-page-image);
    background-position: center;
    background-size: cover;
    color: rgba(255,255,255,.86);
    min-height: 510px;
    overflow: hidden;
    position: relative;
}
.lr-page-hero-overlay { background: linear-gradient(90deg,rgba(10,18,48,.94),rgba(10,18,48,.62) 58%,rgba(10,18,48,.32)); inset: 0; position: absolute; }
.lr-page-hero-inner, .lr-archive-hero-inner { margin: auto; max-width: var(--lr-container); padding: 90px 20px; position: relative; width: 100%; }
.lr-page-hero-inner { display: flex; flex-direction: column; justify-content: center; min-height: 510px; }
.lr-page-hero h1, .lr-archive-hero h1 { color: var(--lr-white); font-size: clamp(2.7rem,6vw,5.4rem); max-width: 980px; }
.lr-page-hero-lead { font-size: clamp(1rem,2vw,1.25rem); max-width: 750px; }
.lr-breadcrumbs { font-size: .75rem; margin-bottom: 35px; }
.lr-breadcrumbs ol { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.lr-breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; opacity: .5; }
.lr-breadcrumbs a { color: inherit; text-decoration: none; }
.lr-breadcrumbs [aria-current="page"] { opacity: .74; }
.lr-page-hero .lr-breadcrumbs { color: rgba(255,255,255,.78); }

/* About and content-specific modules */
.lr-photo-row { display: grid; gap: 15px; grid-template-columns: repeat(2,1fr); margin-top: 35px; }
.lr-photo-row-3 { grid-template-columns: repeat(3,1fr); }
.lr-photo-row img { aspect-ratio: 4/3; border-radius: var(--lr-radius); object-fit: cover; width: 100%; }
.lr-quality-callout, .lr-family-callout { align-items: center; background: var(--lr-sky); border-radius: var(--lr-radius); display: grid; gap: 26px; grid-template-columns: auto 1fr; margin: 80px auto; max-width: var(--lr-container); padding: 38px; }
.lr-quality-callout > div:first-child, .lr-family-callout > div:first-child { align-items: center; background: var(--lr-blue); border-radius: 50%; color: var(--lr-white); display: flex; height: 78px; justify-content: center; width: 78px; }
.lr-quality-callout p:last-child, .lr-family-callout p:last-child { margin-bottom: 0; }
.lr-org-chart { display: grid; gap: 16px; margin-top: 40px; }
.lr-org-row { display: grid; gap: 16px; grid-template-columns: repeat(2,1fr); }
.lr-org-row-3 { grid-template-columns: repeat(3,1fr); }
.lr-org-chart article { background: var(--lr-white); border: 1px solid var(--lr-line); border-radius: var(--lr-radius-sm); padding: 22px; }
.lr-org-lead article { background: var(--lr-navy); color: rgba(255,255,255,.75); text-align: center; }
.lr-org-lead article h3 { color: var(--lr-white); }
.lr-org-chart h3 { font-size: 1rem; margin-bottom: 5px; }
.lr-org-chart p { color: var(--lr-muted); font-size: .82rem; margin: 0; }
.lr-org-lead p { color: rgba(255,255,255,.7); }
.lr-org-wide { grid-column: 1/-1; }
.lr-day-timeline { list-style: none; margin: 40px auto 0; max-width: 900px; padding: 0; }
.lr-day-timeline li { align-items: flex-start; border-left: 1px solid rgba(255,255,255,.22); display: grid; gap: 28px; grid-template-columns: 100px 1fr; margin-left: 50px; padding: 0 0 38px 43px; position: relative; }
.lr-day-timeline li::before { background: #a9bdff; border: 5px solid var(--lr-navy); border-radius: 50%; content: ""; height: 18px; left: -10px; position: absolute; top: 4px; width: 18px; }
.lr-day-timeline span { color: #a9bdff; font-weight: 700; }
.lr-day-timeline h3 { margin-bottom: 7px; }
.lr-reasons-list { display: grid; gap: 0; margin-top: 40px; }
.lr-reasons-list article { align-items: flex-start; border-top: 1px solid var(--lr-line); display: grid; gap: 34px; grid-template-columns: 80px 1fr; padding: 35px 0; }
.lr-reasons-list article > span { color: var(--lr-blue); font-size: 2rem; font-weight: 700; }
.lr-reasons-list h2 { font-size: 1.55rem; margin-bottom: 8px; }
.lr-reasons-list p { color: var(--lr-muted); margin: 0; }

.lr-service-prices-pending { align-items: center; background: var(--lr-sky); border: 1px solid #c9d5ff; border-radius: var(--lr-radius); display: grid; gap: 24px; grid-template-columns: auto 1fr; padding: clamp(28px,5vw,46px); }
.lr-service-prices-pending > div:first-child { align-items: center; background: var(--lr-blue); border-radius: 50%; color: var(--lr-white); display: flex; height: 68px; justify-content: center; width: 68px; }
.lr-service-prices-pending h2 { font-size: clamp(1.65rem,3vw,2.35rem); }
.lr-service-prices-pending p:last-of-type { margin-bottom: 10px; }
.lr-service-prices-published > h2 { max-width: 820px; }

/* Legal */
.lr-legal-content { font-size: .96rem; }
.lr-legal-content h2 { font-size: 1.55rem; margin-top: 2.2em; }
.lr-legal-content h3 { font-size: 1.15rem; margin-top: 1.8em; }
.lr-legal-content ul { padding-left: 22px; }
.lr-legal-data { border: 1px solid var(--lr-line); border-radius: var(--lr-radius-sm); margin: 25px 0; overflow: hidden; }
.lr-legal-data > div { display: grid; grid-template-columns: 180px 1fr; }
.lr-legal-data > div + div { border-top: 1px solid var(--lr-line); }
.lr-legal-data dt, .lr-legal-data dd { margin: 0; padding: 13px 16px; }
.lr-legal-data dt { background: var(--lr-sky); color: var(--lr-navy); font-weight: 700; }
.lr-legal-data dd { overflow-wrap: anywhere; }
.lr-legal-note { background: #fff8e7; border-radius: var(--lr-radius-sm); padding: 20px; }

/* Archives and articles */
.lr-archive-hero { background: linear-gradient(135deg,var(--lr-navy),#263c83); min-height: 380px; }
.lr-archive-hero-inner { min-height: 380px; }
.lr-archive-hero-inner > p:last-child { font-size: 1.16rem; }
.lr-archive-content { margin: auto; max-width: var(--lr-container); padding: clamp(65px,8vw,110px) 20px; }
.lr-news-hero, .lr-simple-hero { background: var(--lr-cream); }
.lr-news-hero-inner, .lr-simple-hero > div { margin: auto; max-width: 980px; padding: clamp(65px,9vw,120px) 20px; }
.lr-news-hero h1, .lr-simple-hero h1 { font-size: clamp(2.4rem,5vw,4.6rem); }
.lr-news-hero time { color: var(--lr-burgundy); font-size: .82rem; font-weight: 700; }
.lr-single-notice { padding-bottom: 100px; }
.lr-single-featured { margin: -45px auto 65px; max-width: 1080px; padding: 0 20px; position: relative; }
.lr-single-featured img { border-radius: var(--lr-radius); box-shadow: var(--lr-shadow); max-height: 620px; object-fit: cover; width: 100%; }
.lr-article-content { font-size: 1.05rem; }
.lr-article-content h2 { font-size: 2rem; margin-top: 2em; }
.lr-article-footer { border-top: 1px solid var(--lr-line); margin: 55px auto 0; max-width: var(--lr-content); padding: 25px 0; width: calc(100% - 40px); }

/* CTA */
.lr-cta-band { align-items: center; background: linear-gradient(135deg,var(--lr-blue),#263cdb); border-radius: var(--lr-radius-lg); color: rgba(255,255,255,.84); display: flex; gap: 50px; justify-content: space-between; margin: clamp(60px,8vw,110px) auto; max-width: var(--lr-container); padding: clamp(35px,6vw,62px); }
.lr-cta-band h2 { color: var(--lr-white); font-size: clamp(1.8rem,4vw,3rem); }
.lr-cta-band p:last-child { margin-bottom: 0; }
.lr-cta-band .lr-button { flex: 0 0 auto; }

/* 404 */
.lr-error-page { margin: auto; max-width: 850px; padding: clamp(80px,12vw,170px) 20px; text-align: center; }
.lr-error-code { color: var(--lr-sky); font-size: clamp(7rem,20vw,15rem); font-weight: 700; letter-spacing: -.08em; line-height: .72; margin: 0 0 35px; }
.lr-error-page > p:not(.lr-error-code):not(.lr-eyebrow) { color: var(--lr-muted); font-size: 1.08rem; }

/* Footer */
.lr-site-footer { background: #0c132a; color: rgba(255,255,255,.68); }
.lr-footer-main { display: grid; gap: 70px; grid-template-columns: 1.15fr .75fr 1fr; margin: auto; max-width: var(--lr-container); padding: 78px 20px 60px; }
.lr-footer-logo { align-items: center; color: var(--lr-white); display: flex; gap: 14px; text-decoration: none; }
.lr-footer-logo img { height: 72px; object-fit: contain; width: 72px; }
.lr-footer-logo span { display: flex; flex-direction: column; }
.lr-footer-logo strong { font-size: 1.1rem; }
.lr-footer-logo small { color: rgba(255,255,255,.55); font-size: .74rem; }
.lr-footer-brand > p { font-size: .86rem; margin-top: 24px; max-width: 380px; }
.lr-footer-column h2 { color: var(--lr-white); font-size: .9rem; letter-spacing: .1em; margin-bottom: 20px; text-transform: uppercase; }
.lr-footer-menu, .lr-legal-menu { list-style: none; margin: 0; padding: 0; }
.lr-footer-menu li { margin-bottom: 9px; }
.lr-footer-menu a, .lr-footer-contact a { color: rgba(255,255,255,.72); font-size: .84rem; text-decoration: none; }
.lr-footer-menu a:hover, .lr-footer-contact a:hover { color: var(--lr-white); }
.lr-footer-contact { display: flex; flex-direction: column; gap: 9px; }
.lr-footer-contact address, .lr-footer-contact p { font-size: .82rem; margin: 0; }
.lr-footer-social { align-items: center; display: inline-flex; gap: 8px; margin-top: 8px; }
.lr-footer-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.1); display: flex; font-size: .72rem; justify-content: space-between; margin: auto; max-width: var(--lr-container); padding: 22px 20px; }
.lr-footer-bottom p { margin: 0; }
.lr-footer-bottom nav { align-items: center; display: flex; flex-wrap: wrap; gap: 16px; }
.lr-legal-menu { display: flex; flex-wrap: wrap; gap: 16px; }
.lr-legal-menu a, .lr-privacy-settings { background: none; border: 0; color: rgba(255,255,255,.68); font-size: .72rem; padding: 0; text-decoration: none; }
.lr-legal-menu a:hover, .lr-privacy-settings:hover { color: var(--lr-white); }

/* Privacy dialog */
.lr-privacy-dialog { border: 0; border-radius: var(--lr-radius); box-shadow: 0 30px 100px rgba(0,0,0,.35); max-width: 560px; padding: 0; width: calc(100% - 32px); }
.lr-privacy-dialog::backdrop { background: rgba(8,14,36,.72); }
.lr-privacy-dialog form { padding: 36px; position: relative; }
.lr-privacy-dialog h2 { font-size: 1.8rem; }
.lr-dialog-close { align-items: center; background: var(--lr-cream); border: 0; border-radius: 50%; color: var(--lr-navy); display: flex; height: 40px; justify-content: center; position: absolute; right: 18px; top: 18px; width: 40px; }
.lr-dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 18px; }
.lr-privacy-current { background: var(--lr-sky); border-radius: 10px; color: var(--lr-navy); font-size: .82rem; padding: 12px; }

@media (max-width: 1180px) {
    :root { --lr-header-height: 76px; }
    .lr-topbar p { display: none; }
    .lr-topbar-inner { justify-content: flex-end; }
    .lr-brand-logo { height: 58px; width: 58px; }
    .lr-menu-toggle { display: inline-flex; margin-left: auto; }
    .lr-navigation-wrap {
        align-items: stretch;
        background: var(--lr-white);
        border-top: 1px solid var(--lr-line);
        display: none;
        flex-direction: column;
        inset: calc(100% + 1px) 0 auto;
        max-height: calc(100vh - 114px);
        overflow-y: auto;
        padding: 18px 20px 30px;
        position: absolute;
    }
    .menu-open .lr-navigation-wrap { display: flex; }
    .lr-site-header { position: sticky; }
    .lr-header-inner { position: relative; }
    .lr-menu { align-items: stretch; flex-direction: column; }
    .lr-menu a { font-size: .95rem; padding: 13px 12px; }
    .lr-menu .sub-menu { border: 0; box-shadow: none; display: block; padding: 0 0 0 18px; position: static; }
    .lr-header-cta { align-self: stretch; font-size: .9rem; }
    .lr-card-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 900px) {
    .wp-block-columns, .lr-split, .lr-program-columns { flex-direction: column; }
    .lr-split-reverse > .wp-block-column:first-child { order: 1; }
    .lr-split-reverse > .wp-block-column:last-child { order: 0; }
    .wp-block-column { width: 100%; }
    .lr-card-grid-3, .lr-service-grid, .lr-news-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .lr-life-gallery { grid-template-columns: repeat(2,1fr); }
    .lr-life-gallery a { min-height: 330px; }
    .lr-why-band-inner { gap: 50px; grid-template-columns: 1fr; }
    .lr-admission-panel { grid-template-columns: 1fr; }
    .lr-admission-panel-date { align-items: baseline; display: grid; gap: 8px 18px; grid-template-columns: repeat(2,auto); justify-content: center; }
    .lr-admission-panel-date strong { margin: 0; }
    .lr-gallery-grid { grid-template-columns: repeat(2,1fr); }
    .lr-price-grid { grid-template-columns: 1fr; }
    .lr-footer-main { gap: 45px; grid-template-columns: 1fr 1fr; }
    .lr-footer-brand { grid-column: 1/-1; }
    .lr-cta-band { align-items: flex-start; flex-direction: column; }
    .lr-cta-band .lr-button { flex: auto; }
}

@media (max-width: 782px) {
    .admin-bar .lr-site-header { top: 46px; }
}

@media (max-width: 640px) {
    :root { --lr-radius: 18px; --lr-radius-lg: 24px; }
    body { font-size: 15px; }
    .lr-topbar { display: none; }
    .admin-bar .lr-site-header { top: 46px; }
    .lr-brand-copy small { display: none; }
    .lr-brand-copy strong { font-size: .94rem; }
    .lr-brand-logo { height: 52px; width: 52px; }
    .lr-header-inner { min-height: 70px; }
    .lr-navigation-wrap { max-height: calc(100vh - 70px); }
    .lr-home-hero { min-height: 650px !important; }
    .lr-home-hero .wp-block-cover__inner-container { padding-bottom: 65px; padding-top: 65px; }
    .lr-hero-content h1 { font-size: clamp(2.65rem,14vw,4.2rem); }
    .lr-hero-actions, .lr-button-row { align-items: stretch; flex-direction: column; }
    .lr-hero-actions .wp-block-button, .lr-hero-actions .wp-block-button__link, .lr-button-row .lr-button { width: 100%; }
    .lr-hero-anniversary { align-items: flex-start; flex-direction: column; gap: 2px; }
    .lr-trust-grid { grid-template-columns: repeat(2,1fr); }
    .lr-trust-grid > div { border-bottom: 1px solid var(--lr-line); border-right: 1px solid var(--lr-line); padding: 19px 10px; }
    .lr-trust-grid > div:nth-child(2n) { border-right: 0; }
    .lr-trust-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
    .lr-card-grid-2, .lr-card-grid-3, .lr-card-grid-4, .lr-service-grid, .lr-news-grid { grid-template-columns: 1fr; }
    .lr-info-card, .lr-stage-card, .lr-service-detail-card, .lr-program-card { padding: 27px; }
    .lr-stage-card { min-height: 0; }
    .lr-stage-number { margin-bottom: 30px; }
    .lr-image-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 310px 170px; }
    .lr-image-mosaic img:first-child { grid-column: 1/-1; grid-row: auto; min-height: 0; }
    .lr-life-gallery, .lr-gallery-grid { grid-template-columns: 1fr; }
    .lr-life-gallery a { min-height: 320px; }
    .lr-page-hero, .lr-page-hero-inner { min-height: 430px; }
    .lr-page-hero-inner { padding-bottom: 60px; padding-top: 60px; }
    .lr-page-hero h1 { font-size: 2.65rem; }
    .lr-form-grid { grid-template-columns: 1fr; }
    .lr-field-full { grid-column: auto; }
    .lr-form-wrap { padding: 23px; }
    .lr-admission-panel-copy { padding: 32px 25px; }
    .lr-admission-panel-date { align-items: center; display: flex; }
    .lr-calendar-table { min-width: 630px; }
    .lr-photo-row, .lr-photo-row-3 { grid-template-columns: 1fr; }
    .lr-org-row, .lr-org-row-3 { grid-template-columns: 1fr; }
    .lr-quality-callout, .lr-family-callout { grid-template-columns: 1fr; margin: 50px 20px; padding: 28px; }
    .lr-service-prices-pending { grid-template-columns: 1fr; }
    .lr-day-timeline li { gap: 10px; grid-template-columns: 1fr; margin-left: 10px; padding-left: 32px; }
    .lr-reasons-list article { gap: 12px; grid-template-columns: 1fr; }
    .lr-check-list-columns { columns: 1; }
    .lr-footer-main { grid-template-columns: 1fr; padding-top: 55px; }
    .lr-footer-brand { grid-column: auto; }
    .lr-footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
    .lr-footer-bottom nav, .lr-legal-menu { align-items: flex-start; flex-direction: column; gap: 8px; }
    .lr-legal-data > div { grid-template-columns: 1fr; }
    .lr-single-featured { margin-top: -25px; }
    .lr-contact-note { flex-direction: column; }
    .lr-dialog-actions { align-items: stretch; flex-direction: column; }
}

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

@media print {
    .lr-topbar, .lr-site-header, .lr-site-footer, .lr-cta-band, .lr-map-block, .lr-contact-form { display: none !important; }
    body { color: #000; font-size: 11pt; }
    a { color: #000; text-decoration: none; }
    .lr-page-hero, .lr-archive-hero { background: none !important; color: #000; min-height: 0; }
    .lr-page-hero-overlay { display: none; }
    .lr-page-hero h1, .lr-archive-hero h1 { color: #000; }
}
