:root {
    --bg: #fbfcfe;
    --surface: rgba(255, 255, 255, 0.72);
    --surface-strong: rgba(255, 255, 255, 0.9);
    --surface-solid: #ffffff;
    --panel-bg:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 249, 252, 0.82)),
        radial-gradient(circle at 12% 0%, rgba(220, 238, 253, 0.24), transparent 42%);
    --panel-bg-soft:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 250, 253, 0.72));
    --panel-border: 1px solid rgba(255, 255, 255, 0.78);
    --panel-shadow: 0 24px 80px rgba(69, 90, 115, 0.12);
    --panel-shadow-soft: 0 18px 40px rgba(84, 105, 128, 0.08);
    --panel-padding: 1.5rem;
    --ink: #182128;
    --muted: #5d6976;
    --line: rgba(24, 33, 40, 0.1);
    --accent: #c4673d;
    --accent-dark: #9c4825;
    --forest: #264c46;
    --sky: #dceefd;
    --pearl: #eef5fb;
    --shadow: 0 24px 80px rgba(69, 90, 115, 0.12);
    --shadow-soft: 0 18px 40px rgba(84, 105, 128, 0.08);
    --radius: 24px;
    --container: 1180px;
    --font-sans: "Helvetica Neue", Arial, sans-serif;
    --font-serif: Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top left, rgba(196, 103, 61, 0.08), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(148, 194, 233, 0.16), transparent 24%),
        linear-gradient(180deg, #feffff 0%, #f6f9fc 52%, #f8fbfe 100%);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.6;
    position: relative;
    overflow-x: clip;
}

.hero__lead,
.hero__panel p,
.page-heading p,
.content-card__excerpt,
.listing-card p,
.about-strip__lead,
.prose,
.prose p,
.info-box,
.footer-contact,
.site-footer p {
    color: var(--muted);
}

body.lightbox-open {
    overflow: hidden;
}

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

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

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-main {
    flex: 1 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumbs-shell {
    padding: 1rem 0 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.8rem;
    align-items: center;
    margin: 0;
    padding: 0.8rem 1rem;
    list-style: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 14px 34px rgba(78, 100, 124, 0.06);
    font-size: 0.92rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    color: rgba(93, 105, 118, 0.55);
}

.breadcrumbs a {
    color: var(--forest);
}

.breadcrumbs [aria-current="page"] {
    color: var(--ink);
}

.site-decor {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.site-decor__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.9;
}

.site-decor__orb--top {
    top: -7rem;
    left: -4rem;
    width: 28rem;
    height: 28rem;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), rgba(220, 238, 253, 0.42) 48%, rgba(220, 238, 253, 0) 72%);
}

.site-decor__orb--side {
    right: -8rem;
    top: 18rem;
    width: 26rem;
    height: 26rem;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.78), rgba(236, 225, 212, 0.38) 45%, rgba(236, 225, 212, 0) 74%);
}

.site-decor__line {
    position: absolute;
    stroke: rgba(123, 154, 180, 0.28);
    stroke-width: 1.2;
    fill: none;
}

.site-decor__line--left {
    left: -4rem;
    top: 6rem;
    width: 28rem;
    max-width: 42vw;
}

.site-decor__line--right {
    right: -6rem;
    top: 28rem;
    width: 30rem;
    max-width: 45vw;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(244, 249, 253, 0.44)),
        radial-gradient(circle at 12% -40%, rgba(220, 238, 253, 0.34), transparent 44%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 12px 34px rgba(78, 100, 124, 0.08);
}

.site-header__inner,
.site-nav,
.hero__actions,
.duo-feed__grid,
.about-strip__grid,
.site-footer__grid {
    display: flex;
}

.site-header__inner {
    align-items: center;
    justify-content: space-between;
    gap: 1.35rem;
    min-height: 50px;
    position: relative;
}

.site-brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    margin: -1.15rem 0 -1.35rem;
    position: relative;
    z-index: 1;
}

.site-brand__seal {
    width: clamp(122px, 11.5vw, 156px);
    aspect-ratio: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.995), rgba(255, 252, 248, 0.96) 52%, rgba(196, 103, 61, 0.22) 100%),
        radial-gradient(circle at 78% 82%, rgba(196, 103, 61, 0.18), rgba(196, 103, 61, 0.04) 58%);
    border: 1px solid color-mix(in srgb, var(--accent) 28%, white);
    box-shadow:
        0 18px 36px rgba(67, 92, 116, 0.16),
        0 10px 24px rgba(196, 103, 61, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 0 0 1px rgba(196, 103, 61, 0.1);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.site-brand__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 18px rgba(67, 92, 116, 0.1));
}

