:root {
    --color-black: #1d2430;
    --color-white: #ffffff;
    --color-gold: #ef4723;
    --color-surface: #ffffff;
    --color-surface-soft: #fff7f4;
    --color-border: rgba(27, 43, 68, 0.14);
    --color-text: #1d2430;
    --color-text-muted: #4f5f76;
    --color-shadow: rgba(18, 28, 44, 0.12);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --shadow-soft: 0 18px 48px var(--color-shadow);
    --shadow-card: 0 10px 30px rgba(18, 28, 44, 0.1);
    --container-width: 1160px;
    --transition: 220ms ease;
    --space-section: clamp(3.6rem, 8vw, 5.4rem);
    --space-card: clamp(1rem, 2.2vw, 1.35rem);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #fffaf8 0%, #fff1ec 48%, #fffdfb 100%);
    color: var(--color-text);
    font-family: "Inter", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-wrap: anywhere;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.8;
    pointer-events: none;
}

body::before {
    width: min(38vw, 420px);
    height: min(38vw, 420px);
    top: -110px;
    left: -90px;
    background: radial-gradient(circle, rgba(239, 71, 35, 0.2), transparent 65%);
    animation: driftBlob 14s ease-in-out infinite;
}

body::after {
    width: min(34vw, 360px);
    height: min(34vw, 360px);
    right: -80px;
    top: 120px;
    background: radial-gradient(circle, rgba(249, 187, 94, 0.2), transparent 64%);
    animation: driftBlob 16s ease-in-out infinite reverse;
}

@keyframes driftBlob {
    0% { transform: translate(0, 0); }
    50% { transform: translate(10px, 14px); }
    100% { transform: translate(0, 0); }
}

main {
    min-height: 100vh;
}

.contact-page main {
    min-height: auto;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition), transform var(--transition);
}

button,
.button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    min-height: 50px;
    padding: 0.9rem 1.4rem;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

button:hover,
.button:hover {
    transform: translateY(-2px);
}

button:focus-visible,
.button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

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

