:root {
    --color-primary: #1a1a1a;
    --color-secondary: #555555;
    --color-accent: #b8860b;
    --color-accent-hover: #9a7209;
    --color-bg: #ffffff;
    --color-bg-alt: #fafaf8;
    --color-border: #e8e8e8;
    --font-serif: 'Crimson Text', Georgia, serif;
    --font-sans: 'Karla', -apple-system, system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

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

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

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

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

.nav-brand {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

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

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    animation: slideUp 0.8s ease 0.3s both;
}

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

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

/* Intro Section */
.intro-section {
    padding: 5rem 2rem;
    background: var(--color-bg);
    animation: fadeIn 0.8s ease 0.5s both;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content {
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 2.5rem;
}

.intro-text em {
    font-style: italic;
    color: var(--color-primary);
}

.intro-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Page Header Simple */
.page-header-simple {
    background: var(--color-bg-alt);
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--color-border);
    animation: fadeIn 0.6s ease;
}

.page-title-simple {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    max-width: 1400px;
    margin: 0 auto;
}

/* Reporting Layout */
.reporting-layout {
    padding: 4rem 0;
    background: var(--color-bg);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-primary);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #ccc;
}

/* Two Equal Columns */
.two-columns-equal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Story Cards with Thumbnails */
.story-card-thumb {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
    animation: fadeIn 0.6s ease both;
    transition: all 0.3s ease;
}

.story-card-thumb:last-child {
    border-bottom: none;
}

.story-card-thumb.featured-story {
    padding: 2.5rem 0;
    border-bottom: 2px solid #ccc;
}

.story-card-thumb:hover {
    transform: translateX(4px);
}

.story-thumb {
    width: 200px;
    min-width: 200 px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.story-card-thumb:hover .story-thumb {
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.story-content-thumb {
    flex: 1;
}

.story-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.story-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-story .story-title {
    font-size: 1.5rem;
}

.story-title a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-title a:hover {
    color: var(--color-accent);
}

.story-excerpt {
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.story-date {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 500;
}

/* About Section */
.about-section-new {
    padding: 4rem 2rem;
    animation: fadeIn 0.8s ease;
}

.about-title-new {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    text-align: center;
    animation: slideUp 0.6s ease 0.1s both;
}

.about-bio {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    animation: fadeIn 0.6s ease 0.2s both;
}

.about-bio p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.about-bio em {
    font-style: italic;
    color: var(--color-primary);
}

.about-contact-new {
    margin-top: 2rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Easter Egg Link */
.easter-egg {
    margin-top: 1rem;
    font-size: 0.65rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.easter-egg:hover {
    opacity: 1;
}

.easter-egg a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.easter-egg a:hover {
    color: var(--color-accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-columns-equal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero-image {
        height: 60vh;
        min-height: 400px;
    }
    
    .intro-section {
        padding: 3rem 1.5rem;
    }
    
    .intro-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .reporting-layout {
        padding: 3rem 0;
    }
    
    .container-wide {
        padding: 0 1.5rem;
    }
    
    .story-card-thumb {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-thumb {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        height: 50vh;
        min-height: 350px;
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1.25rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}
