/* ══════════════════════════════════════════════════════════════════
   CC Content Platform — Brand Stylesheet
   Based on carterconlon.com design tokens
   ══════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
    --navy: #12222E;
    --navy-light: #1a3345;
    --copper: #B45C3D;
    --copper-dark: #803216;
    --copper-muted: #9A492C;
    --white: #FFFFFF;
    --light-blue: #CFDDE9;
    --charcoal: #242323;
    --gray: #2E2E2E;
    --light-gray: #F2F2F2;
    --steel-blue: #4C6D87;
    --navy-blue: #20455E;

    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', 'Avenir', 'Helvetica Neue', sans-serif;

    --max-width: 1200px;
    --header-height: 72px;
}

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.site-header .container {
    max-width: 100%;
    padding-left: 90px;
    padding-right: 90px;
}

.hero-content.container {
    max-width: 100%;
    padding-left: 90px;
    padding-right: 90px;
}

/* ── Header / Navigation ─────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Transparent header over hero */
.site-header--transparent {
    background: transparent;
    border-bottom: none;
    transition: background 0.3s, border-bottom 0.3s;
}

.site-header--transparent.scrolled {
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-header--transparent.scrolled .site-logo {
    color: var(--charcoal);
}

.site-header--transparent.scrolled .nav-links a {
    color: var(--charcoal);
}

.site-header--transparent.scrolled .nav-links a:hover,
.site-header--transparent.scrolled .nav-links a.active {
    color: var(--copper);
}

.site-header--transparent.scrolled .menu-toggle span {
    background: var(--charcoal);
}

.site-header--transparent .site-logo {
    color: var(--white);
}

.site-header--transparent .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

.site-header--transparent .nav-links a:hover,
.site-header--transparent .nav-links a.active {
    color: var(--white);
}

.site-header--transparent .menu-toggle span {
    background: var(--white);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--copper);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--copper);
}

.btn-subscribe {
    background: var(--copper);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-subscribe:hover {
    background: var(--copper-dark);
    color: var(--white) !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 5px 0;
    transition: 0.3s;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 20, 40, 0.85) 0%, rgba(14, 36, 64, 0.7) 40%, rgba(20, 50, 90, 0.5) 70%, rgba(30, 60, 100, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 38%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--white);
    text-align: left;
    width: 100%;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: clamp(16px, 1.5vw, 20px);
    opacity: 0.85;
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--navy));
    z-index: 1;
    pointer-events: none;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.7;
    transition: opacity 0.2s;
    animation: bounceDown 2s infinite;
}

.hero-scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.btn-primary {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--copper-dark);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--copper);
    color: var(--copper);
    padding: 12px 34px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--copper);
    color: var(--white);
}

