:root {
    --violet-950: #1a0628;
    --violet-900: #2a093d;
    --violet-850: #331052;
    --violet-800: #3b0f66;
    --violet-700: #4b148c;
    --violet-600: #5b21b6;
    --gold-500: #d4af37;
    --gold-400: #f2c94c;
    --gold-300: #f7d978;
    --cream: #fff8e7;
    --paper: #f8f3e7;
    --paper-2: #f1e8d7;
    --charcoal: #17131f;
    --muted: #625b6d;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.72);
    --glass-strong: rgba(255, 255, 255, 0.86);
    --glass-violet: rgba(75, 20, 140, 0.68);
    --gold-line: rgba(212, 175, 55, 0.45);
    --violet-line: rgba(75, 20, 140, 0.16);
    --shadow: 0 26px 78px rgba(26, 6, 40, 0.22);
    --shadow-soft: 0 16px 44px rgba(26, 6, 40, 0.12);
    --glow: 0 16px 42px rgba(212, 175, 55, 0.26);
    --radius: 8px;
    --container: 1180px;
    --header-container: 1320px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    color: var(--charcoal);
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.96), rgba(248, 243, 231, 1)),
        radial-gradient(circle at 50% 0%, rgba(91, 33, 182, 0.12), transparent 38%);
    letter-spacing: 0;
    line-height: 1.65;
}

body.menu-open {
    overscroll-behavior: contain;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 2000;
    padding: 10px 14px;
    background: var(--gold-400);
    color: var(--violet-950);
    border-radius: 999px;
    font-weight: 800;
    transition: top 180ms ease;
}

.skip-link:focus {
    top: 16px;
}

.nav-shell,
.section-inner,
.footer-grid,
.footer-cta,
.footer-bottom,
.hero__content,
.page-hero__content {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.nav-shell {
    width: min(var(--header-container), calc(100% - 32px));
}

main {
    display: block;
    min-height: 1px;
    overflow: visible;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 248, 231, 0.78);
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 10px 30px rgba(26, 6, 40, 0.08);
    backdrop-filter: blur(20px);
    transition: box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(212, 175, 55, 0.34);
    box-shadow: 0 18px 46px rgba(26, 6, 40, 0.16);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: var(--header-height);
    gap: clamp(14px, 1.5vw, 26px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(26, 6, 40, 0.16));
}

.brand__text {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand__text strong {
    color: var(--violet-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(0.96rem, 1.08vw, 1.08rem);
    line-height: 1.05;
}

.brand__text span {
    color: var(--violet-700);
    font-size: 0.75rem;
    font-weight: 760;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1px, 0.35vw, 6px);
    min-width: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    gap: 6px;
    padding: 8px clamp(7px, 0.62vw, 11px);
    color: rgba(23, 19, 31, 0.82);
    text-decoration: none;
    border-radius: 999px;
    font-size: clamp(0.76rem, 0.68vw, 0.84rem);
    font-weight: 800;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-link__chevron {
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.has-dropdown:hover .nav-link__chevron,
.has-dropdown:focus-within .nav-link__chevron {
    transform: translateY(2px) rotate(225deg);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--violet-950);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.28);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 248px;
    padding: 10px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.93), rgba(255, 248, 231, 0.86)),
        radial-gradient(circle at 100% 0%, rgba(91, 33, 182, 0.12), transparent 42%);
    border: 1px solid rgba(212, 175, 55, 0.46);
    border-radius: 12px;
    box-shadow: 0 26px 70px rgba(26, 6, 40, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    backdrop-filter: blur(20px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.nav-dropdown a {
    display: block;
    padding: 11px 12px;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    color: var(--violet-950);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), rgba(75, 20, 140, 0.08));
    transform: translateX(3px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn,
.portal-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    color: var(--violet-950);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 34px rgba(26, 6, 40, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn::before,
.portal-link::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0));
}

.btn:hover,
.btn:focus-visible,
.portal-link:hover,
.portal-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(26, 6, 40, 0.18), 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.btn-primary {
    color: var(--white);
    border-color: rgba(242, 201, 76, 0.34);
    background: linear-gradient(135deg, rgba(75, 20, 140, 0.9), rgba(42, 9, 61, 0.92));
}

.btn-gold,
.btn--gold {
    color: var(--violet-950);
    border-color: rgba(255, 255, 255, 0.45);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn-glass,
.btn--light {
    color: var(--violet-950);
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.72);
}

.btn-outline,
.btn--outline {
    color: var(--violet-900);
    border-color: rgba(75, 20, 140, 0.28);
    background: rgba(255, 255, 255, 0.46);
}

