:root {
    --bg: #0c0a08;
    --bg-elev: #15120e;
    --bg-card: #1a1611;
    --bg-card-2: #1f1a14;
    --ink: #e6dec9;
    --ink-2: #b8af9a;
    --ink-soft: #7d7464;
    --ink-faint: #4a4337;
    --rule: #3a3327;
    --rule-soft: #29241b;
    --gold: #b89148;
    --gold-soft: #856735;
    --gold-bright: #d4a85e;
    --gold-glow: rgba(212, 168, 94, 0.18);
    --shadow-heavy: 0 16px 40px -8px rgba(0, 0, 0, 0.6);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--ink);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.65;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
    opacity: 0.32;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}

body > * {
    position: relative;
    z-index: 2;
}

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

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

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

.heb {
    font-family: 'Frank Ruhl Libre', serif;
    direction: rtl;
    unicode-bidi: isolate;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.top-stack {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
}

.dedication-strip {
    background: #0a0806;
    border-bottom: 1px solid var(--rule-soft);
    padding: 11px 32px;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.45;
    letter-spacing: 0.015em;
}

.dedication-strip strong {
    font-weight: 500;
    font-style: normal;
    color: var(--gold-bright);
}

.dedication-strip .heb-honor {
    color: var(--ink-soft);
}

.dedication-strip::before,
.dedication-strip::after {
    content: "✦";
    color: var(--gold);
    margin: 0 14px;
    vertical-align: 0.05em;
}

.nav {
    background: rgba(12, 10, 8, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.nav-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    white-space: nowrap;
}

.nav-brand .accent {
    color: var(--gold-bright);
    font-style: italic;
    letter-spacing: 0.04em;
    text-transform: none;
    font-weight: 400;
    font-size: 17px;
    margin-left: 10px;
}

.mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid var(--rule);
    color: var(--ink);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-2);
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-item:hover .nav-link,
.nav-item:focus-within .nav-link {
    color: var(--gold-bright);
}

.nav-link .caret {
    font-size: 8px;
    transition: transform 0.25s ease;
}

.nav-item:hover .nav-link .caret,
.nav-item:focus-within .nav-link .caret {
    transform: rotate(180deg);
}

.nav-link.register,
.nav-link.donate {
    padding: 8px 16px;
    border: 1px solid rgba(184, 145, 72, 0.32);
}

.nav-link.register {
    color: var(--gold-bright);
    background: rgba(184, 145, 72, 0.06);
}

.nav-link.register::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold-bright);
    box-shadow: 0 0 6px rgba(212, 168, 94, 0.55);
}

.nav-link.donate {
    color: var(--gold-bright);
    border-color: var(--gold-soft);
}

.nav-link.register:hover,
.nav-link.donate:hover {
    background: rgba(184, 145, 72, 0.14);
    border-color: var(--gold-soft);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    padding: 10px 0;
    background: var(--bg-elev);
    border: 1px solid var(--rule);
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

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

.dropdown a {
    display: block;
    padding: 11px 22px;
    font-size: 14px;
    color: var(--ink-2);
    border-left: 2px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dropdown a:hover {
    background: var(--bg-card);
    border-left-color: var(--gold);
    color: var(--ink);
}

.masthead {
    background: linear-gradient(180deg, #0f0c09 0%, #15110b 100%);
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}

.masthead::after {
    content: "ב";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Frank Ruhl Libre', serif;
    font-weight: 300;
    font-size: 320px;
    color: var(--gold);
    opacity: 0.025;
    line-height: 1;
    pointer-events: none;
}

.masthead-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.masthead-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.ou-logo {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold-soft);
    border-radius: 50%;
    background: rgba(184, 145, 72, 0.04);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 22px;
}

.masthead-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 36px);
    line-height: 1.05;
}

.masthead-title em {
    color: var(--gold-bright);
    font-style: italic;
}

