/* Import Fonts - Already loaded in HTML with display=swap for better performance */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* Reset & Variables */
:root {
    --charcoal: #2a2a2a;
    --deep-green: #3d4f3a;
    --sage: #9ca986;
    --sage-glow: #b8c9a0;
    --sage-light: #c8d4b8;
    --gold: #d4af37;
    --gold-muted: #c5a042;
    --cream: #f5f1e8;
    --soft-white: #fefefe;
    --warm-grey: #3a3a3a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: radial-gradient(circle at 50% 30%, #2f3a2f 0%, #111111 85%);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    padding-top: 70px;
}

/* A spotlight to highlight the center content */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #050505 90%);
    pointer-events: none;
    z-index: -1;
}

/* Sage glow corners (Orbs) */
body::before {
    content: '';
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.18;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: pulse 10s ease-in-out infinite;
}

.container::before {
    content: '';
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle, var(--sage-glow) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: pulse 12s ease-in-out infinite 3s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    50% { opacity: 0.20; transform: scale(1.15); }
}

/* Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--sage);
    z-index: 1000;
    padding: 18px 0; /* increased from 15px if using 60px logo */
}

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

.nav-logo img {
    height: 60px; /* increased from 40px */
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: rotate(5deg) scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95em;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--sage) 0%, var(--gold) 100%);
    color: var(--charcoal) !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Logo Section */
.logo-container {
    margin-bottom: 60px; /* increased from 50px */
    animation: fadeInUp 1s ease;
    position: relative;
    display: flex;
    justify-content: center;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 169, 134, 0.06) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -2;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

@media (max-width: 768px) {
    /* Remove radial glow behind logo on mobile */
    .logo-container::before,
    .logo-container::after {
        display: none;
    }
}



.brand-logo {
    max-width: 500px; /* increased from 450px */
    width: 100%;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 10px 20px rgba(0,0,0,0.6));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 120px; /* increased from 100px */
    padding: 80px 0; /* increased from 60px */
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4em; /* increased from 3.5em */
    font-weight: 700;
    margin-bottom: 25px; /* increased from 20px */
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--cream); /* Fallback for browsers that don't support gradient text */
    letter-spacing: 1px;
}

.hero .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.4em; /* increased from 1.3em */
    color: var(--gold-muted);
    margin-bottom: 30px; /* increased from 25px */
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero .bio {
    max-width: 750px; /* increased from 700px */
    margin: 0 auto 35px; /* increased from 30px */
    color: var(--cream);
    opacity: 0.95;
    font-size: 1.15em; /* increased from 1.1em */
    line-height: 1.9; /* increased from 1.8 */
}

.tags {
    display: flex;
    gap: 18px; /* increased from 15px */
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px; /* increased from 30px */
}

.tag {
    background: rgba(156, 169, 134, 0.15);
    border: 1px solid var(--sage);
    padding: 10px 22px; /* increased from 8px 18px */
    border-radius: 25px;
    font-size: 0.95em; /* increased from 0.9em */
    color: var(--sage-glow);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tag:hover::before {
    width: 200px;
    height: 200px;
}

/* Section Headers */
.section {
    margin-bottom: 100px;
}

.section-header {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 600;
}

.section-header::before,
.section-header::after {
    content: '{';
    font-size: 0.6em;
    font-family: 'Courier New', monospace;
    color: var(--sage);
    opacity: 0.7;
}

.section-header::after {
    content: '}';
}

/* Stream Embed Section */
.stream-embed-section {
    background: linear-gradient(135deg, rgba(61, 79, 58, 0.2) 0%, rgba(45, 45, 45, 0.8) 100%);
    border: 2px solid #ff0000;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 120px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.stream-embed-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.08) 0%, transparent 50%);
    animation: pulse-slow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.stream-header {
    color: #ff0000;
    font-size: 2.2em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse-red 1.5s infinite;
}

.stream-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.stream-player,
.stream-chat {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--sage);
}

.stream-player {
    aspect-ratio: 16 / 9;
    min-height: 400px;
}

.stream-chat {
    min-height: 400px;
}

.stream-player iframe,
.stream-chat iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.stream-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stream-info {
    flex: 1;
}

.stream-info h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6em;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.stream-info p {
    color: var(--sage-glow);
    font-size: 1.05em;
}

.open-twitch-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #9146FF;
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.05em;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.4);
}

.open-twitch-btn:hover {
    background: #7d3cd2;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(145, 70, 255, 0.6);
}

/* Responsive Stream Embed */
@media (max-width: 968px) {
    .stream-container {
        grid-template-columns: 1fr;
    }
    
    .stream-player {
        min-height: 300px;
    }
    
    .stream-chat {
        min-height: 400px;
    }
    
    .stream-actions {
        flex-direction: column;
        text-align: center;
    }
    
    .stream-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .stream-embed-section {
        padding: 25px;
    }
    
    .stream-header {
        font-size: 1.8em;
    }
    
    .stream-player {
        min-height: 250px;
    }
    
    .stream-chat {
        min-height: 350px;
    }
}

/* Quick Action Buttons */
.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.action-btn {
    background: linear-gradient(135deg, rgba(61, 79, 58, 0.3) 0%, rgba(156, 169, 134, 0.2) 100%);
    border: 2px solid var(--sage);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--cream);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '>';
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1.8em;
    color: var(--gold);
    opacity: 0.08;
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(61, 79, 58, 0.5) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.action-btn .icon {
    font-size: 2em;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    background: rgba(45, 45, 45, 0.9);
    border: 1px solid var(--sage);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '< / >';
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'Courier New', monospace;
    font-size: 2em;
    color: var(--sage);
    opacity: 0.05;
}

.stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.stat-card .platform-icon {
    font-size: 2.8em;
    margin-bottom: 12px;
}

.stat-card .label {
    font-size: 0.95em;
    color: var(--sage-glow);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-card .number {
    font-size: 2em;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.stat-card .growth {
    font-size: 0.9em;
    color: #7fb069;
    margin-top: 8px;
    font-weight: 500;
}

/* Live Status Indicator */
.live-badge {
    display: none;
    background-color: #ff0000;
    color: white;
    font-size: 0.65em;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    letter-spacing: 1px;
    animation: pulse-red 1.5s infinite;
}

.stat-card.is-live {
    border-color: #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

.stat-card.is-live .platform-icon i {
    color: #ff0000;
}

.stat-card.is-live .live-badge {
    display: inline-block;
}

@keyframes pulse-red {
    0% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { opacity: 1; box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
    100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* Affiliations Grid */
.affiliations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.affiliation-card {
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid var(--sage);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.affiliation-card::before {
    content: '>';
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    color: var(--gold);
    opacity: 0.08;
}

.affiliation-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.affiliation-logo-img {
    width: 100%;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.affiliation-logo-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.affiliation-card:hover .affiliation-logo-img {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.affiliation-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: var(--charcoal);
    transition: all 0.3s ease;
}

.affiliation-card:hover .affiliation-logo {
    transform: rotate(10deg) scale(1.1);
}

.affiliation-card h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4em;
    color: var(--gold);
    margin: 15px 0 10px;
    font-weight: 600;
}

.affiliation-card p {
    color: var(--sage-glow);
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Media Kit Section */
.mediakit {
    background: rgba(45, 45, 45, 0.7);
    border: 2px solid var(--sage);
    border-radius: 20px;
    padding: 50px;
    position: relative;
}

.mediakit::before {
    content: '{ ... }';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Courier New', monospace;
    font-size: 1.5em;
    color: var(--gold);
    opacity: 0.1;
}

.mediakit-subsection {
    margin-bottom: 45px;
}

.mediakit-subsection:last-child {
    margin-bottom: 0;
}

.mediakit h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2em;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 600;
}

.mediakit ul {
    list-style: none;
    padding-left: 0;
}

.mediakit li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 1.05em;
}

.mediakit li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 1.2em;
}

.platform-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.platform-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(156, 169, 134, 0.3);
}

.platform-table tr:last-child td {
    border-bottom: none;
}

.platform-table .platform-name {
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1em;
}

/* Download Button */
.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--sage) 0%, var(--gold) 100%);
    color: var(--charcoal);
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05em;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    cursor: pointer;
    border: none;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* PDF Loading Spinner */
.pdf-loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--charcoal);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Content Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.gallery-item {
    background: rgba(45, 45, 45, 0.9);
    border: 1px solid var(--sage);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.gallery-item .caption {
    padding: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 1.05em;
}

/* Featured Media Styles */
.featured-media-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.featured-media-link {
    display: block;
    width: 100%;
    height: 100%;
}

.featured-media-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    display: block;
}

.featured-media-iframe {
    border: none;
    border-radius: 8px;
}

/* Platform Badge Overlay */
.platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.platform-badge-lg {
    padding: 8px 14px;
}

.platform-badge-icon {
    font-size: 1.2em;
}

.platform-badge-icon-lg {
    font-size: 1.3em;
}

.platform-badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85em;
}

.platform-badge .fa-twitch {
    color: #9146FF;
}

.platform-badge .fa-youtube {
    color: #FF0000;
}

.platform-badge .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #e6683c; /* Fallback for Safari */
}

/* Featured Media Fallback Gradients */
.featured-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
}

.featured-fallback-twitch {
    background: linear-gradient(135deg, #9ca986 0%, #d4af37 100%);
}

.featured-fallback-youtube {
    background: linear-gradient(135deg, #d4af37 0%, #9ca986 100%);
}

.featured-fallback-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Contact Section */
.contact {
    text-align: center;
    background: rgba(45, 45, 45, 0.7);
    border: 2px solid var(--sage);
    border-radius: 20px;
    padding: 50px;
}

.contact .email {
    font-size: 1.5em;
    color: var(--gold);
    margin: 25px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 25px;
}

.social-icons a {
    font-size: 2.2em;
    color: var(--sage-glow);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--gold);
    transform: scale(1.2) rotate(5deg);
}

/* Animations & Misc */
.loading {
    color: var(--sage-glow);
    font-style: italic;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    /* Kill the body-level glow orbs on mobile */
    body::before,
    .container::before {
        display: none;
    }

    /* Remove radial glow behind logo on mobile */
    .logo-container::before,
    .logo-container::after {
        display: none;
    }

    .brand-logo {
        max-width: 260px;
    }

    .hero {
        padding: 40px 0;
        margin-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.4em;
    }

    .hero .subtitle {
        font-size: 1.1em;
    }

    .hero .bio {
        font-size: 1em;
    }

    .section-header {
        font-size: 1.8em;
    }

    .mediakit {
        padding: 30px;
    }

    .contact {
        padding: 35px;
    }

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

    .affiliation-card {
        min-height: auto;
    }

    .nav-menu {
        display: none;
    }
}