/* ── Sections ─────────────────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--light {
    background: var(--light-blue);
}

.section--gray {
    background: var(--light-gray);
}

.section--warm {
    background: #f7f3ef;
}

/* ── Scroll Reveal Animations ────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: var(--copper);
    margin: 16px auto 0;
}

/* ── Sermon Cards ─────────────────────────────────────────────── */
.sermon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.sermon-card {
    display: block;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.sermon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.sermon-card .card-thumb {
    aspect-ratio: 16/9;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sermon-card .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sermon-card .card-thumb .play-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: rgba(180, 92, 61, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.sermon-card:hover .play-icon { opacity: 1; }

.sermon-card .card-thumb .play-icon::after {
    content: '';
    border: 8px solid transparent;
    border-left: 14px solid white;
    margin-left: 4px;
}

.sermon-card .card-body {
    padding: 20px;
}

.sermon-card .card-body h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.sermon-card .card-body .date {
    font-size: 13px;
    color: var(--steel-blue);
}

/* ── Featured sermon play overlay ─────────────────────────────── */
.featured-image {
    position: relative;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.featured-image:hover .play-overlay {
    opacity: 1;
}

.play-icon-lg {
    width: 72px;
    height: 72px;
    background: rgba(180, 92, 61, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-icon-lg::after {
    content: '';
    border: 10px solid transparent;
    border-left: 18px solid white;
    margin-left: 6px;
    position: absolute;
}

/* ── Sermons Featured Layout ─────────────────────────────────── */
.sermons-featured {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.sermon-featured {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sermon-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.sermon-featured-thumb {
    position: relative;
    overflow: hidden;
}

.sermon-featured-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.sermon-featured-thumb .play-icon-lg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.sermon-featured:hover .play-icon-lg {
    opacity: 1;
}

.sermon-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--copper);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 4px;
}

.sermon-featured-info {
    padding: 20px;
}

.sermon-featured-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.sermon-featured-info .date {
    font-size: 13px;
    color: var(--gray);
    opacity: 0.6;
}

.sermons-recent {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sermon-recent-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.sermon-recent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.sermon-recent-card img {
    width: 120px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.sermon-recent-info h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.sermon-recent-info .date {
    font-size: 12px;
    color: var(--gray);
    opacity: 0.6;
}

.btn-outline {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ── Sermons Page Featured Player ─────────────────────────────── */
.sermon-featured-hero {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.sermon-featured-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sermon-featured-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.sermon-featured-details {
    padding-top: 8px;
}

.sermon-badge-inline {
    display: inline-block;
    background: var(--copper);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.sermon-featured-details h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.sermon-date {
    font-size: 14px;
    color: var(--gray);
    opacity: 0.6;
    margin-bottom: 16px;
}

.sermon-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

/* ── Playlist Grid ───────────────────────────────────────────── */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.playlist-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.playlist-thumb {
    position: relative;
    overflow: hidden;
}

.playlist-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.playlist-count {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
}

.playlist-info {
    padding: 16px 20px;
}

.playlist-info h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.playlist-info p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray);
    opacity: 0.7;
}

/* ── Blog Cards ───────────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: opacity 0.2s;
}

.blog-card:hover {
    opacity: 0.8;
}

.blog-card .card-image {
    width: 180px;
    min-width: 180px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--light-blue);
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card .card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card .card-content .excerpt {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

.blog-card .card-content .meta {
    font-size: 13px;
    color: var(--steel-blue);
}

/* ── Blog post content ────────────────────────────────────────── */
.blog-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    white-space: pre-line;
}

/* ── Featured Blog ─────────────────────────────────────────────── */
.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e5e5;
}

.featured-post .featured-image {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-blue);
}

.featured-post .featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post .featured-content .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-post .featured-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.featured-post .featured-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* ── Podcast / Radio ───────────────────────────────────────────── */
.podcast-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.podcast-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.podcast-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.podcast-item .episode-num {
    width: 48px;
    height: 48px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.podcast-item .episode-info { flex: 1; }

.podcast-item .episode-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.podcast-item .episode-info .desc {
    font-size: 14px;
    color: var(--gray);
}

.podcast-item .episode-date {
    font-size: 13px;
    color: var(--steel-blue);
    white-space: nowrap;
}

/* ── About Page ───────────────────────────────────────────────── */
.about-hero {
    margin-top: var(--header-height);
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-section.reverse { direction: rtl; }
.about-section.reverse > * { direction: ltr; }

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--gray);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-blue);
    aspect-ratio: 4/3;
}

/* ── Books Page ───────────────────────────────────────────────── */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.book-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.book-cover {
    aspect-ratio: 3/4;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.book-cover img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.book-info {
    padding: 24px;
}

.book-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.book-info .book-subtitle {
    font-size: 14px;
    color: var(--copper);
    font-weight: 500;
    margin-bottom: 12px;
}

.book-info p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* ── Music / Albums Page ──────────────────────────────────────── */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.album-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.album-cover {
    aspect-ratio: 1;
    background: var(--navy);
    overflow: hidden;
}

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

.album-info {
    padding: 24px;
}

.album-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.album-info p {
    font-size: 14px;
    color: var(--steel-blue);
}

/* ── Video Modal ──────────────────────────────────────────────── */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: opacity 0.2s;
}

.video-modal-close:hover { opacity: 0.7; }

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Contact Page ──────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 24px;
}

.contact-info .info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info .info-item .icon {
    width: 40px;
    height: 40px;
    background: var(--copper);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: var(--font-body);
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--copper);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── Page Banner ──────────────────────────────────────────────── */
.page-banner {
    margin-top: var(--header-height);
    padding: 64px 0;
    background: var(--navy);
    color: var(--white);
    position: relative;
}

.page-banner--hero {
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 20, 40, 0.85) 0%, rgba(14, 36, 64, 0.7) 50%, rgba(20, 50, 90, 0.5) 100%);
    z-index: 0;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 700;
}

.page-banner p {
    font-size: 18px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ── Radio Section ───────────────────────────────────────────── */
.radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.radio-card {
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.radio-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
    border-color: var(--copper);
}

.radio-card-icon {
    margin-bottom: 16px;
    color: var(--copper);
    font-size: 36px;
}

.radio-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.radio-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    opacity: 0.8;
    flex: 1;
}

.radio-card-link {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--copper);
    letter-spacing: 0.5px;
}

.radio-card:hover .radio-card-link {
    color: var(--copper-dark);
}

/* ── Radio Page ──────────────────────────────────────────────── */
.radio-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0;
}