.site-brand__wordmark {
    display: inline-flex;
    align-items: center;
    font-size: clamp(1.75rem, 3.1vw, 2.9rem);
    font-family: var(--font-serif);
    line-height: 0.98;
    letter-spacing: 0.01em;
    color: var(--ink);
    white-space: nowrap;
    max-width: 18rem;
    overflow: clip;
    min-height: 1.2em;
    transition: opacity 360ms ease, transform 360ms ease, max-width 360ms ease, margin 360ms ease;
    transform-origin: left center;
    align-self: center;
}

body.hero-in-view .site-brand__wordmark {
    opacity: 0;
    transform: translateX(-0.35rem) scale(0.96);
    max-width: 0;
    margin-left: -0.35rem;
    overflow: hidden;
    pointer-events: none;
}

.site-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.site-nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--forest);
    position: relative;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    cursor: pointer;
    overflow: visible;
    flex: 0 0 auto;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.78);
}

.site-nav-toggle__line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 1.8px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav-toggle__line:nth-child(1) {
    transform: translate(-50%, calc(-50% - 5px));
}

.site-nav-toggle__line:nth-child(2) {
    transform: translate(-50%, -50%);
}

.site-nav-toggle__line:nth-child(3) {
    transform: translate(-50%, calc(-50% + 5px));
}

body.nav-open .site-nav-toggle__line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.nav-open .site-nav-toggle__line:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%);
}

body.nav-open .site-nav-toggle__line:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-nav a,
.footer-links a,
.text-link {
    color: var(--forest);
}

.text-link {
    display: inline-flex;
    margin-top: 0.55rem;
}

.card-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.card-link-overlay__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.card-link-overlay:focus-visible {
    outline: 2px solid rgba(181, 120, 68, 0.85);
    outline-offset: 4px;
}

.site-nav a {
    position: relative;
    padding: 0.4rem 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left center;
    background: rgba(38, 76, 70, 0.45);
    transition: transform 180ms ease;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--accent-dark);
}

.hero,
.page-shell,
.detail-hero,
.duo-feed,
.about-strip {
    padding: 4.75rem 0;
}

.hero__inner,
.detail-grid,
.content-layout {
    display: grid;
    gap: 2rem;
}

.hero__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 2.5rem;
}

.hero__copy h1,
.page-heading h1,
.detail-hero h1 {
    margin: 0 0 1rem;
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 8vw, 5.4rem);
    line-height: 0.95;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
}

.hero__lead,
.detail-hero__lead {
    max-width: 38rem;
    font-size: 1.18rem;
    color: var(--muted);
}

.hero__copy > * + * {
    margin-top: 1.25rem;
}

.hero__actions {
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero__panel,
.content-card,
.listing-card,
.info-box,
.rich-text-block__surface,
.styled-list-block__surface,
.statutory-person-block__surface,
.members-grid-block__surface,
.content-quote,
.content-contact,
.content-map,
.gallery-block {
    background: var(--panel-bg);
    border: var(--panel-border);
    border-radius: var(--radius);
    box-shadow: var(--panel-shadow);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
}

.content-card,
.listing-card,
.content-card__teaser {
    position: relative;
}

.hero__panel,
.content-card,
.listing-card,
.info-box,
.content-quote,
.content-contact,
.content-map,
.gallery-block,
.rich-text-block__surface,
.styled-list-block__surface,
.statutory-person-block__surface,
.members-grid-block__surface {
    padding: var(--panel-padding);
}

.eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-sans);
}

.hero__card-label {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-family: var(--font-sans);
}

.button,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    font-family: var(--font-sans);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(84, 105, 128, 0.14);
}

.button--primary,
.cta-button--primary {
    background: linear-gradient(180deg, rgba(38, 76, 70, 0.92), rgba(38, 76, 70, 0.84));
    color: #fff;
}

.button--secondary,
.cta-button--secondary {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(38, 76, 70, 0.16);
    color: var(--forest);
}