section {
    padding: var(--space-section) 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.9rem 0;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(27, 43, 68, 0.08);
    box-shadow: 0 6px 20px rgba(35, 39, 54, 0.08);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.brand {
    max-width: 330px;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.brand-logo {
    width: auto;
    height: 34px;
    border-radius: 0;
    object-fit: contain;
    display: block;
    border: 0;
    box-shadow: none;
}

.brand-text {
    color: #1f2633;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    color: #51607a;
    font-size: 0.95rem;
    font-weight: 600;
}

.site-nav a.is-active {
    color: var(--color-gold);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #1d2430;
}

/* ── Nav Dropdown ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    padding: 0;
    min-height: unset;
    box-shadow: none;
    color: #51607a;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: #1d2430;
    background: none;
    box-shadow: none;
}

.nav-dropdown-toggle.is-active {
    color: var(--color-gold);
}

.nav-dropdown-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 220ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 148px;
    background: #ffffff;
    border: 1px solid rgba(27, 43, 68, 0.12);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(18, 28, 44, 0.14);
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
    z-index: 200;
}

.nav-dropdown-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #51607a;
    white-space: nowrap;
    border-radius: 6px;
    margin: 0 0.3rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(239, 71, 35, 0.07);
    color: var(--color-gold);
}

.nav-cta {
    margin-left: 0.4rem;
}

.nav-toggle {
    display: none;
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(27, 43, 68, 0.15);
    box-shadow: none;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: #222a3a;
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #1b2432;
}

h1 {
    font-size: clamp(2.7rem, 7vw, 5.2rem);
}

h2 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ef4723 0%, #ff6a3a 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(239, 71, 35, 0.24);
}

.button:hover {
    box-shadow: 0 16px 30px rgba(239, 71, 35, 0.3);
}

.button-secondary {
    background: #ffffff;
    color: #1d2430;
    border: 1px solid rgba(27, 43, 68, 0.18);
    box-shadow: 0 6px 16px rgba(18, 28, 44, 0.08);
}

.hero-section {
    position: relative;
    display: grid;
    align-items: center;
    min-height: calc(100vh - 84px);
    padding: 6rem 0;
    overflow: clip;
    background-image: none;
    background-size: cover;
    background-position: center 32%;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            160deg,
            rgba(8, 6, 5, 0.84) 0%,
            rgba(18, 12, 9, 0.8) 45%,
            rgba(64, 28, 16, 0.68) 100%
        );
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 38%),
        linear-gradient(180deg, rgba(9, 7, 6, 0.12), rgba(9, 7, 6, 0.3));
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    justify-items: center;
    gap: 1rem;
    text-align: center;
    width: min(100%, 860px);
    margin: 0 auto;
    color: var(--color-white);
}

.theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    background: linear-gradient(100deg, rgba(239, 71, 35, 0.12) 0%, rgba(255, 120, 50, 0.22) 50%, rgba(239, 71, 35, 0.12) 100%);
    border: 1px solid rgba(239, 71, 35, 0.4);
    border-radius: 999px;
    padding: 0.45em 1.4em 0.45em 1em;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 0 1px rgba(255, 120, 50, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.theme-badge::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 200, 160, 0.22), transparent);
    animation: badgeShimmer 3.2s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% { left: -60%; }
    60%, 100% { left: 120%; }
}

.theme-badge-year {
    font-size: 1.05rem;
    font-weight: 900;
    color: #ff7a4d;
    letter-spacing: 0.05em;
    line-height: 1;
}

.theme-badge-divider {
    display: block;
    width: 1px;
    height: 1rem;
    background: rgba(239, 71, 35, 0.45);
    border-radius: 1px;
}

.theme-badge-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: rgba(255, 200, 175, 0.85);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.verse-ref {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
}

.verse-deco-top {
    display: block;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold) 20%, var(--color-gold) 80%, transparent);
    border-radius: 1px;
    margin-bottom: 0.2rem;
}

.hero-scripture {
    color: var(--color-gold);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6em;
}

.hero-scripture::before {
    content: "✧";
    font-size: 0.65em;
    opacity: 0.7;
}

.hero-scripture::after {
    content: "✧";
    font-size: 0.65em;
    opacity: 0.7;
}

.hero-content h1 {
    max-width: 10ch;
    text-wrap: balance;
    color: var(--color-white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-text {
    max-width: 28ch;
    font-size: clamp(1.08rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.6rem;
}

.fade-in-up {
    animation: fadeInUp 760ms ease-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.media-section {
    padding-top: 4.2rem;
}

.section-heading {
    display: grid;
    gap: 0.8rem;
    width: min(100%, 760px);
    margin-bottom: 2rem;
}

.section-label {
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-heading h2 {
    max-width: 20ch;
}

.media-section-heading {
    text-align: center;
    justify-items: center;
    margin: 0 auto 2rem;
}

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

.media-card {
    display: grid;
    grid-template-rows: auto auto auto;
    row-gap: 0.35rem;
    align-content: start;
    padding: var(--space-card);
    background: linear-gradient(180deg, #ffffff, #fffdfc);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 71, 35, 0.32);
    box-shadow: 0 16px 30px rgba(18, 28, 44, 0.14);
}

.media-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0;
}

.media-card p {
    margin: 0;
}

.media-frame {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(239, 71, 35, 0.26);
    background:
        linear-gradient(180deg, rgba(239, 71, 35, 0.12), rgba(239, 71, 35, 0.03)),
        #fff8f5;
}

.media-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-spotify-section {
    padding: 0.5rem 0 0.9rem;
}

.home-spotify-card {
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 0.95rem;
    border-radius: 20px;
    border: 1px solid rgba(27, 43, 68, 0.12);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.97), rgba(255, 247, 238, 0.96));
    box-shadow: 0 16px 34px rgba(18, 28, 44, 0.09);
}

.home-spotify-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9a581f;
}

.home-spotify-card h3 {
    margin: 0 0 0.7rem;
    font-size: 1.02rem;
}

.home-spotify-frame {
    display: block;
    width: 100%;
    height: 152px;
    border: 0;
}

.branches-section {
    padding-top: 1.1rem;
}

.branches-showcase {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 184, 115, 0.28), transparent 32%),
        radial-gradient(circle at 88% 18%, rgba(239, 71, 35, 0.16), transparent 28%),
        linear-gradient(145deg, #fff7f1 0%, #ffffff 48%, #fff4ed 100%);
    border: 1px solid rgba(239, 71, 35, 0.12);
    box-shadow: 0 24px 48px rgba(18, 28, 44, 0.08);
}

.branches-showcase::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 22px;
    border: 1px dashed rgba(239, 71, 35, 0.12);
    pointer-events: none;
}

.branches-heading {
    position: relative;
    z-index: 1;
    justify-items: center;
    text-align: center;
    margin: 0 auto 1.4rem;
}

.branches-heading h2 {
    max-width: none;
}

.branches-intro {
    max-width: 52ch;
    margin: 0;
    color: #5f6d84;
}

.branches-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.branch-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 62px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(27, 43, 68, 0.08);
    box-shadow: 0 10px 24px rgba(18, 28, 44, 0.08);
    font-size: 0.98rem;
    font-weight: 700;
    color: #1f2734;
    letter-spacing: 0.01em;
    backdrop-filter: blur(10px);
}

.branch-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--branch-color, var(--color-gold));
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--branch-color, var(--color-gold)) 18%, white);
}

.branch-east { --branch-color: #ef4723; }
.branch-durban { --branch-color: #ff8c42; }
.branch-pretoria { --branch-color: #be8a00; }
.branch-soweto { --branch-color: #facc15; }
.branch-potch { --branch-color: #3867d6; }
.branch-gqeberha { --branch-color: #7d4fe0; }
.branch-polokwane { --branch-color: #db2777; }
.branch-witbank { --branch-color: #0f766e; }

.content-section {
    padding: 4.8rem 0;
}

.section-divider {
    border-top: 1px solid rgba(27, 43, 68, 0.08);
}

.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.1rem;
}

.content-grid-single {
    grid-template-columns: 1fr;
}

.content-card {
    display: grid;
    gap: 0.9rem;
    padding: var(--space-card);
    background: linear-gradient(180deg, #ffffff, #fffefe);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.content-card:hover {
    transform: translateY(-2px);
    border-color: rgba(239, 71, 35, 0.3);
    box-shadow: 0 12px 30px rgba(18, 28, 44, 0.14);
}

.content-card h2 {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.content-card h3 {
    font-size: 1.24rem;
}

.content-card strong {
    color: #1f2734;
    font-weight: 700;
}

.bible-study-visual {
    position: relative;
    overflow: hidden;
    min-height: 200px;
    border-radius: calc(var(--radius-md) - 6px);
    background: linear-gradient(135deg, #1f0c04 0%, #5c1d0f 50%, #ef4723 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.bible-study-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bible-study-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 8, 6, 0.08), rgba(13, 8, 6, 0.72)),
        linear-gradient(135deg, rgba(239, 71, 35, 0.18), rgba(251, 146, 60, 0.1));
}

.bible-study-visual-copy {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.1rem;
    z-index: 1;
    display: grid;
    gap: 0.28rem;
    color: #ffffff;
}

.bible-study-visual-label {
    display: inline-flex;
    width: fit-content;
    padding: 0.36rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
}

.bible-study-visual-copy p {
    margin: 0;
    max-width: 22rem;
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
}

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

.scripture-note {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.program-stack {
    margin-top: 1.1rem;
}

.program-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-text-muted);
    display: grid;
    gap: 0.45rem;
}

.event-list {
    list-style: none;
    padding-left: 0;
    gap: 0.9rem;
}

.event-list li {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid rgba(27, 43, 68, 0.12);
    border-radius: 12px;
    background: rgba(239, 71, 35, 0.03);
}

.event-list span {
    color: var(--color-gold);
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.program-form {
    display: grid;
    gap: 0.65rem;
}

.program-form label {
    font-size: 0.86rem;
    font-weight: 700;
    color: #1f2734;
}

.program-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #ffffff;
    color: #1f2734;
    font: inherit;
    padding: 0.75rem 0.9rem;
}

.program-form input::placeholder {
    color: #8a94a5;
}

.program-form input:focus-visible {
    outline: 2px solid rgba(239, 71, 35, 0.5);
    outline-offset: 2px;
}

.daily-juice-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 1.1rem;
    align-items: start;
}

.daily-juice-today-card {
    gap: 0.65rem;
}

.daily-juice-today-visual {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 8.5 / 11;
    min-height: 0;
    border-radius: calc(var(--radius-md) - 6px);
    border: 1px solid rgba(27, 43, 68, 0.12);
    background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.45), transparent 35%),
        linear-gradient(145deg, #f8ede6 0%, #fff7f3 55%, #f6e6dc 100%);
    padding: clamp(0.45rem, 1vw, 0.7rem);
    box-shadow: 0 10px 28px rgba(18, 28, 44, 0.12);
}

.daily-juice-today-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: calc(var(--radius-md) - 10px);
    background: #ffffff;
    display: block;
}

.daily-juice-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.programs-hero {
    background:
        radial-gradient(circle at 12% 15%, rgba(239, 71, 35, 0.15), transparent 33%),
        radial-gradient(circle at 88% 4%, rgba(252, 190, 92, 0.16), transparent 27%),
        linear-gradient(180deg, #fffdf8 0%, #fff6ef 100%);
}

.programs-heading {
    justify-items: center;
    text-align: center;
    margin: 0 auto 1.8rem;
}

.programs-heading h1 {
    max-width: none;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.programs-intro {
    margin: 0;
    max-width: 70ch;
    color: #5b667a;
}

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

.programs-group-card {
    align-content: start;
}

.programs-group-card h3 {
    margin: 0;
}

.programs-list-clean {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.46rem;
}

.programs-list-clean li {
    color: #4a5569;
}

.membership-form {
    margin-top: 1.2rem;
    display: grid;
    gap: 1rem;
}

.form-section {
    display: grid;
    gap: 0.75rem;
    padding: var(--space-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff, #fffefe);
}

.form-section h3 {
    font-size: 1.1rem;
}

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

.form-grid label {
    grid-column: span 1;
    font-size: 0.86rem;
    font-weight: 700;
    color: #1f2734;
}

.form-grid input {
    grid-column: span 1;
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #ffffff;
    color: #1f2734;
    font: inherit;
    padding: 0.72rem 0.9rem;
}

.form-grid input:focus-visible {
    outline: 2px solid rgba(239, 71, 35, 0.5);
    outline-offset: 2px;
}

.gallery-intro {
    margin-bottom: 1.2rem;
    max-width: 66ch;
}

/* ── Giving Page ── */
.giving-hero {
    padding: 5rem 0 5rem;
    background:
        radial-gradient(circle at 10% 20%, rgba(239, 71, 35, 0.12), transparent 40%),
        linear-gradient(180deg, #fffdf8 0%, #fff6ef 100%);
}

.giving-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.giving-hero-text {
    display: grid;
    gap: 1rem;
    align-content: start;
    text-align: center;
    justify-items: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.giving-hero-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0;
}

.giving-hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.giving-hero-desc {
    color: #5b667a;
    line-height: 1.7;
    margin: 0;
    max-width: 56ch;
}

.giving-backabuddy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background-color: #ef4723;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.88rem 1.8rem;
    border-radius: 100px;
    text-decoration: none;
    justify-self: center;
    transition: background-color 0.2s, transform 0.15s;
}

.giving-backabuddy-btn:hover {
    background-color: #d63a17;
    transform: translateY(-2px);
}

.giving-hero-img-wrap {
    display: grid;
    gap: 0.65rem;
}

.giving-hero-img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 580px;
    border-radius: 0;
}

.giving-hero-caption {
    font-size: 0.8rem;
    color: #7a8599;
    text-align: center;
    margin: 0;
    padding: 0.6rem 0 1.4rem;
}

.giving-hero-caption a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.giving-hero-caption a:hover {
    text-decoration: underline;
}

/* Details */
.giving-details-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fffdf8 0%, #fff6ef 100%);
}