.btn--outline-light {
    color: var(--white);
    border-color: rgba(242, 201, 76, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.btn-portal,
.portal-link {
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.58);
    background: linear-gradient(135deg, rgba(42, 9, 61, 0.92), rgba(75, 20, 140, 0.84));
}

.portal-link {
    min-height: 42px;
    padding: 10px clamp(13px, 1vw, 17px);
    font-size: clamp(0.78rem, 0.68vw, 0.84rem);
    white-space: nowrap;
}

.menu-button,
.mobile-close,
.mobile-menu,
.mobile-backdrop {
    display: none;
}

.hero {
    position: relative;
    min-height: clamp(590px, calc(100vh - var(--header-height) - 158px), 680px);
    min-height: clamp(590px, calc(100svh - var(--header-height) - 158px), 680px);
    overflow: clip;
    color: var(--white);
    background: var(--violet-950);
}

.hero--compact {
    min-height: 520px;
}

.hero__media,
.hero__slide {
    position: absolute;
    inset: 0;
}

.hero__slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 2400ms ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__slide.is-active img {
    animation: hero-drift 13s ease-out forwards;
}

@keyframes hero-drift {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.hero__slide img,
.page-hero-image img,
.image-tile img,
.story-card img,
.feature-image img,
.contact-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 6, 40, 0.94), rgba(75, 20, 140, 0.62) 48%, rgba(26, 6, 40, 0.2)),
        linear-gradient(180deg, rgba(26, 6, 40, 0.18), rgba(26, 6, 40, 0.88)),
        linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 42%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: clamp(56px, 7vh, 72px) 0 36px;
}

.hero__copy {
    max-width: 740px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold-300);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1,
.page-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.8rem, 5.2vw, 4.45rem);
    line-height: 0.98;
    font-weight: 760;
    text-wrap: balance;
}

.hero p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
}

.hero__actions,
.section-actions,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero__actions {
    width: fit-content;
    margin-top: 22px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(26, 6, 40, 0.25);
    backdrop-filter: blur(16px);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 820px;
    margin-top: 28px;
}

.hero-stat,
.quick-card,
.feature-card,
.story-card,
.value-card,
.program-card,
.contact-card,
.timeline-item,
.hymn-card {
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.hero-stat {
    padding: 15px 17px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stat strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
}

.hero-stat span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.hero__pager {
    position: absolute;
    z-index: 3;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 28px;
    display: flex;
    gap: 8px;
    padding: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.hero__dot {
    width: 34px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero__dot.is-active {
    background: var(--gold-400);
}

.section {
    position: relative;
    padding: 88px 0;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(var(--container), calc(100% - 32px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.34), transparent);
}

.section--cream {
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.88), rgba(248, 243, 231, 0.94)),
        radial-gradient(circle at 15% 10%, rgba(75, 20, 140, 0.08), transparent 36%);
}

.section--violet,
.section--hymn {
    background:
        linear-gradient(135deg, var(--violet-950), var(--violet-800)),
        radial-gradient(circle at 80% 10%, rgba(242, 201, 76, 0.16), transparent 34%);
    color: var(--white);
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--violet-700);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.section--violet .section-kicker,
.section--hymn .section-kicker {
    color: var(--gold-300);
}

.section-heading {
    max-width: 820px;
    margin: 0;
    color: var(--violet-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
    line-height: 1.08;
    text-wrap: balance;
}

.section--violet .section-heading,
.section--hymn .section-heading {
    color: var(--white);
}

.section-lead {
    max-width: 780px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.06rem;
}

.section--violet .section-lead,
.section--hymn .section-lead {
    color: rgba(255, 255, 255, 0.78);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 44px;
    align-items: center;
}

.split--reverse {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

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

.feature-card,
.quick-card,
.value-card,
.program-card,
.contact-card,
.timeline-item {
    padding: 24px;
}

.feature-card,
.story-card,
.quick-card,
.program-card,
.contact-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.story-card:hover,
.quick-card:hover,
.program-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: var(--shadow), var(--glow);
}

.feature-card h3,
.story-card h3,
.quick-card h3,
.value-card h3,
.program-card h3,
.contact-card h3,
.timeline-item h3 {
    margin: 0 0 8px;
    color: var(--violet-900);
    font-size: 1.05rem;
}

.feature-card p,
.story-card p,
.quick-card p,
.value-card p,
.program-card p,
.contact-card p,
.timeline-item p {
    margin: 0;
    color: var(--muted);
}

.story-card {
    overflow: hidden;
}

.story-card img {
    height: 250px;
}

.story-card__body {
    padding: 22px;
}

.archive-editorial {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 231, 0.9)),
        radial-gradient(circle at 18% 0%, rgba(212, 175, 55, 0.16), transparent 34%),
        radial-gradient(circle at 92% 24%, rgba(75, 20, 140, 0.12), transparent 32%);
}

