/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --secondary: #0f3460;
    --accent: #c9a84c;
    --accent-light: #d4b968;
    --accent-dark: #a8893d;
    --gold-gradient: linear-gradient(135deg, #c9a84c, #e8d5a3, #c9a84c);
    --text-dark: #1a1a2e;
    --text-body: #3d3d5c;
    --text-muted: #6b6b8a;
    --text-light: #f8f6f0;
    --bg-cream: #faf8f2;
    --bg-warm: #f5f0e8;
    --bg-white: #ffffff;
    --bg-dark: #0d0d1a;
    --border-light: rgba(201, 168, 76, 0.2);
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 24px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 8px 48px rgba(26, 26, 46, 0.12);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.15);

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 6px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(248, 246, 240, 0.7);
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
    background: rgba(201, 168, 76, 0.15);
}

.nav-link.active {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(15, 52, 96, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--primary) 0%, var(--bg-dark) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-cross {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 32px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 20px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title-line {
    display: block;
    background: linear-gradient(135deg, #f8f6f0 0%, #c9a84c 50%, #f8f6f0 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
    will-change: background-position;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(248, 246, 240, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 48px;
}

.hero-verse {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(201, 168, 76, 0.8);
    font-style: italic;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto 8px;
}

.hero-verse-ref {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(248, 246, 240, 0.35);
    letter-spacing: 2px;
    margin-bottom: 64px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    transition: var(--transition-base);
}

.hero-cta:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hero-cta svg {
    transition: var(--transition-base);
}

.hero-cta:hover svg {
    transform: translateY(3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(201, 168, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* ===== SECTIONS ===== */
.section {
    padding: var(--section-padding) 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
}

.divider-cross {
    color: var(--accent);
    font-size: 1rem;
    opacity: 0.6;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.section-about {
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 72px;
}

.about-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-slow);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
    color: var(--accent);
}

.about-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Manifesto */
.about-manifesto {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 48px;
    border: 1px solid var(--border-light);
    max-width: 750px;
    margin: 0 auto 40px;
    text-align: center;
}

.manifesto-text p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 16px;
}

.manifesto-text p strong {
    color: var(--accent);
}

.manifesto-extra {
    display: none;
}

.manifesto-extra.open {
    display: block;
}

.manifesto-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--border-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition-base);
    min-height: 44px;
    margin-top: 8px;
}

.manifesto-toggle:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--accent);
}

.manifesto-toggle svg {
    transition: var(--transition-base);
}

.manifesto-toggle.open svg {
    transform: rotate(180deg);
}

/* Author */
.about-author {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 48px;
    border: 1px solid var(--border-light);
    max-width: 700px;
    margin: 0 auto;
}

.author-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    overflow: hidden;
}

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

.author-initials {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--bg-white);
}

.author-info h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.author-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== ARTICLES SECTION ===== */
.section-articles {
    background: var(--bg-warm);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.article-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-slow);
    position: relative;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.article-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bg-white);
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-card.featured .article-image {
    aspect-ratio: auto;
    min-height: 300px;
}

.article-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201, 168, 76, 0.4);
    transition: var(--transition-slow);
}

.article-card:hover .article-image-placeholder {
    transform: scale(1.05);
}

.article-content {
    padding: 32px;
}

.article-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.article-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card:not(.featured) .article-content h3 {
    font-size: 1.3rem;
}

.article-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
}

.article-link svg {
    transition: var(--transition-base);
}

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

.article-link:hover svg {
    transform: translateX(4px);
}

/* ===== ARTICLE MODAL ===== */
.article-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.article-modal.open {
    visibility: visible;
    opacity: 1;
}

.article-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.article-modal-content {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border-radius: 20px;
    width: 90%;
    max-width: 680px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 48px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-overflow-scrolling: touch;
}

.article-modal.open .article-modal-content {
    transform: translateY(0);
}

.article-modal-close {
    position: sticky;
    top: 0;
    float: right;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-body);
    transition: var(--transition-base);
    z-index: 2;
    margin: -8px -8px 0 0;
}

.article-modal-close:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.article-modal-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.article-modal-body h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.article-modal-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.article-modal-text p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-modal-text p:last-child {
    margin-bottom: 0;
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
    position: relative;
    padding: 100px 0;
    background: var(--primary);
    overflow: hidden;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(15, 52, 96, 0.2) 0%, transparent 60%);
}

.quote-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.6;
    opacity: 0.9;
}

.quote-author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== VIDEOS SECTION ===== */
.section-videos {
    background: var(--bg-cream);
}

.video-featured {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-thumb-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.85;
    transition: var(--transition-base);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.video-thumb-link:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-featured-info {
    padding: 32px;
}

.video-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.video-featured-info h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.video-featured-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.video-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bg-white);
    background: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    min-height: 44px;
    transition: var(--transition-base);
}

.video-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===== GALLERY SECTION ===== */
.section-gallery {
    background: var(--bg-warm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-slow);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(201, 168, 76, 0.4);
    transition: var(--transition-slow);
}

.gallery-placeholder span {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(248, 246, 240, 0.5);
    font-style: italic;
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: rgba(201, 168, 76, 0.6);
}

.gallery-item:hover .gallery-placeholder span {
    color: rgba(248, 246, 240, 0.8);
}