.giving-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.giving-bank-card,
.giving-message-card {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
}

.giving-card-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 0 0 0.5rem;
}

.giving-bank-card h2,
.giving-message-card h2 {
    font-size: 1.45rem;
    margin: 0 0 1.4rem;
}

.giving-bank-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.giving-bank-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border);
    gap: 1rem;
}

.giving-bank-list li:last-child {
    border-bottom: none;
}

.giving-bank-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #5b667a;
}

.giving-bank-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2734;
    text-align: right;
}

.giving-bank-value--highlight {
    font-size: 1.3rem;
    color: var(--color-accent);
}

.giving-message-card p {
    color: #4a5569;
    line-height: 1.7;
    margin: 0 0 0.9rem;
}

.giving-message-card p:last-child {
    margin: 0;
}

/* Needs */
.giving-needs-section {
    padding: 5rem 0;
    background: #ffffff;
}

.giving-needs-heading {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.giving-needs-heading h2 {
    margin: 0.3rem 0 0.7rem;
}

.giving-needs-sub {
    color: #5b667a;
    font-size: 1rem;
    margin: 0;
}

.giving-needs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.giving-need-card {
    background: linear-gradient(160deg, #fffcf9, #fff6ef);
    border: 1px solid #f0ddd0;
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
    display: grid;
    gap: 0.6rem;
    align-content: start;
    transition: transform 0.2s, box-shadow 0.2s;
}

.giving-need-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(239,71,35,0.1);
}

.giving-need-icon {
    width: 52px;
    height: 52px;
    background: rgba(239,71,35,0.1);
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--color-accent);
    margin-bottom: 0.4rem;
}

.giving-need-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

.giving-need-card p {
    color: #5b667a;
    font-size: 0.92rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact */
.giving-contact-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(160deg, #0f0804 0%, #1a0d07 50%, #0f0804 100%);
}

.giving-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.giving-contact-text .section-label {
    color: rgba(255,255,255,0.5);
}

.giving-contact-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #ffffff;
    margin: 0.3rem 0 1rem;
}

.giving-contact-text p {
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin: 0 0 1.6rem;
}

.giving-email-display {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    color: rgba(255,255,255,0.5);
}

.giving-email-btn {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.giving-email-btn:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.giving-cta-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 2.4rem 2rem;
    display: grid;
    gap: 0.7rem;
}

.giving-cta-card h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin: 0;
}

.giving-cta-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.giving-cta-compose {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--color-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 0.72rem 1.5rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.giving-cta-compose:hover {
    background: #d63a17;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .giving-details-grid,
    .giving-needs-grid,
    .giving-contact-inner {
        grid-template-columns: 1fr;
    }

    .giving-hero {
        padding: 3rem 0 0;
    }
}

/* ── Merchandise Page ── */
.merch-hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(160deg, #080503 0%, #130a05 50%, #080503 100%);
    position: relative;
    overflow: hidden;
}

.merch-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(239, 71, 35, 0.2), transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(255, 160, 60, 0.1), transparent 50%);
}

.merch-hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.merch-hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0.6rem 0 1.1rem;
}

.merch-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 44ch;
    line-height: 1.65;
    margin: 0;
}

.merch-section {
    background: #0c0806;
    padding: 3rem 0 5rem;
}

.merch-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.merch-filter {
    min-height: 38px;
    padding: 0.45rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.merch-filter:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.merch-filter.is-active {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
    box-shadow: 0 4px 16px rgba(239, 71, 35, 0.4);
}

.merch-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.merch-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #18100a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.merch-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
    border-color: rgba(239, 71, 35, 0.38);
}

.merch-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.merch-photo::after {
    content: "YFC";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    user-select: none;
}

.merch-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(239, 71, 35, 0.88);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    z-index: 1;
}

.merch-info {
    padding: 1.2rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.merch-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.merch-info p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.55;
}

.merch-sizes {
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--color-gold) !important;
    letter-spacing: 0.08em;
}

.merch-info .button {
    margin-top: auto;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 0.85rem;
    text-align: center;
}

