:root {
    --gold: #b9934a;
    --gold-dark: #8a682c;
    --maroon: #781b25;
    --maroon-dark: #501018;
    --ink: #24211f;
    --muted: #625e59;
    --cream: #f6f2e9;
    --cream-deep: #ece4d4;
    --white: #fff;
    --line: #ded6c8;
    --success: #285c43;
    --shadow: 0 18px 50px rgba(50, 36, 20, .10);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Source Sans 3", "Source Sans Pro", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); line-height: 1.65; }
body.nav-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
img { -webkit-user-drag: none; user-select: none; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.16; }
ul[role="list"], .plain-list { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid #2e73b8; outline-offset: 3px; }
::selection { background: var(--maroon); color: var(--white); text-shadow: none; }
::-moz-selection { background: var(--maroon); color: var(--white); text-shadow: none; }

.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.container-narrow { width: min(780px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); }
.section-maroon { background: var(--maroon-dark); color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 14px; color: var(--maroon); font-size: clamp(2rem, 4vw, 3.35rem); }
.section-dark .section-heading h2, .section-maroon .section-heading h2 { color: var(--white); }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p, .section-maroon .section-heading p { color: #d8d2c9; }
.eyebrow { display: block; margin-bottom: 10px; color: var(--gold-dark); font-size: .73rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-dark .eyebrow, .section-maroon .eyebrow, .hero .eyebrow { color: #e3c47c; }
.lead { font-family: var(--serif); font-size: clamp(1.25rem, 2.3vw, 1.65rem); line-height: 1.55; }
.muted { color: var(--muted); }
.text-link { color: var(--maroon); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.text-link:hover { color: var(--gold-dark); }

.utility-bar { background: var(--maroon-dark); color: #f7eee5; font-size: .82rem; }
.utility-inner { display: flex; min-height: 36px; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; gap: 20px; }
.utility-links a { text-decoration: none; }
.utility-links a:hover { color: #e3c47c; }

.top-nav-container { position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--gold); background: rgba(255,255,255,.97); box-shadow: 0 4px 18px rgba(32,25,18,.07); transition: transform .3s ease; }
.top-nav-container.scroll-hide { transform: translateY(-100%); }
.nav-wrapper { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 28px; }
.nav-branding { min-width: 0; flex: 1 1 auto; }
.brand-link { display: inline-flex; align-items: center; gap: 14px; color: var(--maroon); text-decoration: none; }
.brand-seal { width: 48px; height: 58px; object-fit: contain; }
.brand-copy { display: block; }
.brand-name { display: block; font-family: var(--serif); font-size: clamp(1.25rem, 2.25vw, 1.8rem); font-weight: 700; line-height: 1.1; }
.brand-subtitle { display: block; margin-top: 5px; color: var(--gold-dark); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.sticky-nav { flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: clamp(15px, 1.65vw, 25px); margin: 0; padding: 0; list-style: none; }
.nav-links a { display: block; padding: 12px 0 9px; border-bottom: 2px solid transparent; color: #4e4a46; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { border-color: var(--gold); color: var(--maroon); }
.menu-icon, .nav-backdrop { display: none; }

.hero { position: relative; display: grid; min-height: 590px; place-items: center; overflow: hidden; background: #292421; color: var(--white); text-align: center; }
.hero::before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(100deg, rgba(22,16,13,.78), rgba(43,26,20,.44)), var(--hero-image, url("https://varsitarian.net/wp-content/uploads/2024/10/la-naval-2024.jpg")); background-position: center; background-size: cover; transform: scale(1.01); }
.hero::after { position: absolute; inset: auto 0 0; height: 150px; content: ""; background: linear-gradient(transparent, rgba(15,11,10,.5)); }
.hero-compact { min-height: 430px; }
.hero-diocese { --hero-image: url("https://images.unsplash.com/photo-1548625361-195fe5772323?auto=format&fit=crop&w=1800&q=85"); }
.hero-parishes { --hero-image: url("https://images.unsplash.com/photo-1438032005730-c779502df39b?auto=format&fit=crop&w=1800&q=85"); }
.hero-mass { --hero-image: url("https://thumbs.dreamstime.com/b/rome-september-celebration-holy-mass-vetus-ordo-latin-days-pilgrimage-summorum-pontificum-decennial-ord-123296862.jpg?w=992"); }
.hero-sacraments { --hero-image: url("https://images5.alphacoders.com/429/thumb-1920-429099.jpg"); }
.hero-contact { --hero-image: url("https://images.unsplash.com/photo-1490730141103-6cac27aaab94?auto=format&fit=crop&w=1800&q=85"); }
.hero-content { position: relative; z-index: 1; width: min(850px, calc(100% - 40px)); padding: 70px 0; }
.hero h1 { margin-bottom: 18px; font-size: clamp(2.8rem, 7vw, 5.7rem); letter-spacing: -.025em; text-shadow: 0 3px 20px rgba(0,0,0,.25); }
.hero-compact h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); }
.hero p { max-width: 680px; margin: 0 auto 30px; color: #f4eee6; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.button-row.left { justify-content: flex-start; }
.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; background: var(--maroon); color: var(--white); cursor: pointer; font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.btn:hover { background: var(--maroon-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #21180b; }
.btn-gold:hover { background: #d1ae67; }
.btn-outline { border-color: currentColor; background: transparent; color: inherit; }
.btn-outline:hover { background: var(--white); color: var(--maroon); }
.btn-light { background: var(--white); color: var(--maroon); }
.btn-light:hover { background: var(--cream); }

.quick-actions { position: relative; z-index: 3; margin-top: -52px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); box-shadow: var(--shadow); }
.quick-card { min-height: 145px; padding: 26px; border-right: 1px solid var(--line); color: var(--ink); text-decoration: none; }
.quick-card:last-child { border: 0; }
.quick-card:hover { background: #fbf8f2; }
.quick-icon { display: block; margin-bottom: 12px; color: var(--maroon); font-family: var(--serif); font-size: 1.7rem; }
.quick-card strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 1.12rem; }
.quick-card span:last-child { color: var(--muted); font-size: .88rem; }

.two-column { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(38px, 7vw, 90px); align-items: center; }
.two-column > * { min-width: 0; }
.two-column.top { align-items: start; }
.portrait-card { position: relative; width: 100%; min-width: 0; padding: 18px; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.portrait-placeholder { display: grid; aspect-ratio: 4 / 4.5; place-items: center; padding: 36px; background: linear-gradient(145deg, var(--maroon-dark), var(--maroon) 55%, #a7524d); color: var(--white); text-align: center; }
.portrait-placeholder .cross-mark { color: #e6c77f; font-family: var(--serif); font-size: 5rem; line-height: 1; }
.portrait-card figcaption { padding: 20px 6px 5px; }
.portrait-card figcaption strong { display: block; font-family: var(--serif); font-size: 1.15rem; }
.portrait-card figcaption span { color: var(--muted); font-size: .86rem; }
.portrait-image { display: block; width: 100%; aspect-ratio: 4 / 4.5; background: var(--cream-deep); object-fit: cover; }
.portrait-image-christ { object-position: center; }
.portrait-image-pope { object-position: center 28%; }
.portrait-image-bishop { object-position: center 24%; }
.portrait-feature { position: relative; }
.portrait-feature-centered { display: flex; align-items: center; flex-direction: column; text-align: center; }
.portrait-feature-centered .section-heading { margin-bottom: 30px; }
.portrait-feature-centered .section-heading h2 { overflow-wrap: anywhere; }
.portrait-feature-centered .section-heading .lead { color: var(--gold-dark); font-size: clamp(1.15rem, 2.4vw, 1.5rem); }
.portrait-card-centered { width: min(440px, 100%); margin: 0 auto 34px; }
.portrait-feature-copy-centered { max-width: 760px; margin-inline: auto; color: var(--muted); font-size: 1.05rem; }
.portrait-feature-copy-centered p:last-child { margin-bottom: 0; }
.christ-feature { overflow: hidden; }
.portrait-placeholder-christ { background: radial-gradient(circle at 50% 24%, #d6b768 0, #9d7131 18%, #50301f 48%, #211915 100%); }
.portrait-placeholder-pope { background: linear-gradient(145deg, #f5efe2, #d7c6a5 58%, #a78c59); color: var(--maroon-dark); }
.portrait-placeholder-pope .cross-mark { color: var(--gold-dark); }
.portrait-placeholder h3 { margin: 14px 0 7px; font-size: 1.45rem; }
.portrait-placeholder p { margin-bottom: 0; opacity: .78; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.papal-keys { font-size: 4.25rem !important; }
.pope-feature { background: var(--cream); }
.bishop-feature { border-top: 1px solid var(--line); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.16); }
.stat { padding: 34px 24px; background: var(--maroon-dark); text-align: center; }
.stat strong { display: block; margin-bottom: 8px; color: #e6c77f; font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1; }
.stat span { color: #eee5dd; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { padding: 30px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 10px 26px rgba(44,30,15,.05); }
.info-card h3 { margin-bottom: 12px; color: var(--maroon); font-size: 1.42rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card .card-number { color: var(--gold); font-family: var(--serif); font-size: 2.4rem; line-height: 1; }
.dark-card { border-color: rgba(255,255,255,.13); background: #302c29; }
.dark-card h3 { color: #efd28c; }
.dark-card p { color: #d7d1ca; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { display: flex; min-height: 280px; flex-direction: column; padding: 30px; border-top: 4px solid var(--gold); background: var(--white); color: var(--ink); text-decoration: none; box-shadow: 0 10px 28px rgba(50,36,20,.06); }
.news-card:hover h3 { color: var(--gold-dark); }
.news-card time { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: 22px 0 14px; color: var(--maroon); font-size: 1.5rem; }
.news-card p { color: var(--muted); }
.news-card .read-more { margin-top: auto; color: var(--maroon); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.callout { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: 44px; background: var(--maroon); color: var(--white); box-shadow: var(--shadow); }
.callout h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.callout p { max-width: 720px; margin: 0; color: #eadfda; }
.callout .btn { flex: 0 0 auto; }

.breadcrumbs { padding: 14px 0; border-bottom: 1px solid var(--line); background: var(--white); color: var(--muted); font-size: .82rem; }
.breadcrumbs a { color: var(--maroon); text-decoration: none; }

.timeline { position: relative; margin: 0; padding: 0 0 0 35px; list-style: none; }
.timeline::before { position: absolute; top: 4px; bottom: 5px; left: 8px; width: 2px; background: var(--gold); content: ""; }
.timeline li { position: relative; padding: 0 0 34px 26px; }
.timeline li::before { position: absolute; top: 5px; left: -33px; width: 14px; height: 14px; border: 3px solid var(--cream); border-radius: 50%; background: var(--maroon); box-shadow: 0 0 0 2px var(--gold); content: ""; }
.timeline time { color: var(--gold-dark); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.timeline h3 { margin: 6px 0 8px; color: var(--maroon); }
.timeline p { margin: 0; color: var(--muted); }

.details-list { display: grid; gap: 0; margin: 0; }
.details-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.details-list dt { color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.details-list dd { margin: 0; font-weight: 650; }

.filter-panel { position: relative; z-index: 2; margin-top: -42px; padding: 30px; background: var(--white); box-shadow: var(--shadow); }
.filter-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; border: 1px solid #cfc7ba; border-radius: 0; background: var(--white); color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); outline: 2px solid rgba(185,147,74,.22); }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 32px 0 20px; }
.results-bar p { margin: 0; color: var(--muted); font-weight: 700; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.directory-card { display: flex; min-height: 250px; flex-direction: column; padding: 25px; border: 1px solid var(--line); background: var(--white); }
.directory-card h3 { margin: 7px 0 15px; color: var(--maroon); font-size: 1.28rem; }
.directory-meta { display: grid; gap: 6px; color: var(--muted); font-size: .88rem; }
.directory-meta span::before { margin-right: 7px; color: var(--gold); content: "•"; }
.card-actions { display: flex; gap: 15px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.card-actions a { color: var(--maroon); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.empty-state { grid-column: 1 / -1; padding: 50px; border: 1px dashed var(--gold); text-align: center; }

.notice { padding: 20px 22px; border-left: 4px solid var(--gold); background: #f1e8d6; }
.notice strong { color: var(--maroon); }
.notice p:last-child { margin-bottom: 0; }
.schedule-shell { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 30px; align-items: start; }
.schedule-card { border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.schedule-header { padding: 28px 30px; background: var(--maroon); color: var(--white); }
.schedule-header h2 { margin: 0 0 6px; }
.schedule-header p { margin: 0; color: #eaded8; }
.schedule-days { display: grid; grid-template-columns: repeat(2, 1fr); }
.schedule-day { padding: 28px 30px; border-right: 1px solid var(--line); }
.schedule-day:last-child { border: 0; }
.schedule-day h3 { color: var(--maroon); }
.time-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.time-list li { padding: 7px 10px; background: var(--cream); font-size: .88rem; font-weight: 700; }
.side-panel { padding: 28px; background: var(--ink); color: var(--white); }
.side-panel h2, .side-panel h3 { color: #efd28c; }
.side-panel p, .side-panel li { color: #d3cdc5; }
.side-panel a { color: #efd28c; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-bottom: 12px; padding-left: 26px; }
.check-list li::before { position: absolute; left: 0; color: var(--gold); content: "✓"; font-weight: 800; }

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; border: 0; background: transparent; color: var(--maroon); cursor: pointer; text-align: left; }
.accordion-button span:first-child { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; }
.accordion-button .plus { font-family: var(--sans); font-size: 1.6rem; font-weight: 300; transition: transform .2s; }
.accordion-button[aria-expanded="true"] .plus { transform: rotate(45deg); }
.accordion-panel { padding: 0 4px 24px; }
.accordion-panel[hidden] { display: none; }
.accordion-panel p:last-child, .accordion-panel ul:last-child { margin-bottom: 0; }

.sacrament-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.sacrament-card { padding: 32px; border: 1px solid var(--line); background: var(--white); }
.sacrament-card h2 { margin-bottom: 12px; color: var(--maroon); font-size: 1.75rem; }
.sacrament-card .sacrament-symbol { color: var(--gold); font-family: var(--serif); font-size: 2.1rem; }
.steps { counter-reset: step; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; min-height: 64px; margin-bottom: 18px; padding-left: 62px; }
.steps li::before { position: absolute; top: 0; left: 0; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--maroon); color: var(--white); content: counter(step); counter-increment: step; font-family: var(--serif); font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: start; }
.contact-card { padding: 32px; border: 1px solid var(--line); background: var(--white); }
.contact-card h2 { color: var(--maroon); }
.contact-method { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-method:last-child { border: 0; }
.contact-method strong { display: block; margin-bottom: 5px; color: var(--gold-dark); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-method a { color: var(--maroon); font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-note { color: var(--muted); font-size: .82rem; }

.source-note { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.source-note a { color: var(--maroon); }

.site-footer { padding: 38px 0 24px; border-top: 4px solid var(--gold); background: #191715; color: #eee8df; }
.footer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: clamp(32px, 6vw, 72px); row-gap: 34px; }
.footer-identity { grid-column: 1 / -1; padding-bottom: 30px; border-bottom: 1px solid #35312d; }
.footer-identity .brand-link { color: var(--white); }
.footer-identity p { max-width: 680px; margin: 18px 0 0; color: #aaa39b; }
.footer-heading { margin-bottom: 18px; color: var(--gold-dark); font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: #c9c2ba; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: #e3c47c; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 42px; padding-top: 22px; border-top: 1px solid #35312d; color: #847e78; font-size: .78rem; }
.footer-bottom p { margin: 0; }

.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; border: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.luce-chat { position: relative; z-index: 1200; }
.luce-launcher { position: fixed; right: 24px; bottom: 24px; z-index: 1201; display: grid; width: 78px; height: 78px; place-items: center; padding: 4px; border: 3px solid var(--gold); border-radius: 50%; background: var(--white); box-shadow: 0 10px 30px rgba(31, 20, 16, .28); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.luce-launcher:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(31, 20, 16, .34); }
.luce-launcher:focus-visible { outline-color: var(--maroon); }
.luce-launcher img { width: 66px; height: 66px; border-radius: 50%; object-fit: contain; }
.luce-panel { position: fixed; right: 24px; bottom: 116px; z-index: 1200; display: flex; width: min(400px, calc(100vw - 32px)); height: min(620px, calc(100vh - 140px)); height: min(620px, calc(100dvh - 140px)); min-height: 0; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: 0 22px 60px rgba(24, 17, 14, .3); overflow: hidden; }
.luce-panel[hidden] { display: none; }
.luce-header { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 14px 12px 16px; background: var(--maroon-dark); color: var(--white); }
.luce-identity { display: flex; min-width: 0; align-items: center; gap: 11px; }
.luce-identity img { width: 50px; height: 50px; flex: 0 0 50px; border: 2px solid var(--gold); border-radius: 50%; background: var(--white); object-fit: contain; }
.luce-identity strong, .luce-identity span { display: block; }
.luce-identity strong { font-family: var(--serif); font-size: 1.25rem; line-height: 1.15; }
.luce-identity span { margin-top: 3px; color: #e9dccc; font-size: .72rem; }
.luce-close { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--white); cursor: pointer; font-size: 1.8rem; line-height: 1; }
.luce-close:hover { background: rgba(255,255,255,.12); }
.luce-notice { padding: 9px 16px; border-bottom: 1px solid var(--line); background: var(--cream); color: var(--muted); font-size: .72rem; line-height: 1.4; }
.luce-messages { display: flex; min-height: 0; flex: 1; flex-direction: column; gap: 12px; padding: 18px 16px; overflow-y: auto; overscroll-behavior: contain; }
.luce-message { display: flex; }
.luce-message p { max-width: 88%; margin: 0; padding: 11px 13px; border-radius: 14px; white-space: pre-wrap; overflow-wrap: anywhere; font-size: .9rem; line-height: 1.5; }
.luce-message p a { color: var(--maroon); font-weight: 700; overflow-wrap: anywhere; }
.luce-message-assistant, .luce-message-status { justify-content: flex-start; }
.luce-message-assistant p { border: 1px solid var(--line); border-bottom-left-radius: 4px; background: var(--cream); color: var(--ink); }
.luce-message-user { justify-content: flex-end; }
.luce-message-user p { border-bottom-right-radius: 4px; background: var(--maroon); color: var(--white); }
.luce-message-status p { padding: 7px 0; color: var(--muted); font-size: .78rem; font-style: italic; }
.luce-suggestions { display: flex; gap: 8px; padding: 0 16px 12px; overflow-x: auto; scrollbar-width: thin; }
.luce-suggestions button { flex: 0 0 auto; padding: 7px 10px; border: 1px solid var(--maroon); border-radius: 999px; background: var(--white); color: var(--maroon); cursor: pointer; font-size: .72rem; font-weight: 700; }
.luce-suggestions button:hover { background: var(--cream); }
.luce-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--line); background: var(--white); }
.luce-form textarea { width: 100%; min-height: 44px; max-height: 112px; resize: none; padding: 10px 12px; border: 1px solid #b9afa5; border-radius: 10px; background: var(--white); color: var(--ink); line-height: 1.4; }
.luce-form textarea:focus { border-color: var(--maroon); outline: 2px solid rgba(126, 31, 37, .15); }
.luce-form button { min-height: 44px; padding: 10px 14px; border: 0; border-radius: 9px; background: var(--maroon); color: var(--white); cursor: pointer; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.luce-form button:disabled { cursor: wait; opacity: .6; }
.luce-disclaimer { margin: 0; padding: 0 14px 11px; color: var(--muted); font-size: .67rem; text-align: center; }

.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
    .top-nav-container.scroll-hide { transform: none; }
    .nav-wrapper { min-height: 76px; }
    .brand-seal { width: 40px; height: 48px; }
    .brand-name { font-size: clamp(1rem, 3vw, 1.4rem); }
    .brand-subtitle { font-size: .58rem; }
    .menu-icon { position: relative; z-index: 1003; display: grid; width: 46px; height: 46px; flex: 0 0 46px; place-items: center; margin-right: -10px; border: 0; background: transparent; cursor: pointer; }
    .navicon, .navicon::before, .navicon::after { display: block; width: 23px; height: 2px; background: var(--ink); transition: .2s ease; }
    .navicon { position: relative; }
    .navicon::before, .navicon::after { position: absolute; left: 0; content: ""; }
    .navicon::before { top: -7px; }
    .navicon::after { top: 7px; }
    .sticky-nav { position: fixed; top: 0; right: 0; z-index: 1002; width: min(350px, 88vw); height: 100vh; height: 100dvh; padding: 88px 30px 30px; border-left: 4px solid var(--gold); background: var(--white); box-shadow: -12px 0 45px rgba(0,0,0,.22); overflow-y: auto; visibility: hidden; transform: translateX(105%); transition: transform .32s ease, visibility .32s; }
    .nav-links { display: block; }
    .nav-links li { border-bottom: 1px solid var(--line); }
    .nav-links a { padding: 18px 2px; font-size: .8rem; }
    .nav-backdrop { position: fixed; inset: 0; z-index: 1001; border: 0; background: rgba(18,14,11,.58); cursor: pointer; }
    .top-nav-container.menu-open .sticky-nav { visibility: visible; transform: translateX(0); }
    .top-nav-container.menu-open .nav-backdrop { display: block; }
    .top-nav-container.menu-open .navicon { background: transparent; }
    .top-nav-container.menu-open .navicon::before { top: 0; transform: rotate(45deg); }
    .top-nav-container.menu-open .navicon::after { top: 0; transform: rotate(-45deg); }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-card:nth-child(2) { border-right: 0; }
    .quick-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 800px) {
    .container, .container-narrow { width: min(calc(100% - 32px), 1160px); }
    .section { padding: 66px 0; }
    .utility-inner { justify-content: center; }
    .utility-inner > p { display: none; }
    .hero, .hero-compact { min-height: 430px; }
    .hero::before { background-attachment: scroll; }
    .quick-actions { margin-top: 0; }
    .quick-grid { width: 100%; }
    .two-column, .contact-grid, .schedule-shell { grid-template-columns: 1fr; }
    .two-column .portrait-card { max-width: 440px; margin-inline: auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid, .news-grid { grid-template-columns: 1fr; }
    .news-card { min-height: 230px; }
    .filter-panel { margin-top: 0; }
    .filter-grid { grid-template-columns: 1fr; }
    .sacrament-grid { grid-template-columns: 1fr; }
    .callout { align-items: flex-start; flex-direction: column; padding: 34px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-identity { grid-column: 1 / -1; }
    .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
    html { scroll-padding-top: 84px; }
    .utility-links { width: 100%; justify-content: space-between; gap: 12px; font-size: .73rem; }
    .brand-seal { width: 35px; height: 42px; }
    .brand-link { gap: 9px; }
    .brand-name { max-width: 225px; font-size: .96rem; }
    .brand-subtitle { letter-spacing: .1em; }
    .hero h1, .hero-compact h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
    .hero-content { padding: 52px 0; }
    .hero-actions, .button-row { align-items: stretch; flex-direction: column; }
    .hero-actions .btn, .button-row .btn { width: 100%; }
    .quick-grid { grid-template-columns: 1fr; }
    .quick-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .quick-card:nth-child(3) { border-bottom: 1px solid var(--line); }
    .stats-grid { grid-template-columns: 1fr; }
    .filter-panel { padding: 22px; }
    .directory-grid { grid-template-columns: 1fr; }
    .results-bar { align-items: flex-start; flex-direction: column; }
    .schedule-days { grid-template-columns: 1fr; }
    .schedule-day { border-right: 0; border-bottom: 1px solid var(--line); }
    .schedule-day:last-child { border-bottom: 0; }
    .details-list div { grid-template-columns: 1fr; gap: 5px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-grid .full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-identity, .footer-grid > :last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .luce-launcher { right: 16px; bottom: 16px; width: 68px; height: 68px; }
    .luce-launcher img { width: 58px; height: 58px; }
    .luce-panel { right: 8px; bottom: 94px; width: calc(100vw - 16px); height: min(640px, calc(100vh - 108px)); height: min(640px, calc(100dvh - 108px)); min-height: 0; border-radius: 14px; }
    .luce-header { min-height: 68px; }
    .luce-identity img { width: 44px; height: 44px; flex-basis: 44px; }
    .luce-messages { padding: 14px 12px; }
    .luce-suggestions { padding-inline: 12px; }
    .luce-form { padding: 10px; }
}

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

@media print {
    .utility-bar, .top-nav-container, .hero-actions, .quick-actions, .filter-panel, .site-footer, .btn { display: none !important; }
    body { background: #fff; color: #000; }
    .hero, .hero-compact { min-height: 0; padding: 35px 0; background: #fff; color: #000; }
    .hero::before, .hero::after { display: none; }
    .hero p { color: #333; }
    .section { padding: 30px 0; }
}