.masthead-subtitle {
    margin-top: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.masthead-date {
    justify-self: center;
    padding: 9px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--rule);
    font-style: italic;
    font-size: 16px;
    white-space: nowrap;
}

.masthead-date .sep {
    color: var(--gold-soft);
    margin: 0 10px;
}

.masthead-date .heb {
    color: var(--gold);
    font-style: normal;
}

.specials {
    display: flex;
    gap: 10px;
}

.special {
    max-width: 240px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(26, 22, 17, 0.5);
    border: 1px solid var(--rule);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.special:hover {
    background: rgba(184, 145, 72, 0.08);
    border-color: var(--gold-soft);
    transform: translateY(-1px);
}

.special-thumb {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 1px solid var(--rule);
    background: var(--bg-elev);
    position: relative;
    overflow: hidden;
}

.special-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.special-thumb--lanetzach::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='s1' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23231d14'/%3E%3Cstop offset='100%25' stop-color='%2315110b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23s1)'/%3E%3Crect x='42' y='28' width='16' height='44' fill='%23b89148' opacity='0.55'/%3E%3Cpath d='M50 22 Q47 15 50 8 Q53 15 50 22 Z' fill='%23d4a85e' opacity='0.7'/%3E%3Cellipse cx='50' cy='86' rx='22' ry='3' fill='%23856735' opacity='0.4'/%3E%3C/svg%3E");
}

.special-thumb--faith::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3ClinearGradient id='s2' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23261e15'/%3E%3Cstop offset='100%25' stop-color='%2315110b'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23s2)'/%3E%3Ccircle cx='35' cy='42' r='10' fill='%234a4337'/%3E%3Cpath d='M18 90 Q18 65 35 60 Q52 65 52 90 Z' fill='%234a4337'/%3E%3Ccircle cx='68' cy='42' r='10' fill='%23856735' opacity='0.65'/%3E%3Cpath d='M51 90 Q51 65 68 60 Q85 65 85 90 Z' fill='%23856735' opacity='0.65'/%3E%3C/svg%3E");
}

.special .label,
.kicker,
.badge,
.footer-copy {
    font-family: 'Cormorant Garamond', serif;
}

.special .label {
    display: block;
    margin-bottom: 3px;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

.special .title {
    font-size: 14px;
    line-height: 1.25;
}

.section {
    padding: 36px 0 12px;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule-soft);
    position: relative;
    flex-wrap: wrap;
}

.section-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.section-head h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 22px;
    line-height: 1;
}

.section-head h2 em {
    color: var(--gold-bright);
}