/* Merch photo backgrounds */
.merch-photo-hoodie-black {
    background:
        radial-gradient(ellipse at 40% 28%, rgba(110, 65, 20, 0.55), transparent 52%),
        radial-gradient(ellipse at 72% 78%, rgba(239, 71, 35, 0.2), transparent 45%),
        linear-gradient(165deg, #1c1008 0%, #0d0904 60%, #161008 100%);
}

.merch-photo-hoodie-white {
    background:
        radial-gradient(ellipse at 50% 28%, rgba(255, 248, 238, 0.95), transparent 58%),
        radial-gradient(ellipse at 18% 75%, rgba(230, 215, 195, 0.55), transparent 50%),
        linear-gradient(165deg, #f5ece0 0%, #ede0cc 60%, #f0e8da 100%);
}

.merch-photo-hoodie-white::after {
    color: rgba(0, 0, 0, 0.06);
}

.merch-photo-tshirt-normal {
    background:
        radial-gradient(ellipse at 38% 28%, rgba(40, 75, 120, 0.65), transparent 52%),
        radial-gradient(ellipse at 70% 78%, rgba(15, 40, 85, 0.55), transparent 45%),
        linear-gradient(165deg, #0e1c30 0%, #091525 60%, #0d1a2e 100%);
}

.merch-photo-tshirt-baggy {
    background:
        radial-gradient(ellipse at 38% 28%, rgba(110, 18, 30, 0.6), transparent 52%),
        radial-gradient(ellipse at 68% 76%, rgba(75, 10, 20, 0.5), transparent 45%),
        linear-gradient(165deg, #220810 0%, #180610 60%, #1e0810 100%);
}

.merch-photo-sweater-black {
    background:
        radial-gradient(ellipse at 35% 25%, rgba(40, 50, 75, 0.5), transparent 52%),
        radial-gradient(ellipse at 72% 76%, rgba(18, 18, 35, 0.6), transparent 45%),
        linear-gradient(165deg, #0e0e18 0%, #080810 60%, #0c0c16 100%);
}

.merch-photo-sweater-grey {
    background:
        radial-gradient(ellipse at 40% 28%, rgba(145, 138, 128, 0.6), transparent 52%),
        radial-gradient(ellipse at 68% 76%, rgba(80, 76, 70, 0.4), transparent 45%),
        linear-gradient(165deg, #3a3530 0%, #2e2a26 60%, #38342e 100%);
}

.inline-link {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-link:hover {
    color: #c83f20;
}

.contact-social {
    margin-top: 1.1rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ── Site Footer ── */
.social-section {
    padding: 3.2rem 0 2.6rem;
    background:
        radial-gradient(ellipse at 12% 0%, rgba(255, 173, 102, 0.16), transparent 42%),
        radial-gradient(ellipse at 88% 8%, rgba(99, 102, 241, 0.11), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-top: 1px solid #e9edf4;
    border-bottom: 1px solid #e9edf4;
}

.social-heading {
    text-align: center;
    margin: 0 auto 1.35rem;
    max-width: 620px;
}

.social-kicker {
    margin: 0;
    color: var(--color-gold);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-heading h2 {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: -0.02em;
    color: #172033;
}

.social-sub {
    margin: 0;
    color: #5f6d84;
    font-size: 0.96rem;
    line-height: 1.6;
}

.site-footer {
    padding: 0.9rem 0 1rem;
    background: #090a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
    display: flex;
    justify-content: center;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.95rem;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #dde5f1;
    box-shadow: 0 18px 42px rgba(24, 35, 58, 0.11);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    border: 1px solid #d7deea;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    color: #1f2937;
    box-shadow: 0 8px 16px rgba(14, 24, 42, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-social-link::before {
    content: "";
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: saturate(1.1);
}

.footer-social-link svg,
.footer-social-link span {
    display: none;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    transform: translateY(-4px) scale(1.03);
    border-color: #c3cfdf;
    box-shadow: 0 14px 28px rgba(14, 24, 42, 0.2);
}

.footer-social-link[aria-label="Instagram"] {
    background: linear-gradient(180deg, #fff2f6 0%, #ffe7ef 100%);
    border-color: #f7bfd0;
}

.footer-social-link[aria-label="Facebook"] {
    background: linear-gradient(180deg, #f0f6ff 0%, #e5f0ff 100%);
    border-color: #bdd5ff;
}

.footer-social-link[aria-label="TikTok"] {
    background: linear-gradient(180deg, #f5f7fb 0%, #eceff5 100%);
    border-color: #cfd6e2;
}

.footer-social-link[aria-label="Truth Social"] {
    background: linear-gradient(180deg, #f2eeff 0%, #e9e1ff 100%);
    border-color: #ccb8ff;
}

.footer-social-link[aria-label="X"] {
    background: linear-gradient(180deg, #f5f7fb 0%, #eceff5 100%);
    border-color: #cfd6e2;
}

.footer-social-link[aria-label="Patreon"] {
    background: linear-gradient(180deg, #fff1f2 0%, #ffe6e9 100%);
    border-color: #ffc1c7;
}

.footer-social-link[aria-label="Pinterest"] {
    background: linear-gradient(180deg, #fff0f3 0%, #ffe5eb 100%);
    border-color: #f8bec9;
}

.footer-social-link[aria-label="Threads"] {
    background: linear-gradient(180deg, #f5f7fb 0%, #eceff5 100%);
    border-color: #cfd6e2;
}

.footer-social-link[aria-label="Spotify"] {
    background: linear-gradient(180deg, #ecfbf2 0%, #e0f9ea 100%);
    border-color: #b6e9c8;
}

.footer-social-link[aria-label="Instagram"]::before {
    background-image: url("https://cdn.simpleicons.org/instagram/E4405F");
}

.footer-social-link[aria-label="Facebook"]::before {
    background-image: url("https://cdn.simpleicons.org/facebook/1877F2");
}

.footer-social-link[aria-label="TikTok"]::before {
    background-image: url("https://cdn.simpleicons.org/tiktok/111111");
}

.footer-social-link[aria-label="Truth Social"]::before {
    content: "TS";
    background-image: none;
    width: auto;
    height: auto;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #6c47ff;
}

.footer-social-link[aria-label="X"]::before {
    background-image: url("https://cdn.simpleicons.org/x/111111");
}

.footer-social-link[aria-label="Patreon"]::before {
    background-image: url("https://cdn.simpleicons.org/patreon/FF424D");
}

.footer-social-link[aria-label="Pinterest"]::before {
    background-image: url("https://cdn.simpleicons.org/pinterest/E60023");
}

.footer-social-link[aria-label="Threads"]::before {
    background-image: url("https://cdn.simpleicons.org/threads/111111");
}

.footer-social-link[aria-label="Spotify"]::before {
    background-image: url("https://cdn.simpleicons.org/spotify/1DB954");
}

.footer-note {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

@media (max-width: 640px) {
    .social-section {
        padding: 2.2rem 0 1.6rem;
    }

    .social-heading {
        margin-bottom: 1.1rem;
    }

    .social-heading h2 {
        font-size: 1.45rem;
    }

    .social-sub {
        font-size: 0.9rem;
    }

    .footer-social {
        border-radius: 16px;
        width: 100%;
        justify-content: center;
        padding: 0.85rem;
        gap: 0.72rem;
    }

    .footer-social-link {
        width: 48px;
        height: 48px;
    }

    .footer-social-link::before {
        width: 20px;
        height: 20px;
    }

    .footer-note {
        font-size: 0.8rem;
    }
}

/* ── Contact Page (Get In Touch) ── */
.ct-hero {
    padding: 5.5rem 0 4.5rem;
    background: linear-gradient(150deg, #0c0704 0%, #1a0a05 55%, #0c0704 100%);
    position: relative;
    overflow: hidden;
}

.ct-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 55%, rgba(239, 71, 35, 0.25), transparent 52%),
        radial-gradient(ellipse at 82% 18%, rgba(255, 155, 50, 0.12), transparent 48%);
    pointer-events: none;
}

.ct-hero .section-label {
    position: relative;
    z-index: 1;
    color: rgba(239, 71, 35, 0.9);
}

.ct-hero h1 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.1;
    margin: 0.5rem 0 1.1rem;
}

.ct-hero-sub {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.05rem;
    max-width: 44ch;
    line-height: 1.72;
    margin: 0;
}

.ct-body {
    padding: 3.5rem 0 2.2rem;
    background: transparent;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 0;
}

.ct-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.8rem 1.8rem 1.8rem 1.6rem;
    background: #ffffff;
    border: 1px solid rgba(27, 43, 68, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(18, 28, 44, 0.07);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ct-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(18, 28, 44, 0.13);
    border-color: rgba(239, 71, 35, 0.3);
}

.ct-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ct-icon-email {
    background: linear-gradient(135deg, #fff0eb, #ffd9cc);
    color: var(--color-gold);
}

.ct-icon-whatsapp {
    background: linear-gradient(135deg, #e8faf0, #c3f0d6);
    color: #25d366;
}

.ct-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.22rem;
}

.ct-card-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8a94a5;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ct-card-value {
    font-size: 0.97rem;
    font-weight: 700;
    color: #1b2432;
    line-height: 1.3;
}

.ct-card-arrow {
    font-size: 1.2rem;
    color: var(--color-gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--transition), transform var(--transition);
}

.ct-card:hover .ct-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.ct-social-section {
    text-align: center;
    padding-top: 1rem;
}

.ct-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a94a5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ct-spotify-frame-wrap {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(18, 25, 40, 0.16);
    border: 1px solid #e6ebf4;
    background: #ffffff;
}

.ct-spotify-frame {
    display: block;
    width: 100%;
    height: 352px;
    border: 0;
}

@media (max-width: 768px) {
    .ct-grid {
        grid-template-columns: 1fr;
    }

    .ct-card {
        padding: 1.4rem;
    }

    .ct-spotify-frame-wrap {
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        border: 0;
        background: transparent;
    }

    .ct-spotify-frame {
        height: 320px;
        border-radius: 0 !important;
    }
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
    text-decoration: none;
    animation: scrollBounce 2.2s ease-in-out infinite;
}

.scroll-dot {
    display: block;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.scroll-indicator::after {
    content: "";
    display: block;
    width: 1.5px;
    height: 38px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), transparent);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(9px); opacity: 0.6; }
}

/* ── Stats Strip ── */
.stats-strip {
    padding: 2.2rem 0;
    background: linear-gradient(135deg, #1a0e08 0%, #2e1508 50%, #1a0e08 100%);
    border-top: 1px solid rgba(239, 71, 35, 0.28);
    border-bottom: 1px solid rgba(239, 71, 35, 0.28);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ef4723;
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ── Gallery Section ── */
.gallery-section {
    background: #100b06;
}

.gallery-section-heading {
    width: min(100%, 700px);
    text-align: center;
    justify-items: center;
    margin: 0 auto 2rem;
}

.gallery-section-heading h2 {
    color: #ffffff;
    max-width: 14ch;
}

.gallery-section-heading .section-label {
    font-size: clamp(1.2rem, 2.5vw, 1.75rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.05;
}

.gallery-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    max-width: 54ch;
    text-align: center;
    margin: 0.25rem auto 0;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.4rem;
}

.gallery-filter {
    min-height: 38px;
    padding: 0.45rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-filter:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(0);
}

.gallery-filter.is-active {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
    box-shadow: 0 4px 16px rgba(239, 71, 35, 0.45);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.gallery-item-link {
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
}

@media (hover: none) {
    .gallery-item:hover {
        transform: none;
        box-shadow: none;
    }
}

.gallery-thumb {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-end;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.1) 55%, transparent 100%);
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.2rem;
}

.gallery-cat-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.gallery-caption {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.4;
    transform: translateY(6px);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: transform 280ms ease, opacity 280ms ease, max-height 280ms ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
    max-height: 3rem;
}

.gallery-open-album {
    margin-top: 0.3rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.84);
}

/* Gallery gradient backgrounds */
.outreach-bg {
    background: linear-gradient(135deg, #f97316 0%, #ef4723 45%, #dc2626 100%);
}

.outreach-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 25%, rgba(255, 210, 100, 0.35), transparent 50%),
        radial-gradient(circle at 15% 75%, rgba(239, 71, 35, 0.3), transparent 42%);
}

.jrt-bg {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 45%, #3730a3 100%);
}

.jrt-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 20%, rgba(167, 139, 250, 0.45), transparent 50%),
        radial-gradient(circle at 10% 75%, rgba(55, 48, 163, 0.3), transparent 42%);
}

.tours-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 45%, #047857 100%);
}

.tours-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.4), transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(4, 120, 87, 0.3), transparent 40%);
}

.games-bg {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #d97706 100%);
}

.games-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(255, 230, 100, 0.45), transparent 50%),
        radial-gradient(circle at 80% 75%, rgba(217, 119, 6, 0.3), transparent 42%);
}

.atmosphere-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 45%, #1d4ed8 100%);
}

.atmosphere-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 65% 20%, rgba(147, 197, 253, 0.4), transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(29, 78, 216, 0.3), transparent 42%);
}

.leadership-bg {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 45%, #be123c 100%);
}

.leadership-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(253, 164, 175, 0.4), transparent 50%),
        radial-gradient(circle at 15% 75%, rgba(190, 18, 60, 0.3), transparent 42%);
}

.yfcw-bg {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 45%, #b45309 100%);
}

.yfcw-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(252, 211, 77, 0.42), transparent 50%),
        radial-gradient(circle at 18% 76%, rgba(180, 83, 9, 0.32), transparent 42%);
}

.biblestudy-bg {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 45%, #7c3aed 100%);
}

.biblestudy-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(196, 181, 253, 0.45), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(109, 40, 217, 0.3), transparent 42%);
}

.community-bg {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 45%, #be185d 100%);
}

.community-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(249, 168, 212, 0.45), transparent 50%),
        radial-gradient(circle at 15% 80%, rgba(190, 24, 93, 0.3), transparent 42%);
}