.duo-feed__grid,
.about-strip__grid {
    gap: 1.75rem;
}

.duo-feed__grid {
    align-items: stretch;
}

.duo-feed__grid > * {
    flex: 1 1 0;
}

.content-card__media,
.listing-card__media {
    overflow: hidden;
    border-radius: calc(var(--radius) - 8px);
    margin-bottom: 1.2rem;
}

.content-card__image,
.listing-card__image,
.detail-hero__image {
    border-radius: calc(var(--radius) - 8px);
}

.content-card__image,
.listing-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 0;
    transition: transform 260ms ease;
}

.duo-feed .content-card__image {
    aspect-ratio: 16 / 8.6;
}

.content-card:hover .content-card__image,
.content-card:focus-within .content-card__image,
.listing-card:hover .listing-card__image,
.listing-card:focus-within .listing-card__image {
    transform: scale(1.045);
}

.content-card__excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.detail-hero__image {
    margin-top: 2rem;
    max-height: 540px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.page-heading {
    margin-bottom: 2.4rem;
    max-width: 46rem;
}

.page-heading > * + * {
    margin-top: 1rem;
}

.content-card__header,
.section-heading,
.styled-list-block__header,
.members-grid-block__header,
.rich-text-block__header,
.statutory-person-block__heading {
    margin-bottom: 1.2rem;
    max-width: 42rem;
}

.content-card h2,
.content-card h3,
.listing-card h2,
.listing-card h3,
.section-heading h2,
.about-strip h2,
.hero__panel h2,
.site-footer h2,
.site-footer h3 {
    margin: 0;
}

.content-card p,
.listing-card p,
.hero__panel p,
.about-strip p {
    margin: 0;
}

.content-card > * + *,
.listing-card > * + *,
.hero__panel > * + *,
.about-strip__grid > * > * + * {
    margin-top: 0.9rem;
}

.content-card__teaser > * + * {
    margin-top: 0.9rem;
}

.hero__panel h2 + p {
    margin-top: 1.25rem;
}

.listing-grid,
.gallery-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.gallery-grid__item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.gallery-grid__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 22, 28, 0.02), rgba(16, 22, 28, 0.16));
    opacity: 0;
    transition: opacity 180ms ease;
}

.styled-list-block {
    margin: 0 0 2rem;
}

.rich-text-block {
    margin: 0 0 2rem;
}

.rich-text-block__header h2 {
    margin: 0;
}

.rich-text-block__content {
    margin-top: 1rem;
}

.rich-text-block__collapsible {
    margin-top: 1rem;
}

.rich-text-block__content--collapsible {
    position: relative;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 320ms ease, opacity 220ms ease;
}

.rich-text-block__content--collapsible::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4.5rem;
    background: linear-gradient(180deg, rgba(251, 252, 254, 0), rgba(251, 252, 254, 0.96) 70%, rgba(251, 252, 254, 1));
    opacity: 1;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.rich-text-block__collapsible.is-expanded .rich-text-block__content--collapsible::after,
.rich-text-block__collapsible.is-not-collapsible .rich-text-block__content--collapsible::after {
    opacity: 0;
}

.rich-text-block__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 44px;
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: rgb(24, 33, 40);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.rich-text-block__toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
}

.rich-text-block__toggle-chevron {
    width: 0.56rem;
    height: 0.56rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transform-origin: center;
    transition: transform 220ms ease;
}

.rich-text-block__collapsible.is-expanded .rich-text-block__toggle-chevron {
    transform: rotate(-135deg) translateY(-1px);
}

.styled-list-block__header h2 {
    margin: 0;
}

.styled-list-block__header p {
    margin: 0.9rem 0 0;
    color: var(--muted);
}

.styled-list-block__items {
    display: grid;
    gap: 0.75rem;
    margin: 1.3rem 0 0;
    padding: 0;
    list-style: none;
}

.styled-list-block__items li {
    position: relative;
    padding-left: 1.6rem;
    color: rgb(24, 33, 40);
}

.styled-list-block__items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(38, 76, 70, 0.95), rgba(38, 76, 70, 0.72));
    box-shadow: 0 0 0 0.26rem rgba(220, 238, 253, 0.65);
    transform: translateY(-50%);
}

.statutory-person-block {
    margin: 0 0 2rem;
}

.members-grid-block {
    margin: 0 0 2rem;
}