.radio-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    opacity: 0.6;
    transition: all 0.2s;
}

.radio-tab i {
    font-size: 20px;
}

.radio-tab:hover {
    opacity: 0.9;
}

.radio-tab.active {
    color: var(--copper);
    opacity: 1;
    border-bottom-color: var(--copper);
}

.radio-show-panel {
    display: none;
}

.radio-show-panel.active {
    display: block;
}

.radio-show-header {
    margin-bottom: 24px;
}

.radio-show-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.radio-show-header p {
    font-size: 15px;
    color: var(--gray);
    opacity: 0.7;
}

.radio-now-playing {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 24px;
}

.radio-now-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--copper);
    font-weight: 700;
    margin-bottom: 8px;
}

.radio-now-playing h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.radio-now-playing audio {
    width: 100%;
    border-radius: 8px;
}

.radio-episode-list {
    display: flex;
    flex-direction: column;
}

.radio-episode {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 8px;
}

.radio-episode:hover {
    background: rgba(0, 0, 0, 0.03);
}

.radio-episode.playing {
    background: rgba(180, 92, 61, 0.06);
}

.radio-episode.playing .radio-episode-num {
    color: var(--copper);
    font-weight: 700;
}

.radio-episode-num {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    opacity: 0.5;
    min-width: 28px;
    text-align: center;
}

.radio-episode-info {
    flex: 1;
}

.radio-episode-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.radio-episode-date {
    font-size: 12px;
    color: var(--gray);
    opacity: 0.5;
}

.radio-episode-duration {
    font-size: 13px;
    color: var(--gray);
    opacity: 0.5;
    font-variant-numeric: tabular-nums;
}

.radio-episode-play {
    color: var(--copper);
    opacity: 0;
    transition: opacity 0.2s;
}

.radio-episode:hover .radio-episode-play {
    opacity: 1;
}

/* ── Radio Specials Carousel ──────────────────────────────────── */
.specials-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.specials-carousel {
    flex: 1;
    overflow: hidden;
}

.specials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.specials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.specials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.specials-dot.active {
    background: var(--copper);
    transform: scale(1.2);
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.2s;
    z-index: 20;
}

.carousel-btn:hover {
    border-color: var(--copper);
    color: var(--copper);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.special-card {
    display: flex;
    gap: 32px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 0 0 100%;
    min-width: 100%;
}

.special-card-video {
    position: relative;
    flex: 0 0 280px;
    background: var(--navy);
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
}

.special-card {
    align-items: stretch;
    overflow: visible;
    border-radius: 16px;
    height: 500px;
}

.special-card-video video,
.special-card-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.special-card-video .play-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: opacity 0.3s;
}

.special-card-video .play-btn-overlay svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.special-card-video.playing .play-btn-overlay {
    opacity: 0;
}

.special-card-video .carousel-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--copper);
    font-size: 48px;
}

.special-card-content {
    flex: 1;
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.special-card-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.special-card-date {
    font-size: 13px;
    color: var(--gray);
    opacity: 0.5;
    margin-bottom: 12px;
}

.special-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    opacity: 0.8;
    flex: 1;
    overflow: hidden;
}

.special-card-readmore {
    font-size: 13px;
    font-weight: 600;
    color: var(--copper);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ── Radio Special Episode Page ───────────────────────────────── */
.special-page-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    direction: rtl;
}

.special-page-layout > * {
    direction: ltr;
}

.special-page-left {
    display: flex;
    flex-direction: column;
}

.special-page-right {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.special-episode-graphic {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: block;
}

.special-episode-preview {
    margin-top: 24px;
}

.special-preview-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    opacity: 0.6;
    font-weight: 600;
    margin-bottom: 8px;
}

.special-preview-player {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    max-width: 200px;
}

.special-preview-player video {
    width: 100%;
    display: block;
}

.special-preview-player .play-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s;
}

.special-preview-player.playing .play-btn-overlay {
    opacity: 0;
}

.special-episode-details h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.special-episode-date {
    font-size: 14px;
    color: var(--gray);
    opacity: 0.5;
    margin-bottom: 24px;
}