.more-bg {
    background: linear-gradient(135deg, #ef4723 0%, #f97316 45%, #fb923c 100%);
}

.more-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 230, 160, 0.35), transparent 50%),
        radial-gradient(circle at 80% 75%, rgba(239, 71, 35, 0.3), transparent 42%);
}

/* ── CTA Section ── */
.cta-section {
    padding: var(--space-section) 0;
    background: linear-gradient(135deg, #0e0806 0%, #1f0c04 50%, #0e0806 100%);
    border-top: 1px solid rgba(239, 71, 35, 0.18);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(239, 71, 35, 0.2), transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(255, 160, 80, 0.14), transparent 45%);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.6rem);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.cta-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.08rem;
    max-width: 52ch;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.button-cta-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.32);
    box-shadow: none;
}

.button-cta-outline:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.album-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #130b06 0%, #2a1409 55%, #130b06 100%);
    border-bottom: 1px solid rgba(239, 71, 35, 0.22);
}

.album-hero .section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.album-hero h1 {
    color: #ffffff;
    max-width: 16ch;
}

.album-hero p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 60ch;
}

.album-section {
    background: #0f0a06;
}

.album-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.album-count {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.album-filter-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.album-filter-controls label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
}

.album-filter-select {
    min-height: 36px;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.85rem;
}