.kicker {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

.programs,
.partners-grid {
    display: grid;
    gap: 18px;
}

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

.partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.program-card,
.partner-card {
    border: 1px solid var(--rule);
    background: var(--bg-card);
}

.program-card {
    min-width: 0;
    padding: 22px 22px 16px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover,
.partner-card:hover {
    transform: translateY(-2px);
}

.program-card--speaker {
    background: #2a1d1d;
    border-color: #4a2e2e;
}

.program-card--speaker:hover {
    background: #322323;
    border-color: #5d3a3a;
}

.program-card--memorial {
    background: #2a2418;
    border-color: #5a4a2a;
}

.program-card--memorial:hover {
    background: #322c1f;
    border-color: #6e5a32;
}

.program-card--special {
    background: #25202c;
    border-color: #423a52;
}

.program-card--special:hover {
    background: #2c2634;
    border-color: #524868;
}

.program-card--film {
    background: #2a241c;
    border-color: #4a3e2e;
}

.program-card--film:hover {
    background: #322c22;
    border-color: #5d4d3a;
}

.program-card--series {
    background: #1d2828;
    border-color: #2e4444;
}

.program-card--series:hover {
    background: #233030;
    border-color: #3a5454;
}

.program-card--video {
    background: #1d242c;
    border-color: #2e3c4a;
}

.program-card--video:hover {
    background: #232b34;
    border-color: #3a4a5d;
}

.speaker-portrait,
.memorial-portrait {
    margin: 6px auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-elev);
    flex-shrink: 0;
}

.speaker-portrait {
    width: 76px;
    height: 76px;
    border: 1px solid var(--rule);
}

.memorial-portrait {
    width: 84px;
    height: 84px;
    border: 1.5px solid var(--gold-soft);
    box-shadow: 0 0 0 3px var(--bg-card), 0 0 0 4px var(--rule);
}

.speaker-portrait img,
.memorial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: grayscale(0.88) contrast(1.05) brightness(0.94);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.memorial-portrait img {
    filter: grayscale(1) sepia(0.14) saturate(0.65) brightness(0.92) contrast(1.06);
}

.program-card--speaker:hover .speaker-portrait img,
.program-card--memorial:hover .memorial-portrait img {
    filter: grayscale(0.65) contrast(1.07) brightness(0.98);
    transform: scale(1.02);
}

.program-tag {
    min-height: 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.program-tag .when {
    margin-right: auto;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12.5px;
    line-height: 1.2;
}

.program-tag .when::before {
    content: "◷";
    margin-right: 6px;
    opacity: 0.75;
}

.badge {
    padding: 3px 9px;
    border: 1px solid currentColor;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.program-card--speaker .badge { color: #c4a0a0; }
.program-card--memorial .badge { color: var(--gold-bright); }
.program-card--special .badge { color: #b8acc8; }
.program-card--film .badge { color: #c4b090; }
.program-card--series .badge { color: #a0bcbc; }
.program-card--video .badge { color: #a8b4c4; }

.program-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-title {
    margin: 0 0 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.18;
}

.program-title .heb {
    margin-left: 8px;
    font-size: 0.7em;
    color: var(--gold);
}

.program-role,
.program-where,
.program-note,
.memorial-blessing .eng,
.partner-card p,
.site-footer .help {
    color: rgba(230, 222, 201, 0.68);
}

.program-role {
    margin-bottom: 12px;
    font-size: 13px;
    font-style: italic;
}

.program-topic {
    margin: 0 0 12px;
    color: rgba(230, 222, 201, 0.86);
    font-size: 15px;
    line-height: 1.45;
}

.program-topic .heb {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
    color: var(--gold-bright);
}

.program-where {
    margin-bottom: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.06em;
    font-style: italic;
}

.program-where::before {
    content: "◆ ";
    color: var(--gold);
}

.program-note {
    margin-top: 6px;
    font-size: 12px;
    font-style: italic;
}

.program-note a {
    color: var(--gold-bright);
    border-bottom: 1px solid var(--gold-soft);
}

.program-note strong {
    padding: 1px 6px;
    background: rgba(184, 145, 72, 0.1);
    color: var(--gold-bright);
    font-weight: 500;
    letter-spacing: 0.08em;
}

.program-foot {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.watch-btn,
.donate-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
}

.watch-btn {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.15);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.watch-btn:hover {
    background: var(--gold-soft);
    color: var(--bg);
    border-color: var(--gold-soft);
}

.memorial-blessing {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dotted var(--rule-soft);
}

.memorial-blessing .heb {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    color: var(--gold);
}

.memorial-blessing .eng {
    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.04em;
}

.partner-card {
    padding: 20px 22px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.partner-card:hover {
    background: var(--bg-card-2);
    border-color: var(--gold-soft);
}

.partner-card h3 {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 19px;
}

.partner-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.donate-band {
    margin-top: 32px;
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
}

.donate-band::before,
.donate-band::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 80px;
    height: 1px;
    background: var(--gold-soft);
    transform: translateX(-50%);
}

.donate-band::before { top: 16px; }
.donate-band::after { bottom: 16px; }

.donate-band h3 {
    max-width: 720px;
    margin: 0 auto 22px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.3;
}

.donate-btn {
    padding: 14px 36px;
    border: 1px solid var(--gold-soft);
    color: var(--gold-bright);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.donate-btn:hover {
    background: var(--gold-soft);
    color: var(--bg);
}

.detail-page .masthead-inner {
    grid-template-columns: minmax(0, 1fr) auto;
}

.detail-hero {
    padding: 40px 0 20px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.detail-main,
.detail-side {
    min-width: 0;
}

.detail-card,
.detail-stack-card {
    background: var(--bg-card);
    border: 1px solid var(--rule);
}

.detail-card {
    padding: 24px;
}

.detail-card--memorial {
    background: linear-gradient(180deg, rgba(42, 36, 24, 0.96) 0%, rgba(26, 22, 17, 0.96) 100%);
    border-color: #5a4a2a;
    box-shadow: 0 0 0 1px rgba(184, 145, 72, 0.08), 0 18px 50px -24px rgba(0, 0, 0, 0.8);
}

.detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.detail-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.detail-title {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 500;
    line-height: 1;
}

.detail-title .heb {
    display: inline-block;
    margin-left: 8px;
    color: var(--gold);
    font-size: 0.52em;
}

.detail-subtitle {
    margin: 0 0 16px;
    color: var(--ink-2);
    font-size: 17px;
    font-style: italic;
}

.detail-summary {
    margin: 0;
    max-width: 52rem;
    color: rgba(230, 222, 201, 0.86);
}

.detail-blessing {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(184, 145, 72, 0.18);
}

.detail-blessing .heb {
    display: block;
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 4px;
}

.detail-blessing .eng {
    color: var(--ink-soft);
    font-size: 13px;
    letter-spacing: 0.04em;
    font-style: italic;
}

.detail-stack {
    display: grid;
    gap: 18px;
}

.detail-stack-card {
    padding: 20px;
}

.detail-stack-card--flush {
    padding: 0;
    overflow: hidden;
}

.detail-stack-card h2,
.detail-stack-card h3 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
}

.detail-stack-card p {
    margin: 0;
    color: rgba(230, 222, 201, 0.82);
}

.detail-stack-card p + p,
.detail-stack-card ul + p,
.detail-stack-card p + ul {
    margin-top: 12px;
}

.detail-stack-card a {
    color: var(--gold-bright);
}

.speaker-feature-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #100d08;
}

.utility-hero {
    padding: 40px 0 20px;
}

.utility-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.utility-main,
.utility-side {
    min-width: 0;
}

.utility-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--rule);
}

.utility-card h2,
.utility-card h3 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
}

.utility-card p {
    margin: 0;
    color: rgba(230, 222, 201, 0.82);
}

.utility-card p + p,
.utility-card p + ul,
.utility-card ul + p {
    margin-top: 12px;
}

.utility-embed {
    padding: 24px;
    background: linear-gradient(180deg, rgba(31, 26, 20, 0.92) 0%, rgba(21, 18, 14, 0.92) 100%);
    border: 1px solid var(--rule);
}

.utility-embed .detail-kicker {
    margin-bottom: 10px;
}

.utility-embed h2 {
    margin: 0 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 500;
}

.utility-embed p {
    margin: 0;
    color: rgba(230, 222, 201, 0.82);
}

.archive-player {
    margin-top: 18px;
}

.archive-player-shell {
    overflow: hidden;
    border: 1px solid rgba(184, 145, 72, 0.18);
    background: #090806;
}

.archive-player-stage {
    position: relative;
}

.archive-player-headline {
    margin: 0;
    padding: 16px 18px;
    border-top: 1px solid rgba(184, 145, 72, 0.12);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
}

.archive-player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.archive-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 10px;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 12px;
    padding: 0;
    border: 1px solid rgba(184, 145, 72, 0.12);
    background: rgba(0, 0, 0, 0.16);
    color: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.archive-card:hover,
.archive-card:focus-visible,
.archive-card.is-active {
    border-color: var(--gold-soft);
    background: rgba(184, 145, 72, 0.08);
    transform: translateY(-1px);
}

.archive-card:focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 2px;
}

.archive-card-thumb {
    display: block;
    aspect-ratio: 16 / 9;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #17120d;
}

.archive-card-body {
    display: block;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 14px 14px;
}

.archive-card-title {
    display: block;
    min-width: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.archive-status {
    color: var(--ink-soft);
    font-size: 14px;
}

.archive-empty {
    padding: 32px 20px;
    border: 1px dashed rgba(184, 145, 72, 0.18);
    color: var(--ink-soft);
    text-align: center;
}

.archive-links {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.archive-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(184, 145, 72, 0.2);
    color: var(--ink);
    background: rgba(184, 145, 72, 0.08);
}

.archive-links a:hover {
    border-color: var(--gold-soft);
    background: rgba(184, 145, 72, 0.14);
}

.form-shell {
    padding: 24px;
    background: linear-gradient(180deg, rgba(31, 26, 20, 0.92) 0%, rgba(21, 18, 14, 0.92) 100%);
    border: 1px solid var(--rule);
}

.form-shell acoustic-form-outishabavreg {
    display: block;
    margin-top: 18px;
}

.form-shell :is(form, .form, [class*="form"]) {
    min-width: 0;
}

.form-shell :is(label, legend) {
    color: var(--ink);
}

.form-shell :is(input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]), select, textarea) {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(184, 145, 72, 0.18);
    background: rgba(8, 7, 5, 0.58);
    color: var(--ink);
    font: inherit;
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.form-shell :is(input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]), select, textarea):focus {
    outline: none;
    border-color: var(--gold-soft);
    box-shadow: 0 0 0 3px rgba(184, 145, 72, 0.12);
}

.form-shell :is(button, input[type="submit"], input[type="button"]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--gold-soft);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(184, 145, 72, 0.2) 0%, rgba(133, 103, 53, 0.22) 100%);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.9);
}