.members-grid-block__header h2 {
    margin: 0;
}

.members-grid-block__header p {
    margin: 0.9rem 0 0;
    color: var(--muted);
}

.members-grid-block__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.member-card {
    padding: 0.75rem;
    border-radius: calc(var(--radius) - 4px);
    background: var(--panel-bg-soft);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 22px rgba(78, 100, 124, 0.05);
}

.member-card__media img {
    width: 100%;
    aspect-ratio: 6 / 7;
    object-fit: cover;
    border-radius: calc(var(--radius) - 10px);
}

.member-card__media img,
.person-placeholder {
    width: 100%;
    aspect-ratio: 6 / 7;
}

.person-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 10px);
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), rgba(236, 243, 249, 0.98) 58%, rgba(219, 231, 241, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.92),
        0 16px 34px rgba(78, 100, 124, 0.08);
}

.person-placeholder__avatar {
    position: relative;
    width: 36%;
    height: 36%;
    min-width: 3.7rem;
    min-height: 3.7rem;
    border-radius: 999px;
    background: rgb(205, 219, 228);
    box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.55);
}

.person-placeholder__avatar::before,
.person-placeholder__avatar::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(111, 132, 150);
}

.person-placeholder__avatar::before {
    top: 20%;
    width: 28%;
    height: 28%;
    border-radius: 999px;
}

.person-placeholder__avatar::after {
    bottom: 18%;
    width: 54%;
    height: 31%;
    border-radius: 999px 999px 40% 40%;
}

.person-placeholder__avatar::before {
    background: rgb(111, 132, 150);
}

.member-card__content {
    margin-top: 0.95rem;
}

.member-card__content h3 {
    margin: 0;
}

.member-card__content p {
    margin: 0.5rem 0 0;
    color: var(--muted);
}

.statutory-person-card {
    display: grid;
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: center;
}

.statutory-person-card__media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: calc(var(--radius) - 6px);
    box-shadow: 0 16px 34px rgba(78, 100, 124, 0.12);
}

.statutory-person-card__media img,
.statutory-person-card__media .person-placeholder {
    aspect-ratio: 3 / 4;
    border-radius: calc(var(--radius) - 6px);
}

.statutory-person-card__content h3 {
    margin: 0;
}

.statutory-person-card__role {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.statutory-person-card__list {
    display: grid;
    gap: 0.9rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.statutory-person-card__list li {
    display: grid;
    gap: 0.15rem;
}

.statutory-person-card__label {
    color: var(--muted);
    font-size: 0.95rem;
}

.statutory-person-card__list a {
    color: rgb(24, 33, 40);
    font-weight: 600;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    gap: 1.4rem;
    align-items: stretch;
}

.contact-page__person {
    margin: 0;
}

.contact-page__person .statutory-person-block__surface,
.contact-page__grid .info-box {
    height: 100%;
}

.contact-page__person .statutory-person-card {
    grid-template-columns: minmax(0, 12.5rem) minmax(0, 1fr);
    gap: 1.1rem;
    align-items: start;
}

.contact-page__person .statutory-person-block__surface {
    padding: 1.3rem 1.25rem;
}

.contact-page__person .statutory-person-block__heading {
    margin-bottom: 0.9rem;
    max-width: none;
}

.contact-page__person .statutory-person-card--compact {
    grid-template-columns: 1fr;
    gap: 0;
}

.contact-page__person .statutory-person-card__content {
    max-width: 28rem;
}

.contact-page__summary-card {
    display: grid;
    gap: 1.4rem;
    align-content: start;
}

.contact-page__summary-section + .contact-page__summary-section {
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.contact-page__person .statutory-person-card__role {
    margin-top: 0.2rem;
}

.contact-page__data-list {
    margin-top: 0.85rem;
}

.contact-page__data-list li {
    display: grid;
    justify-content: start;
    gap: 0.22rem;
}

.contact-page__data-list strong,
.contact-page__data-list .statutory-person-card__label {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-page__data-list span,
.contact-page__data-list a {
    color: rgb(24, 33, 40);
    font-weight: 600;
}

.contact-page__data-list a {
    text-decoration: none;
}

.contact-page__data-list li,
.statutory-person-card__list li,
.info-box li {
    min-height: 3rem;
}

.church-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(24rem, 1.22fr);
    gap: 1.75rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.church-page__hero-copy {
    max-width: 32rem;
}

.church-page__hero h1 {
    margin: 0.3rem 0 0;
}

.church-page__lead {
    max-width: 46rem;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.church-page__hero-image {
    width: min(100%, 58rem);
    height: auto;
    margin-inline: auto 0;
    border-radius: calc(var(--radius) - 4px);
    box-shadow: var(--shadow);
}

.church-page__section {
    position: relative;
    padding: 2.25rem 0;
}

.church-page__section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    z-index: -1;
}

.church-page__section--history::before,
.church-page__section--location::before {
    background:
        linear-gradient(180deg, rgba(248, 251, 253, 0.68), rgba(242, 247, 251, 0.58)),
        radial-gradient(circle at 10% 0%, rgba(220, 238, 253, 0.18), transparent 42%);
}

.church-page__section--interior::before,
.church-page__section--gallery::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 247, 243, 0.56)),
        radial-gradient(circle at 100% 18%, rgba(196, 103, 61, 0.1), transparent 34%);
}

.church-page__intro,
.church-page__location {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.church-page__location-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.95fr);
    gap: 1.5rem;
    align-items: start;
}