.album-filter-select:focus {
    outline: none;
    border-color: rgba(239, 71, 35, 0.7);
}

.album-filter-select option {
    color: #111827;
}

.album-load-more {
    min-height: 42px;
    padding: 0.65rem 1rem;
    box-shadow: none;
}

.album-load-wrap {
    display: flex;
    justify-content: center;
    margin-top: 0.8rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.album-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #1b120c;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    content-visibility: auto;
    contain-intrinsic-size: 0 280px;
    contain: layout style;
}

.album-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
    border-color: rgba(239, 71, 35, 0.45);
}

.album-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #120c08;
}

.album-index {
    position: absolute;
    left: 0.6rem;
    bottom: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
}

/* ── Gallery Album (Firebase-powered) ── */
.album-hero-desc {
    color: rgba(255, 255, 255, 0.72);
    max-width: 56ch;
}

.btn-album-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.4rem;
    padding: 0.55rem 1.2rem;
    border: 1.5px solid rgba(239, 71, 35, 0.55);
    border-radius: var(--radius-sm);
    background: rgba(239, 71, 35, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}
.btn-album-admin:hover {
    background: rgba(239, 71, 35, 0.25);
    border-color: var(--accent);
    color: #fff;
}

/* Tabs */
.album-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}
.album-tab {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
}
.album-tab:hover {
    border-color: rgba(239, 71, 35, 0.55);
    color: #fff;
}
.album-tab.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Loading state */
.album-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 3rem 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}
.album-spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid rgba(239, 71, 35, 0.25);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.album-empty {
    text-align: center;
    padding: 3rem 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
}

/* Photo grid — masonry columns */
.album-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}
.album-photo-item {
    position: relative;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1b120c;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.album-photo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    border-color: rgba(239, 71, 35, 0.5);
}
.album-photo-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: #120c08;
}
.album-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.8rem;
    gap: 0.3rem;
}
.album-photo-item:hover .album-photo-overlay,
.album-photo-item:focus .album-photo-overlay {
    opacity: 1;
}
.album-photo-caption {
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.3;
    margin: 0;
}
.album-photo-cat {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    align-self: flex-start;
}
.album-photo-delete {
    margin-top: 0.3rem;
    align-self: flex-start;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    background: rgba(220, 38, 38, 0.85);
    border: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}
