/* Global Styles */
:root {
    --bg-color: #0F2822;
    /* Dark Forest Green */
    --text-color: #E2E2E2;
    --accent-color: #E5A85A;
    /* Burnt Gold / Orange */
    --secondary-color: #rgba(229, 168, 90, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    letter-spacing: 0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
}

/* Left Column: Visuals */
.visual-column {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
    position: sticky;
    top: 40px;
}

.headshot {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    /* Slightly rounded, editorial look */
    object-fit: cover;
    border: 1px solid var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

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

.social-btn {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid transparent;
}

.social-btn:hover {
    border-bottom: 1px solid var(--accent-color);
    opacity: 0.8;
}

/* Right Column: Content */
.content-column {
    flex: 1.5;
    min-width: 300px;
}

/* Header */
.main-header {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(229, 168, 90, 0.3);
    padding-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.main-header h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Content Sections */
.section-title {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}

.bio-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    text-align: justify;
}

.bio-text p {
    margin-bottom: 25px;
}

/* Feature Boxes */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(229, 168, 90, 0.2);
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.feature-box h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}



/* Credits Strip */
.credits-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(229, 168, 90, 0.3);
}

.credits-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.credits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    gap: 20px;
}

.credits-list li {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.credits-list li:hover {
    color: var(--accent-color);
}

/* Footer */
.main-footer {
    text-align: center;
    margin-top: 80px;
    padding-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    width: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Featured Placements */
.placements-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(229, 168, 90, 0.3);
}

.placement-tier {
    margin-bottom: 40px;
}

.tier-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tier-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(229, 168, 90, 0.15);
}

.placement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.placement-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.placement-item:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(229, 168, 90, 0.05);
}

.placements-footer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.cta-button.small {
    padding: 8px 18px;
    font-size: 0.7rem;
}

.seen-on-tier {
    margin-bottom: 40px;
}

.seen-on-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.network-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.network-list li {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .visual-column {
        position: static;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .main-header h1 {
        font-size: 3.5rem;
    }

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

    .tour-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tour-btn {
        width: 100%;
        text-align: center;
    }
}