.church-page__location-card {
    margin-top: 0.15rem;
}

.church-page__facts {
    position: sticky;
    top: 7rem;
}

.church-page__gallery img {
    aspect-ratio: 1 / 1;
}

.gallery-grid__item:hover::after {
    opacity: 1;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(14, 18, 24, 0.7);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(1100px, 100%);
    display: grid;
    gap: 1rem;
}

.lightbox__figure {
    margin: 0;
    position: relative;
    z-index: 1;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.lightbox__image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 10rem);
    object-fit: contain;
    border-radius: 18px;
    background: transparent;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.lightbox__caption {
    margin: 0.75rem 0 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-sans);
}

.lightbox__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 28, 36, 0.42);
    color: #fff;
    font-size: 1.8rem;
    line-height: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.lightbox__button:hover {
    background: rgba(20, 28, 36, 0.56);
}

.lightbox__button--prev {
    left: 15px;
}

.lightbox__button--next {
    right: 15px;
}

.lightbox__close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 28, 36, 0.42);
    color: #fff;
    font-size: 2rem;
    line-height: 0.9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    padding: 0 0 3px;
}

.lightbox__close:hover {
    background: rgba(20, 28, 36, 0.56);
}

.split-listing + .split-listing {
    margin-top: 4rem;
}

.about-strip__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-strip__grid {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
}

.about-strip__card {
    position: relative;
    padding: 1.8rem 1.9rem 1.7rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 251, 254, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    overflow: hidden;
}

.about-strip__card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(196, 103, 61, 0.28), rgba(220, 238, 253, 0.44), rgba(255, 255, 255, 0));
}

.about-strip__ornament {
    width: 92px;
    height: 10px;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(196, 103, 61, 0.62), rgba(220, 238, 253, 0.82));
    opacity: 0.72;
}

.about-strip__lead {
    max-width: 39rem;
    color: var(--muted);
    font-size: 1.04rem;
}

.about-strip__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.about-strip__tags li {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.76);
    color: #526170;
    font-size: 0.92rem;
    box-shadow: 0 10px 24px rgba(83, 104, 127, 0.05);
}

.about-strip__button {
    margin-top: 1.4rem;
    width: fit-content;
}

.detail-grid,
.content-layout {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    align-items: start;
}

.prose {
    max-width: 100%;
}

.prose > :first-child {
    margin-top: 0;
}

.meta-line,
.listing-card__meta {
    color: rgb(24, 33, 40);
    font-family: var(--font-sans);
}

.info-box ul,
.footer-links,
.content-contact__list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.info-box li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
}

.info-box li:last-child {
    border-bottom: 0;
}

.content-quote {
    margin: 2rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 247, 252, 0.84));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.content-quote blockquote {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1.3;
}

.content-contact,
.content-map,
.gallery-block {
    margin-top: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72));
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.content-map iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 18px;
}

.sponsors-carousel {
    --sponsors-gap: 1rem;
    --sponsors-visible: 4;
    display: grid;
    gap: 1.25rem;
}

.sponsors-carousel__viewport {
    overflow: hidden;
    border-radius: 24px;
}