.album-photo-delete:hover { background: #dc2626; }

/* Admin panel */
.album-admin-panel {
    background: #1a0f09;
    border-bottom: 1px solid rgba(239, 71, 35, 0.25);
    padding: 1.5rem 0;
}
.album-admin-inner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
}
.album-admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}
.album-admin-header h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0;
}
.album-admin-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}
.album-admin-close:hover { color: #fff; }

.album-upload-form {
    display: grid;
    gap: 0.7rem;
}
.album-upload-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: -0.3rem;
}
.album-upload-select,
.album-upload-input {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color var(--transition);
}
.album-upload-select:focus,
.album-upload-input:focus {
    outline: none;
    border-color: var(--accent);
}
.album-upload-select option { background: #1a0f09; color: #fff; }
.album-upload-file {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

/* Upload progress */
.album-progress-row {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.album-progress-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.album-progress-bar-wrap {
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
}
.album-progress-fill {
    height: 100%;
    width: 0;
    background: var(--accent);
    border-radius: 999px;
    transition: width 0.2s ease;
}
.album-progress-status {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    min-width: 54px;
    text-align: right;
}
.album-progress-done .album-progress-status { color: #4ade80; }
.album-progress-error .album-progress-status { color: #f87171; }

.album-upload-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Lightbox */
.album-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(0, 0, 0, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}
.album-lb-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    padding: 0.2rem 0.5rem;
    transition: color var(--transition);
}
.album-lb-close:hover { color: #fff; }
.album-lb-prev,
.album-lb-next {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.album-lb-prev:hover,
.album-lb-next:hover { background: rgba(239, 71, 35, 0.4); }
.album-lb-img-wrap {
    flex: 1;
    max-width: min(90vw, 900px);
    text-align: center;
}
.album-lb-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}
.album-lb-caption {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin-top: 0.7rem;
}

/* Password modal actions row */
.pw-modal-actions {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}

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

@media (max-width: 768px) {
    .site-header {
        padding: 0.8rem 0;
    }

    section {
        padding: clamp(2.8rem, 8vw, 4rem) 0;
    }

    .container {
        width: min(calc(100% - 1.5rem), var(--container-width));
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .site-nav {
        position: fixed;
        top: 84px;
        left: 0.75rem;
        right: 0.75rem;
        display: grid;
        gap: 0.2rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(27, 43, 68, 0.14);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .site-nav a {
        width: 100%;
        padding: 0.8rem 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .nav-dropdown-menu {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        min-width: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(239, 71, 35, 0.04);
        border-left: 2px solid rgba(239, 71, 35, 0.3);
        padding: 0.2rem 0 0.2rem 0.5rem;
        margin-top: 0.2rem;
    }

    .nav-dropdown-menu.is-open {
        display: block;
        transform: none;
    }

    .nav-dropdown-menu a {
        margin: 0;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .nav-cta {
        margin: 0.4rem 0 0;
    }

    .hero-section {
        min-height: calc(100vh - 78px);
        padding: 4.5rem 0;
    }

    .home-spotify-card {
        padding: 0.75rem;
        border-radius: 16px;
    }

    .hero-content h1 {
        max-width: none;
    }

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

    .branches-showcase {
        padding: 1.4rem;
        border-radius: 22px;
    }

    .branches-showcase::after {
        inset: 0.7rem;
        border-radius: 18px;
    }

    .branches-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .branch-pill {
        min-height: 72px;
        justify-content: flex-start;
        padding: 0.9rem 0.85rem;
        font-size: 0.9rem;
        line-height: 1.25;
        text-align: left;
    }

    .content-grid,
    .daily-juice-layout,
    .programs-group-grid,
    .ministry-layout,
    .ministry-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .section-heading {
        margin-bottom: 1.4rem;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        padding: 1.4rem 0.8rem;
    }

    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-item:nth-child(3),
    .stat-item:last-child {
        border-bottom: none;
    }

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

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

    .album-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .daily-juice-verse-tools {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.7rem 0;
    }

    .brand {
        max-width: 225px;
        font-size: 0.9rem;
        gap: 0.45rem;
    }

    .brand-logo {
        width: auto;
        height: 30px;
    }

    .site-nav {
        top: 78px;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
    }

    .media-card {
        padding: 1rem;
    }

    .button,
    button {
        min-height: 48px;
    }

    p {
        font-size: 0.98rem;
    }

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

    .merch-product-grid {
        grid-template-columns: 1fr;
    }

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

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .album-tabs {
        gap: 0.35rem;
    }
    .album-tab {
        padding: 0.42rem 0.75rem;
        font-size: 0.78rem;
    }
    .album-lb-prev,
    .album-lb-next {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }
    .album-progress-row {
        grid-template-columns: 1fr 1.5fr auto;
    }
    .album-admin-inner {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .album-lb-prev,
    .album-lb-next {
        display: none;
    }
    .album-lb-img-wrap {
        max-width: 100%;
    }
    .album-progress-row {
        grid-template-columns: 1fr auto;
    }
    .album-progress-bar-wrap {
        display: none;
    }
}

/* ===== EVENTS CALENDAR ===== */
.events-page-section {
    padding: 3rem 0 4rem;
    background: #f5f6fa;
    min-height: 70vh;
}

.calendar-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.75rem;
    max-width: 660px;
    margin: 0 auto;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.cal-month-label {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}

.cal-nav-btn {
    background: none;
    border: 1.5px solid #e8e8e8;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    line-height: 1;
}

.cal-nav-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(239, 71, 35, 0.05);
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.cal-branch-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.65rem;
    margin: 0 0 0.7rem;
}

.cal-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: #666;
}

.cal-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #333;
    cursor: default;
    position: relative;
    transition: background 0.15s;
}

.cal-day.empty {
    background: transparent;
}

.cal-day:not(.empty):hover {
    background: rgba(239, 71, 35, 0.1);
}

.cal-day.today:hover {
    background: #d93e1e;
}

.cal-day.today {
    background: var(--color-gold);
    color: #fff;
    font-weight: 800;
}

.cal-day.today .day-dot {
    background: #fff;
    opacity: 0.8;
}

.cal-day.has-event:not(.today) {
    background: rgba(239, 71, 35, 0.08);
    color: #1a1a2e;
    font-weight: 600;
}

.day-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.day-dot-wrap {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

/* Events list below calendar */
.cal-events-list-wrap {
    max-width: 660px;
    margin: 1.75rem auto 0;
}

.cal-events-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.cal-events-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0;
}

#cal-branch-filter {
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
    font-family: inherit;
    background: #fff;
    color: #444;
    min-height: 40px;
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #7f8da0 50%),
        linear-gradient(135deg, #7f8da0 50%, transparent 50%);
    background-position:
        calc(100% - 16px) calc(50% - 2px),
        calc(100% - 11px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2rem;
}

#cal-branch-filter:focus {
    outline: none;
    border-color: var(--color-gold);
}

.cal-event-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    margin-bottom: 0.6rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.cal-event-badge {
    min-width: 46px;
    text-align: center;
    background: var(--color-gold);
    color: #fff;
    border-radius: 10px;
    padding: 0.35rem 0.4rem 0.25rem;
    line-height: 1.2;
}

.cal-event-badge .badge-day {
    font-size: 1.3rem;
    font-weight: 800;
    display: block;
}

.cal-event-badge .badge-dow {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.cal-event-info strong {
    display: block;
    font-size: 0.97rem;
    color: #1a1a2e;
    font-weight: 700;
}

.cal-event-info span {
    font-size: 0.83rem;
    color: #777;
}

.cal-event-desc {
    display: block;
    margin-top: 0.22rem;
}

.cal-event-time {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: #4f5d73;
}

.cal-event-branch {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.76rem;
    font-weight: 700;
    margin-top: 0.2rem;
    color: #444;
}

.cal-event-branch-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.cal-no-events {
    text-align: center;
    padding: 1.5rem 0;
    color: #aaa;
    font-size: 0.92rem;
}

/* Edit Events bar */
.edit-events-bar {
    max-width: 660px;
    margin: 1.25rem auto 0;
    display: flex;
    justify-content: flex-end;
}

.btn-edit-events {
    background: none;
    border: 1.5px solid #ddd;
    color: #999;
    font-size: 0.82rem;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-edit-events:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* Password modal */
.pw-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.pw-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.pw-modal-overlay.active {
    display: flex;
}

.pw-modal-box {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    width: 340px;
    max-width: 92vw;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.day-modal-box {
    width: 400px;
    padding: 1.75rem 1.75rem 1.5rem;
}

.day-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.day-modal-header h2 {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.day-modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    padding: 0 0.25rem;
    font-family: inherit;
}

.day-modal-close:hover {
    color: #333;
}

.day-modal-event {
    border-left: 3px solid var(--color-gold);
    padding: 0.65rem 0.9rem;
    background: rgba(239, 71, 35, 0.05);
    border-radius: 0 10px 10px 0;
    margin-bottom: 0.6rem;
}

.day-modal-event strong {
    display: block;
    font-size: 0.97rem;
    color: #1a1a2e;
    font-weight: 700;
}

.day-modal-event span {
    font-size: 0.84rem;
    color: #777;
    display: block;
    margin-top: 0.2rem;
}

.day-modal-empty {
    color: #bbb;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.75rem 0;
    margin: 0;
}

.pw-modal-box h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.35rem;
}

.pw-modal-box p {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 1.1rem;
}

.pw-modal-box input[type="password"] {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
    margin-bottom: 0.6rem;
    transition: border-color 0.2s;
}

.pw-modal-box input[type="password"]:focus {
    border-color: var(--color-gold);
}

.pw-modal-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
}

.pw-modal-actions button {
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
}

.pw-btn-cancel {
    background: #f1f1f1;
    color: #666;
}

.pw-btn-submit {
    background: var(--color-gold);
    color: #fff;
}

.pw-error-msg {
    color: #e53e3e;
    font-size: 0.82rem;
    margin-top: 0.5rem;
    display: none;
}

/* Edit panel */
.edit-panel {
    display: none;
    background: #f5f6fa;
    border-top: 2px solid var(--color-gold);
    padding: 2.5rem 0 3rem;
}

.edit-panel.active {
    display: block;
}

.edit-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 660px;
    margin: 0 auto 1.5rem;
}

.edit-panel-header h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a2e;
}

.edit-branch-chip {
    display: inline-block;
    margin-left: 0.45rem;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    vertical-align: middle;
}

.btn-close-edit {
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.45rem 1.1rem;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
}

.add-event-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    max-width: 660px;
    margin: 0 auto 1.5rem;
    align-items: center;
}

.add-event-form input {
    flex: 1;
    min-width: 130px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.add-event-form select,
#pw-branch {
    flex: 1;
    min-width: 130px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.add-event-form select:focus,
#pw-branch:focus {
    border-color: var(--color-gold);
}

.add-event-form input:focus {
    border-color: var(--color-gold);
}

.add-event-form button {
    background: var(--color-gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.65rem 1.3rem;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.edit-event-list {
    max-width: 660px;
    margin: 0 auto;
}

.edit-event-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid transparent;
}

.edit-event-row-info strong {
    font-size: 0.95rem;
    color: #1a1a2e;
    display: block;
    font-weight: 700;
}

.edit-event-row-info span {
    font-size: 0.8rem;
    color: #888;
}

.edit-event-desc-line {
    display: block;
    margin-top: 0.22rem;
    color: #666;
}

.edit-event-meta {
    display: block;
    margin-top: 0.2rem;
    color: #6e7a8f;
}

.edit-event-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
}

.btn-edit-event,
.btn-edit-save,
.btn-edit-cancel {
    border-radius: 8px;
    padding: 0.3rem 0.75rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    border: 1.5px solid transparent;
}

.btn-edit-event {
    background: rgba(56, 103, 214, 0.08);
    border-color: #3867d6;
    color: #3867d6;
}

.btn-edit-save {
    background: rgba(15, 118, 110, 0.1);
    border-color: #0f766e;
    color: #0f766e;
}

.btn-edit-cancel {
    background: rgba(107, 114, 128, 0.08);
    border-color: #6b7280;
    color: #4b5563;
}

.edit-inline-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    flex: 1;
}

.edit-inline-form input {
    width: 100%;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 0.45rem 0.62rem;
    font-size: 0.82rem;
    font-family: inherit;
    background: #fff;
}

.edit-inline-name,
.edit-inline-desc {
    grid-column: span 2;
}

.btn-delete-event {
    background: none;
    border: 1.5px solid #e53e3e;
    color: #e53e3e;
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
}

.btn-delete-event:hover {
    background: #e53e3e;
    color: #fff;
}

@media (max-width: 600px) {
    .calendar-card {
        padding: 1.25rem 1rem;
    }

    .cal-day {
        font-size: 0.78rem;
        border-radius: 7px;
    }

    .day-dot {
        bottom: 3px;
    }

    .add-event-form {
        flex-direction: column;
    }

    .cal-events-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    #cal-branch-filter {
        width: 100%;
        min-height: 46px;
        border-radius: 12px;
        font-size: 0.92rem;
        padding: 0.62rem 2.2rem 0.62rem 0.85rem;
        box-shadow: 0 6px 14px rgba(20, 30, 46, 0.08);
        border-color: rgba(27, 43, 68, 0.22);
    }

    .add-event-form input,
    .add-event-form select,
    .add-event-form button {
        width: 100%;
        min-width: unset;
    }

    .edit-event-row {
        flex-direction: column;
        align-items: stretch;
    }

    .edit-event-actions {
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .edit-inline-form {
        grid-template-columns: 1fr;
    }

    .edit-inline-name,
    .edit-inline-desc {
        grid-column: span 1;
    }
}

/* About page redesign */
.about-main {
    --about-ink: #1d1a16;
    --about-muted: #5b544a;
    font-family: "Bricolage Grotesque", "Segoe UI", sans-serif;
    color: var(--about-ink);
    background:
        radial-gradient(circle at 5% 8%, rgba(232, 172, 74, 0.2), transparent 36%),
        radial-gradient(circle at 94% 2%, rgba(184, 95, 47, 0.15), transparent 33%),
        linear-gradient(180deg, #fffdf8 0%, #fff6e8 58%, #fffdf8 100%);
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6.1rem) 0 clamp(2.2rem, 4vw, 3.2rem);
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.about-hero::before {
    right: -130px;
    top: -120px;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(184, 95, 47, 0.2) 0%, rgba(184, 95, 47, 0) 72%);
}

.about-hero::after {
    left: -120px;
    bottom: -180px;
    width: 350px;
    height: 350px;
    border-radius: 45%;
    transform: rotate(12deg);
    background: radial-gradient(circle, rgba(232, 172, 74, 0.28) 0%, rgba(232, 172, 74, 0) 70%);
}

.about-kicker {
    margin: 0;
    display: inline-flex;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(29, 26, 22, 0.82);
    color: #ffdd9a;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    animation: aboutRise 0.65s ease-out both;
}

.about-hero h1 {
    margin: 0.95rem 0 0.6rem;
    font-family: "Literata", Georgia, serif;
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    line-height: 1.03;
    max-width: 11ch;
    color: #2f1e14;
    letter-spacing: -0.012em;
    animation: aboutRise 0.7s ease-out 0.08s both;
}

.about-lead {
    margin: 0;
    max-width: 67ch;
    color: var(--about-muted);
    font-size: clamp(1.03rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    animation: aboutRise 0.8s ease-out 0.14s both;
}

.about-story-wrap {
    padding: 1.5rem 0 2.5rem;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 1.2rem;
}

.about-panel {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(114, 82, 53, 0.16);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(54, 33, 15, 0.08);
    padding: clamp(1.1rem, 2.4vw, 1.8rem);
    backdrop-filter: blur(7px);
}

.about-story-card {
    display: grid;
    gap: 0.95rem;
}

.about-story-card h2,
.about-pillar h2 {
    margin: 0;
    font-family: "Literata", Georgia, serif;
    font-size: clamp(1.45rem, 2.5vw, 2.1rem);
    line-height: 1.2;
    color: #2b2018;
}

.about-story-card p,
.about-highlight-card p,
.about-pillar p {
    margin: 0;
    line-height: 1.73;
    color: var(--about-muted);
}

.about-highlight-card {
    display: grid;
    align-content: start;
    gap: 0.78rem;
    background: linear-gradient(165deg, rgba(54, 33, 15, 0.96), rgba(104, 55, 28, 0.95));
    border-color: rgba(232, 172, 74, 0.36);
    color: #fff7e6;
}

.about-highlight-card h3 {
    margin: 0;
    color: #ffe0ad;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.about-highlight-card p {
    color: rgba(255, 247, 230, 0.93);
}

.about-highlight-card strong {
    color: #fff7e6;
}

.about-pillars {
    padding: 0.6rem 0 4.4rem;
}

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

.about-pillar {
    position: relative;
    display: grid;
    gap: 0.9rem;
    overflow: hidden;
}

.about-pillar::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
}

.about-pillar.mission::before {
    background: linear-gradient(90deg, #e8ac4a, #e58a42);
}

.about-pillar.vision::before {
    background: linear-gradient(90deg, #b85f2f, #f4c06a);
}

.about-main .section-label {
    color: #9d5b2b;
    letter-spacing: 0.13em;
}

.about-verse {
    display: inline-flex;
    width: fit-content;
    margin-top: 0.35rem;
    padding: 0.36rem 0.66rem;
    border-radius: 999px;
    background: rgba(232, 172, 74, 0.18);
    color: #7c4a22;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes aboutRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .about-story-grid,
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        padding-bottom: 3.4rem;
    }

    .about-hero {
        padding-top: 3.5rem;
    }
}

@media (max-width: 480px) {
    .about-panel {
        border-radius: 18px;
    }

    .about-lead,
    .about-story-card p,
    .about-highlight-card p,
    .about-pillar p {
        font-size: 0.97rem;
        line-height: 1.67;
    }
}