.form-shell :is(button, input[type="submit"], input[type="button"]):hover {
    border-color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(184, 145, 72, 0.28) 0%, rgba(133, 103, 53, 0.3) 100%);
    transform: translateY(-1px);
}

.form-shell :is(button, input[type="submit"], input[type="button"]):focus-visible {
    outline: 2px solid var(--gold-soft);
    outline-offset: 2px;
}

.speaker-list {
    display: grid;
    gap: 14px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.speaker-list li {
    border: 1px solid rgba(184, 145, 72, 0.12);
    background: rgba(0, 0, 0, 0.14);
}

.speaker-list li.speaker-list-item--memorial {
    border-color: #5a4a2a;
    background: linear-gradient(180deg, rgba(42, 36, 24, 0.96) 0%, rgba(26, 22, 17, 0.96) 100%);
    box-shadow: 0 0 0 1px rgba(184, 145, 72, 0.08), 0 18px 40px -28px rgba(0, 0, 0, 0.78);
}

.speaker-list a {
    display: block;
    padding: 14px 16px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.speaker-list a:hover {
    background: rgba(184, 145, 72, 0.08);
    transform: translateY(-1px);
}

.speaker-list a.related-link--memorial:hover {
    background: linear-gradient(180deg, rgba(52, 44, 29, 0.38) 0%, rgba(29, 24, 18, 0.32) 100%);
}

.speaker-list strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
    font-weight: 500;
    color: var(--ink);
}

.speaker-list span {
    display: block;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.5;
}

.detail-media {
    padding: 24px;
    background: linear-gradient(180deg, rgba(31, 26, 20, 0.92) 0%, rgba(21, 18, 14, 0.92) 100%);
    border: 1px solid var(--rule);
}

.detail-media-head {
    margin-bottom: 16px;
}

.detail-media-head h2 {
    margin: 6px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
}

.detail-media-head p {
    margin: 0;
    color: rgba(230, 222, 201, 0.82);
}

.jw-shell {
    overflow: hidden;
    border: 1px solid rgba(184, 145, 72, 0.18);
    background: #090806;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.detail-access-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.access-card {
    min-width: 0;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(184, 145, 72, 0.12);
}

.access-card h3 {
    margin: 0 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
}

.access-card p {
    margin: 0;
    color: rgba(230, 222, 201, 0.8);
    font-size: 14px;
    line-height: 1.55;
}

.access-card--icon {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.access-card--icon img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-iframe {
    margin-top: 16px;
    border: 1px solid rgba(184, 145, 72, 0.12);
    overflow: hidden;
}

.detail-iframe iframe {
    display: block;
    width: 100%;
    border: 0;
}

.resource-list,
.related-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.resource-list a,
.related-list a {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(184, 145, 72, 0.12);
    background: rgba(0, 0, 0, 0.16);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.resource-list a:hover,
.related-list a:hover {
    border-color: var(--gold-soft);
    background: rgba(184, 145, 72, 0.08);
    transform: translateY(-1px);
}

.related-list a.related-link--memorial {
    background: linear-gradient(180deg, rgba(42, 36, 24, 0.96) 0%, rgba(26, 22, 17, 0.96) 100%);
    border-color: #5a4a2a;
    box-shadow: 0 0 0 1px rgba(184, 145, 72, 0.08), 0 18px 40px -28px rgba(0, 0, 0, 0.78);
}

.related-list a.related-link--memorial:hover {
    border-color: var(--gold-bright);
    background: linear-gradient(180deg, rgba(52, 44, 29, 0.98) 0%, rgba(29, 24, 18, 0.98) 100%);
}

.related-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.related-eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: currentColor;
}

.related-link--memorial strong {
    color: var(--ink);
}

.related-link--memorial span:last-child {
    color: rgba(230, 222, 201, 0.76);
}

.resource-list strong,
.related-list strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
}

.resource-list span,
.related-list span {
    display: block;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.45;
}

.site-footer {
    padding: 36px 24px 48px;
    text-align: center;
    font-size: 13px;
}

.site-footer .help {
    max-width: 640px;
    margin: 0 auto 14px;
    font-style: italic;
    line-height: 1.6;
}

.site-footer a {
    color: var(--gold);
    border-bottom: 1px solid var(--rule);
}

.footer-copy {
    margin-top: 18px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.cookie-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
}

@media (max-width: 1100px) {
    .masthead-inner {
        grid-template-columns: auto 1fr;
    }

    .specials {
        grid-column: 1 / -1;
        margin-top: 14px;
    }

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

@media (max-width: 980px) {
    .nav-inner {
        padding: 0 20px;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--bg-elev);
        border-bottom: 1px solid var(--rule);
        padding: 8px 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.is-open {
        max-height: 700px;
        overflow-y: auto;
    }

    .nav-link {
        padding: 14px 24px;
    }

    .nav-link.donate,
    .nav-link.register {
        margin: 8px 24px 0;
        justify-content: center;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        border: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        padding: 4px 0 8px 16px;
    }
}

@media (max-width: 720px) {
    .dedication-strip {
        padding: 9px 16px;
        font-size: 12.5px;
        line-height: 1.4;
    }

    .dedication-strip::before,
    .dedication-strip::after {
        display: none;
    }

    .wrap,
    .masthead-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .masthead-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .masthead-date {
        justify-self: start;
        font-size: 14px;
        padding: 7px 16px;
        white-space: normal;
    }

    .specials {
        flex-direction: column;
    }

    .special {
        max-width: none;
    }

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

    .detail-layout,
    .detail-access-grid {
        grid-template-columns: 1fr;
    }

    .donate-band {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1100px) {
    .detail-layout,
    .utility-grid {
        grid-template-columns: 1fr;
    }
}