.sponsors-carousel__track {
    display: flex;
    gap: var(--sponsors-gap);
    transition: transform 420ms ease;
    will-change: transform;
}

.sponsors-carousel__item {
    flex: 0 0 calc((100% - (var(--sponsors-visible) - 1) * var(--sponsors-gap)) / var(--sponsors-visible));
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.sponsors-carousel__item img {
    max-height: 100px;
    width: auto;
}

.sponsors-carousel__controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.sponsors-carousel__button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.sponsors-carousel__button:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.8);
    color: var(--accent-dark);
}

.sponsors-carousel__button:disabled {
    opacity: 0.45;
    cursor: default;
}

.site-footer {
    margin-top: auto;
    padding: 3rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.62);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(244, 249, 253, 0.56)),
        radial-gradient(circle at 84% 14%, rgba(220, 238, 253, 0.28), transparent 26%);
    backdrop-filter: blur(24px) saturate(148%);
    -webkit-backdrop-filter: blur(24px) saturate(148%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 -16px 36px rgba(90, 112, 136, 0.04);
}

.site-footer__grid {
    justify-content: flex-start;
    gap: clamp(3rem, 8vw, 7rem);
    padding-bottom: 2.25rem;
}

.site-footer__grid > :first-child {
    flex: 0 1 30rem;
}

.site-footer__grid > :nth-child(2),
.site-footer__grid > :last-child {
    flex: 0 0 15rem;
}

.footer-links li + li {
    margin-top: 0.5rem;
}

.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact li + li {
    margin-top: 0.85rem;
}

.footer-contact a {
    color: var(--forest);
}

.footer-contact a:hover {
    color: var(--accent-dark);
}

.footer-contact__label {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.15rem;
    min-height: 48px;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.76);
    color: var(--forest);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.footer-social:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.74);
    color: var(--accent-dark);
    box-shadow: 0 18px 32px rgba(84, 105, 128, 0.1);
}

.footer-social__icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.56);
    background:
        linear-gradient(180deg, rgba(224, 236, 246, 0.46), rgba(212, 226, 238, 0.6)),
        linear-gradient(90deg, rgba(196, 103, 61, 0.04), rgba(220, 238, 253, 0.1));
    backdrop-filter: blur(22px) saturate(145%);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.footer-bottom__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom__inner p {
    margin: 0;
    color: #445462;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.jagu-link {
    color: #28424e;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-decoration: none;
}

.jagu-link:hover {
    color: var(--accent-dark);
}

.jagulogo-jagu-line:before {
    font-size: 150%;
    margin: 0 5px;
    top: 5px;
    position: relative;
}

@media (max-width: 960px) {
    .hero__inner,
    .detail-grid,
    .content-layout,
    .duo-feed__grid,
    .about-strip__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
        display: grid;
    }

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

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

    .site-header__inner {
        align-items: center;
        flex-wrap: wrap;
        padding: 0.7rem 0 0.6rem;
        min-height: 0;
    }

    .site-decor__line--right {
        top: 34rem;
    }

    .sponsors-carousel {
        --sponsors-visible: 2;
    }

    .site-brand {
        gap: 0.75rem;
        margin: -1.875rem 0 -1.875rem;
        min-width: 0;
        align-items: center;
    }

    .site-brand__seal {
        width: 110px;
        padding: 0.92rem;
    }

    .site-brand__wordmark {
        font-size: clamp(1.85rem, 5.6vw, 2.55rem);
        max-width: 16rem;
    }

    .site-nav-toggle {
        display: inline-flex;
        margin-left: auto;
        align-self: center;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 0.45rem);
        z-index: 12;
        display: grid;
        justify-content: flex-start !important;
        justify-items: start;
        align-items: start;
        gap: 0.2rem;
        width: auto;
        margin-top: 0;
        padding: 0.55rem;
        max-height: 26rem;
        overflow: hidden;
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgb(255, 255, 255), rgb(245, 249, 252)),
            radial-gradient(circle at 14% -10%, rgba(223, 238, 251, 0.42), transparent 42%);
        border: 1px solid rgba(255, 255, 255, 0.92);
        box-shadow:
            0 22px 42px rgba(78, 100, 124, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.88);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transform-origin: top center;
        transition:
            opacity 220ms ease,
            transform 220ms ease,
            max-height 260ms ease,
            margin-top 220ms ease,
            visibility 220ms ease;
    }

    .site-nav:not(.is-open) {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        border-width: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-0.45rem) scale(0.985);
        box-shadow: none;
    }

    .site-nav a {
        width: 100%;
        padding: 0.85rem 0.9rem;
        border-radius: 16px;
        text-align: left !important;
    }

    .site-nav a:hover {
        background: rgba(255, 255, 255, 0.48);
    }

    .site-nav a::after {
        display: none;
    }

    .statutory-person-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .statutory-person-card__media {
        max-width: 18rem;
    }

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

    .church-page__intro,
    .church-page__location,
    .church-page__location-layout,
    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .church-page__hero {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .church-page__hero-image {
        margin-top: 1rem;
        margin-inline: auto;
    }

    .church-page__facts {
        position: static;
    }

    .church-page__hero-copy,
    .church-page__lead {
        max-width: none;
    }

    .church-page__section {
        padding: 1.85rem 0;
    }

    .contact-page__person .statutory-person-block__surface,
    .contact-page__grid .info-box {
        height: auto;
    }
}