.archive-editorial__head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
}

.archive-grid,
.archive-wall {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.archive-grid--home {
    grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(0, 1fr));
}

.archive-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.archive-card {
    position: relative;
    display: flex;
    min-height: 360px;
    overflow: hidden;
    align-items: flex-end;
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius);
    background: var(--violet-950);
    box-shadow: var(--shadow-soft);
}

.archive-card--feature,
.archive-card--wide {
    min-height: 520px;
}

.archive-card--wide {
    grid-column: span 2;
}

.archive-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}

.archive-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 6, 40, 0.05), rgba(26, 6, 40, 0.92)),
        linear-gradient(135deg, rgba(212, 175, 55, 0.16), transparent 46%);
}

.archive-card:hover img {
    transform: scale(1.055);
}

.archive-card__content {
    position: relative;
    z-index: 1;
    margin: 14px;
    padding: 18px;
    border: 1px solid rgba(242, 201, 76, 0.26);
    border-radius: var(--radius);
    background: rgba(42, 9, 61, 0.72);
    backdrop-filter: blur(14px);
}

.archive-card__content span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-300);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.archive-card__content h3 {
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    line-height: 1.08;
}

.archive-card__content p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.48;
}

.image-tile,
.feature-image,
.page-hero-image,
.contact-panel {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-tile img,
.story-card img,
.feature-image img {
    transition: transform 500ms ease;
}

.image-tile:hover img,
.story-card:hover img,
.feature-image:hover img {
    transform: scale(1.045);
}

.image-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px;
    color: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius);
    background: rgba(42, 9, 61, 0.72);
    backdrop-filter: blur(12px);
}

.image-caption strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.image-caption span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.quick-strip {
    position: relative;
    z-index: 5;
    margin-top: -32px;
}

.quick-strip .section-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.quick-card {
    min-height: 118px;
    padding: 20px;
    text-decoration: none;
}

.quick-card strong {
    display: block;
    color: var(--violet-900);
    font-size: 1rem;
}

.quick-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.founder-feature {
    background:
        linear-gradient(180deg, rgba(255, 248, 231, 0.92), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 12% 12%, rgba(212, 175, 55, 0.18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(75, 20, 140, 0.1), transparent 32%);
}

.founder-feature--about {
    background:
        linear-gradient(180deg, rgba(248, 243, 231, 0.94), rgba(255, 248, 231, 0.9)),
        radial-gradient(circle at 85% 16%, rgba(212, 175, 55, 0.16), transparent 36%);
}

.founder-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
    gap: 34px;
    align-items: center;
}

.founder-feature__side {
    display: grid;
    gap: 16px;
}

.founder-feature__copy p:not(.section-kicker):not(.section-lead) {
    max-width: 780px;
    margin: 16px 0 0;
    color: var(--muted);
}

.founder-portrait-card,
.historical-asset {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 231, 0.72)),
        linear-gradient(135deg, rgba(75, 20, 140, 0.08), transparent 62%);
    box-shadow: var(--shadow-soft);
}

.founder-portrait-card,
.historical-asset {
    margin: 0;
}

.founder-portrait-card picture,
.historical-asset picture,
.founder-portrait-card img,
.historical-asset img {
    display: block;
    width: 100%;
}

.founder-portrait-card img,
.historical-asset img {
    height: auto;
}

.founder-portrait-card figcaption,
.historical-asset figcaption {
    padding: 13px 16px;
    color: var(--violet-950);
    border-top: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 850;
}

.historical-asset__link {
    display: block;
    text-decoration: none;
}

.founder-ledger {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 231, 0.74)),
        linear-gradient(135deg, rgba(75, 20, 140, 0.08), transparent 62%);
    box-shadow: var(--shadow-soft);
}

.founder-ledger--compact {
    padding: 22px;
}

.founder-ledger__year {
    display: block;
    color: var(--violet-950);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 0.95;
}

.founder-ledger--compact .founder-ledger__year {
    font-size: clamp(2.35rem, 4vw, 3.25rem);
}

.founder-ledger dl {
    display: grid;
    gap: 16px;
    margin: 24px 0 0;
}

.founder-ledger dl div {
    padding-top: 16px;
    border-top: 1px solid rgba(75, 20, 140, 0.12);
}