/* ===== CONTRIBUTOR SECTION ===== */
.section-contributor {
    background: var(--bg-cream);
}

.contributor-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 56px;
    border: 1px solid var(--border-light);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.contributor-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

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

.contributor-initials {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.contributor-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contributor-role {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.contributor-divider {
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin-bottom: 16px;
}

.contributor-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contributor-article {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 20px 24px;
    border: 1px solid var(--border-light);
}

.contributor-article-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.contributor-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.contributor-article-link .contributor-article {
    transition: var(--transition-base);
    cursor: pointer;
}

.contributor-article-link:hover .contributor-article {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contributor-article-text h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contributor-article-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contributor-article-arrow {
    color: var(--accent);
    min-width: 20px;
    transition: var(--transition-base);
}

.contributor-article-link:hover .contributor-article-arrow {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    padding: 64px 0 40px;
}

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

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(248, 246, 240, 0.4);
}

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

.footer-nav a {
    font-size: 0.85rem;
    color: rgba(248, 246, 240, 0.5);
    transition: var(--transition-base);
}

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

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(248, 246, 240, 0.08);
    margin-bottom: 32px;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(248, 246, 240, 0.35);
}

.footer-bottom strong {
    color: rgba(248, 246, 240, 0.6);
    font-weight: 500;
}

.footer-verse {
    font-family: var(--font-serif);
    font-style: italic;
    color: rgba(201, 168, 76, 0.4) !important;
}

/* ===== BOTTOM MOBILE NAVIGATION ===== */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 8px 0;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 4px;
    min-height: 52px;
    justify-content: center;
    color: rgba(248, 246, 240, 0.45);
    transition: var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item.active {
    color: var(--accent);
}

.bottom-nav-item span {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bottom-nav-item svg {
    width: 22px;
    height: 22px;
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
    -webkit-tap-highlight-color: transparent;
}

.menu-overlay.visible {
    display: block;
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 72px;
    }

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

    .article-card.featured {
        grid-template-columns: 1fr;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    /* Improve touch targets globally */
    a, button {
        -webkit-tap-highlight-color: rgba(201, 168, 76, 0.15);
    }

    /* Show bottom nav */
    .bottom-nav {
        display: flex;
        justify-content: space-around;
    }

    /* Add bottom padding to body so footer isn't hidden behind bottom nav */
    body {
        padding-bottom: 70px;
    }

    /* Footer extra padding for bottom nav */
    .footer {
        padding-bottom: 80px;
    }

    /* Navbar mobile */
    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 32px;
        gap: 4px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 16px 20px;
        min-height: 52px;
        display: flex;
        align-items: center;
        border-radius: 10px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero mobile */
    .hero-title {
        letter-spacing: 10px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 0.8rem;
        margin-bottom: 36px;
    }

    .hero-verse {
        font-size: 1.05rem;
        padding: 0 12px;
    }

    .hero-cta {
        padding: 16px 36px;
        font-size: 0.8rem;
        min-height: 52px;
    }

    .hero-scroll-indicator {
        bottom: 24px;
    }

    /* Sections mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    /* About mobile */
    .about-card {
        padding: 32px 24px;
    }

    .about-card:hover {
        transform: none;
    }

    .about-card::before {
        transform: scaleX(1);
    }

    .about-author {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }

    /* Articles mobile */
    .article-content {
        padding: 24px 20px;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }

    .article-link {
        padding: 12px 0;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        font-size: 0.9rem;
    }

    .article-card:hover {
        transform: none;
    }

    .article-badge {
        top: 16px;
        left: 16px;
    }

    /* Quote mobile */
    .quote-banner {
        padding: 64px 0;
    }

    .quote-text {
        font-size: 1.15rem;
        line-height: 1.7;
        padding: 0 8px;
    }

    /* Modal mobile */
    .article-modal-content {
        width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 16px 16px 0 0;
        padding: 32px 24px;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        transform: translateY(100%);
    }

    .article-modal.open .article-modal-content {
        transform: translateY(0);
    }

    .article-modal-body h2 {
        font-size: 1.5rem;
    }

    .article-modal-text p {
        font-size: 1rem;
    }

    /* Videos mobile */
    .video-featured-info {
        padding: 24px 20px;
    }

    .video-featured-info h4 {
        font-size: 1.2rem;
    }

    .video-cta {
        width: 100%;
        justify-content: center;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 12px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .gallery-item:hover {
        transform: none;
    }

    .gallery-placeholder span {
        font-size: 0.85rem;
    }

    .gallery-placeholder svg {
        width: 36px;
        height: 36px;
    }

    /* Contributor mobile */
    .contributor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }

    .contributor-avatar {
        width: 80px;
        height: 80px;
        min-width: 80px;
    }

    .contributor-initials {
        font-size: 1.6rem;
    }

    .contributor-info h3 {
        font-size: 1.4rem;
    }

    .contributor-divider {
        margin: 16px auto;
    }

    .contributor-article {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    /* Footer mobile */
    .footer-top {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .footer-nav a {
        padding: 8px 4px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 6px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
        gap: 10px;
    }

    .quote-text {
        font-size: 1.05rem;
    }
}

/* ===== SAFE AREA INSETS (notch phones) ===== */
@supports (padding: env(safe-area-inset-bottom)) {
    .bottom-nav {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}