@media (max-width: 720px) {
    .hero,
    .page-shell,
    .detail-hero,
    .duo-feed,
    .about-strip {
        padding: 3rem 0;
    }

    .hero__copy h1,
    .page-heading h1,
    .detail-hero h1 {
        font-size: 2.4rem;
    }

    .about-strip__card {
        padding: 1.55rem 1.35rem 1.4rem;
    }

    .about-strip__tags {
        gap: 0.55rem;
    }

    .about-strip__tags li {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .sponsors-carousel {
        --sponsors-visible: 1;
    }

    .sponsors-carousel__controls {
        justify-content: center;
    }

    .breadcrumbs-shell {
        padding-top: 0.75rem;
    }

    .breadcrumbs {
        border-radius: 22px;
        padding: 0.75rem 0.9rem;
    }

    .site-header__inner {
        padding: 0.85rem 0 0.75rem;
    }

    .site-brand {
        gap: 0.6rem;
        margin: -1.875rem 0 -1.875rem;
        align-items: center;
    }

    .site-brand__seal {
        width: 90px;
        padding: 0.76rem;
    }

    .site-brand__wordmark {
        font-size: 1.72rem;
        max-width: 13rem;
    }

    body.hero-in-view .site-brand__wordmark {
        opacity: 1;
        transform: none;
        max-width: 13rem;
        margin-left: 0;
        overflow: clip;
        pointer-events: auto;
    }

    .site-nav-toggle {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .members-grid-block__grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .cta-button {
        width: 100%;
    }

    .site-decor__orb--top {
        width: 22rem;
        height: 22rem;
    }

    .site-decor__orb--side,
    .site-decor__line {
        display: none;
    }

    .page-heading {
        margin-bottom: 2rem;
    }

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

    .hero__panel,
    .content-card,
    .listing-card,
    .info-box,
    .content-quote,
    .content-contact,
    .content-map,
    .gallery-block,
    .rich-text-block__surface,
    .styled-list-block__surface,
    .statutory-person-block__surface,
    .members-grid-block__surface {
        padding: 1.2rem;
        border-radius: 20px;
    }

    .contact-page__summary-card {
        gap: 1.05rem;
    }

    .contact-page__summary-section + .contact-page__summary-section {
        padding-top: 1rem;
    }

    .contact-page__data-list {
        margin-top: 0.85rem;
    }

    .contact-page__data-list li,
    .statutory-person-card__list li,
    .info-box li {
        min-height: 0;
        padding: 0.75rem 0;
    }

    .contact-page__data-list span,
    .contact-page__data-list a {
        font-size: 1rem;
        line-height: 1.45;
    }

    .church-page__section {
        padding: 1.55rem 0;
    }

    .church-page__section::before {
        width: 100%;
        left: 0;
        transform: none;
    }

    .church-page__hero-copy {
        max-width: none;
    }

    .church-page__hero h1 {
        max-width: 12ch;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox__figure {
        padding: 0;
        border-radius: 0;
    }

    .lightbox__button--prev {
        left: 15px;
    }

    .lightbox__button--next {
        right: 15px;
    }

    .lightbox__button,
    .lightbox__close {
        width: 42px;
        height: 42px;
    }
}