.founder-ledger dt {
    color: var(--gold-500);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.founder-ledger dd {
    margin: 4px 0 0;
    color: var(--violet-950);
    font-weight: 800;
    line-height: 1.38;
}

.history-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.history-notes div {
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: var(--shadow-soft);
}

.history-notes strong,
.history-notes span {
    display: block;
}

.history-notes strong {
    color: var(--gold-500);
    font-size: 0.76rem;
    text-transform: uppercase;
}

.history-notes span {
    margin-top: 6px;
    color: var(--violet-950);
    font-weight: 800;
    line-height: 1.38;
}

.band {
    padding: 44px 0;
    color: var(--white);
    background: linear-gradient(135deg, var(--violet-950), var(--violet-700));
    border-top: 1px solid rgba(212, 175, 55, 0.32);
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.band--violet {
    background:
        linear-gradient(135deg, rgba(26, 6, 40, 0.98), rgba(75, 20, 140, 0.96)),
        radial-gradient(circle at 15% 0%, rgba(242, 201, 76, 0.18), transparent 32%);
}

.band .section-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.band h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.band p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 460px;
    overflow: hidden;
    align-items: end;
    color: var(--white);
    background: var(--violet-950);
}

.page-hero-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(26, 6, 40, 0.9), rgba(75, 20, 140, 0.44)),
        linear-gradient(135deg, rgba(212, 175, 55, 0.16), transparent 48%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding: 122px 0 66px;
}

.page-hero .page-title {
    max-width: 820px;
}

.page-hero p {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 1.1rem;
}

.timeline {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
}

.timeline-item strong {
    color: var(--gold-500);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

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

.contact-panel {
    min-height: 430px;
}

.contact-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    color: var(--violet-950);
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    font-size: 0.78rem;
    font-weight: 900;
}

.official-contact-block {
    line-height: 1.72;
}

.contact-card a {
    color: var(--violet-800);
    font-weight: 800;
    text-decoration-color: rgba(212, 175, 55, 0.55);
    text-underline-offset: 3px;
}

.review-note {
    color: var(--muted);
    font-size: 0.94rem;
}

.hymn-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.72fr);
    gap: 34px;
    align-items: start;
}

.hymn-card {
    position: relative;
    padding: 42px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.hymn-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    background: url("../img/phillaw-logo.png") center / contain no-repeat;
    opacity: 0.08;
}

.hymn-card__seal {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.hymn-card__seal img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.hymn-lines {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 30px;
    margin-top: 26px;
    padding: 26px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
}

.hymn-lines p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.15rem;
    line-height: 1.56;
}

.hymn-stanza {
    position: relative;
    padding-left: 18px;
}

.hymn-stanza::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-400), rgba(212, 175, 55, 0.08));
}

.hymn-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(242, 201, 76, 0.6), transparent);
}

.hymn-side {
    display: grid;
    gap: 16px;
}

.hymn-image {
    min-height: 620px;
}

.site-footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
    color: var(--white);
    background:
        linear-gradient(135deg, var(--violet-950), var(--violet-800)),
        radial-gradient(circle at 80% 0%, rgba(242, 201, 76, 0.14), transparent 36%);
    border-top: 3px solid var(--gold-500);
}

.footer-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.footer-cta h2 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
    line-height: 1.1;
}

.footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 32px;
    padding: 54px 0;
}

.footer-brand img {
    width: 74px;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
}