.special-full-player {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.special-full-player .radio-now-label {
    margin-bottom: 10px;
}

.special-episode-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
}

.special-subscribe {
    margin-bottom: 32px;
}

.special-subscribe-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    opacity: 0.6;
    font-weight: 600;
    margin-bottom: 12px;
}

.special-subscribe-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.subscribe-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.subscribe-link--apple {
    background: #8e44ad;
    color: var(--white);
}

.subscribe-link--apple:hover {
    background: #7d3c98;
    color: var(--white);
}

.subscribe-link--spotify {
    background: #1DB954;
    color: var(--white);
}

.subscribe-link--spotify:hover {
    background: #1aa34a;
    color: var(--white);
}

.subscribe-link--youtube {
    background: #FF0000;
    color: var(--white);
}

.subscribe-link--youtube:hover {
    background: #cc0000;
    color: var(--white);
}

.special-nav {
    display: flex;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.special-nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--copper);
    transition: color 0.2s;
}

.special-nav-link:hover {
    color: var(--copper-dark);
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
    background: var(--white);
    border-top: 1px solid #e5e5e5;
    padding: 48px 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.footer-brand .footer-address {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.footer-brand .footer-phone {
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--charcoal);
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--copper); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    font-size: 13px;
    color: var(--gray);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
    font-size: 18px;
}

.social-links a:hover { opacity: 0.7; }

.social-links .ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-links .fb { background: #1877F2; color: white; }
.social-links .tw { background: var(--charcoal); color: white; }
.social-links .yt { background: #FF0000; color: white; }

/* ── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 64px 24px;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ── About Video Embed ────────────────────────────────────────── */
.about-video-embed {
    flex: 1;
    min-width: 300px;
}

.about-video-label {
    font-size: 14px;
    color: var(--gray);
    opacity: 0.7;
    margin-bottom: 12px;
    font-style: italic;
}

.about-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Wilkerson Quote Section ─────────────────────────────────── */
.wilkerson-section {
    text-align: left;
    padding: 80px 24px;
}

.wilkerson-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.wilkerson-image {
    flex: 0 0 380px;
    height: 380px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.wilkerson-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wilkerson-quote blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 24px;
}

.wilkerson-name {
    font-weight: 700;
    font-size: 16px !important;
    opacity: 1 !important;
    margin-bottom: 4px !important;
}

.wilkerson-title {
    font-size: 14px !important;
    opacity: 0.6 !important;
}

/* ── Placeholder content boxes ────────────────────────────────── */
.content-placeholder {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
}

.content-placeholder h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--navy);
}

.content-placeholder p {
    color: var(--steel-blue);
    font-size: 16px;
}

/* ── Subscribe Modal ──────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

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

.modal-content {
    background: var(--navy);
    color: var(--white);
    padding: 48px 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 1;
}

/* ── Subscribe Form ───────────────────────────────────────────── */

.subscribe-tagline {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.subscribe-tagline em {
    color: var(--copper);
    font-style: italic;
}

.subscribe-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.subscribe-fields input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-body);
}

.subscribe-fields input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe-fields input:focus { outline: none; border-color: var(--copper); }

/* ── Featured Book ────────────────────────────────────────────── */
.featured-book {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.featured-book-cover {
    max-width: 350px;
}

.featured-book-cover img {
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* ── About Quote ──────────────────────────────────────────────── */
.about-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-quote p {
    font-size: clamp(16px, 2vw, 20px);
    font-style: italic;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 16px;
}

.about-quote cite {
    font-style: normal;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--copper);
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .nav-links.open { display: flex; }

    .hero { height: 50vh; min-height: 400px; }

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

    .blog-card { flex-direction: column; }
    .blog-card .card-image { width: 100%; height: 200px; }

    .featured-post { grid-template-columns: 1fr; gap: 24px; }

    .about-section { grid-template-columns: 1fr; }
    .about-section.reverse { direction: ltr; }

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

    .book-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .album-grid { grid-template-columns: 1fr; }

    .subscribe-fields { grid-template-columns: 1fr; }

    .featured-book { grid-template-columns: 1fr; gap: 24px; }
    .featured-book-cover { max-width: 250px; margin: 0 auto; }

    .footer-top { flex-direction: column; gap: 24px; }
    .footer-nav { flex-wrap: wrap; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

    .page-banner { padding: 48px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 48px 0; }
    .hero-content h1 { font-size: 32px; }
}