.footer-grid h2,
.footer-grid h3 {
    margin: 14px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--gold-300);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.62);
    border-top: 1px solid rgba(212, 175, 55, 0.22);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

    .portal-link {
        display: none;
    }

    .menu-button,
    .mobile-close {
        display: inline-flex;
    }

    .menu-button {
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(212, 175, 55, 0.34);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: var(--shadow-soft);
        cursor: pointer;
        transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
    }

    .menu-button:hover,
    .menu-button:focus-visible {
        transform: translateY(-1px);
        border-color: rgba(212, 175, 55, 0.68);
        box-shadow: 0 14px 32px rgba(26, 6, 40, 0.16), 0 0 0 4px rgba(212, 175, 55, 0.1);
    }

    .menu-button span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: var(--violet-900);
    }

    .mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1100;
        display: block;
        background: rgba(23, 19, 31, 0.56);
        opacity: 0;
        pointer-events: none;
        transition: opacity 200ms ease;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1200;
        display: block;
        width: min(430px, 92vw);
        height: 100dvh;
        max-height: 100dvh;
        padding: 18px;
        overflow-y: auto;
        color: var(--white);
        background:
            linear-gradient(155deg, rgba(26, 6, 40, 0.98), rgba(75, 20, 140, 0.96)),
            radial-gradient(circle at 80% 0%, rgba(242, 201, 76, 0.18), transparent 34%);
        border-left: 1px solid rgba(212, 175, 55, 0.28);
        box-shadow: -24px 0 70px rgba(0, 0, 0, 0.28);
        transform: translateX(100%);
        transition: transform 240ms ease;
    }

    body.menu-open .mobile-menu {
        transform: translateX(0);
    }

    body.menu-open .mobile-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    }

    .brand--mobile .brand__text strong,
    .brand--mobile .brand__text span {
        color: var(--white);
    }

    .mobile-close {
        min-height: 40px;
        padding: 8px 13px;
        color: var(--white);
        border: 1px solid rgba(212, 175, 55, 0.36);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-nav {
        display: grid;
        gap: 8px;
        padding: 22px 0;
    }

    .mobile-nav a,
    .mobile-group summary {
        display: block;
        padding: 13px 12px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.09);
        cursor: pointer;
    }

    .mobile-nav a.is-active,
    .mobile-nav a:hover,
    .mobile-group summary:hover {
        color: var(--violet-950);
        border-color: rgba(242, 201, 76, 0.44);
        background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    }

    .mobile-group a {
        margin-top: 8px;
        margin-left: 12px;
        background: rgba(255, 255, 255, 0.06);
    }

    .mobile-group[open] summary {
        color: var(--violet-950);
        border-color: rgba(242, 201, 76, 0.44);
        background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    }

    .mobile-cta {
        display: grid;
        gap: 10px;
        padding-top: 12px;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 620px;
    }

    .hero__content {
        padding-top: 108px;
    }

    .hero h1,
    .page-title {
        font-size: 3.28rem;
    }

    .hero__stats,
    .quick-strip .section-inner,
    .founder-feature__grid,
    .grid--4,
    .grid--3,
    .grid--2,
    .archive-grid--home,
    .archive-wall,
    .split,
    .split--reverse,
    .band .section-inner,
    .contact-grid,
    .contact-card-grid,
    .hymn-layout,
    .footer-cta,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .archive-editorial__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .archive-card--wide {
        grid-column: span 1;
    }

    .archive-card,
    .archive-card--feature,
    .archive-card--wide {
        min-height: 390px;
    }

    .quick-strip {
        margin-top: 0;
        padding: 18px 0 8px;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .image-tile,
    .feature-image,
    .contact-panel {
        min-height: 340px;
    }

    .hymn-lines {
        grid-template-columns: 1fr;
    }

    .hymn-image {
        min-height: 420px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .history-notes {
        grid-template-columns: 1fr;
    }

    .footer-cta__actions,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    :root {
        --header-height: 72px;
    }

    .nav-shell,
    .section-inner,
    .footer-grid,
    .footer-cta,
    .footer-bottom,
    .hero__content,
    .page-hero__content {
        width: min(100% - 22px, var(--container));
    }

    .brand__logo {
        width: 48px;
        height: 48px;
    }

    .brand__text strong {
        font-size: 0.92rem;
    }

    .brand__text span {
        font-size: 0.72rem;
    }

    .hero {
        min-height: 645px;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(26, 6, 40, 0.48), rgba(26, 6, 40, 0.92)),
            linear-gradient(90deg, rgba(75, 20, 140, 0.62), rgba(42, 9, 61, 0.34));
    }

    .hero__content {
        padding: 94px 0 58px;
    }

    .hero h1,
    .page-title {
        font-size: 2.55rem;
        line-height: 1.04;
    }

    .hero p,
    .page-hero p {
        font-size: 1rem;
    }

    .hero__actions,
    .section-actions,
    .card-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: var(--radius);
    }

    .btn,
    .portal-link {
        width: 100%;
    }

    .hero__stats {
        margin-top: 34px;
    }

    .hero__pager {
        left: 11px;
        right: auto;
        bottom: 22px;
    }

    .section-heading {
        font-size: 1.85rem;
    }

    .story-card img {
        height: 210px;
    }

    .archive-card,
    .archive-card--feature,
    .archive-card--wide {
        min-height: 340px;
    }

    .archive-card__content {
        margin: 10px;
        padding: 15px;
    }

    .page-hero {
        min-height: 390px;
    }

    .page-hero__content {
        padding: 94px 0 44px;
    }

    .footer-cta h2 {
        font-size: 1.8rem;
    }

    .hymn-card {
        padding: 26px;
    }

    .hymn-lines {
        padding: 20px;
    }

    .hymn-lines p {
        font-size: 1.06rem;
    }

    .hymn-image {
        min-height: 340px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
