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

:root {
    --color-bg: #fafafa;
    --color-bg-alt: #f0f0f0;
    --color-text: #1a1a1a;
    --color-text-muted: #666;
    --color-accent: #2c2c2c;
    --color-border: #e0e0e0;
    --color-link: #1a1a1a;
    --color-link-hover: #555;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --max-width: 1100px;
    --nav-height: 70px;

    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--color-link-hover);
}

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

/* ===== Container ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.nav-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* ===== Hero ===== */
.hero {
    padding-top: calc(var(--nav-height) + var(--spacing-xl));
    padding-bottom: 0;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    width: 200px;
    height: 200px;
    margin-bottom: var(--spacing-md);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: var(--spacing-xs);
}

.tagline {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* ===== Sections ===== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background-color: var(--color-bg-alt);
}

.section-tight-top {
    padding-top: var(--spacing-sm);
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    margin-top: calc(-1 * var(--spacing-sm));
}

/* ===== Photo Breaks ===== */
.photo-break {
    display: flex;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-md);
}

.photo-break img {
    max-width: 75%;
    height: auto;
}

@media (max-width: 768px) {
    .photo-break img {
        max-width: 100%;
    }
}

/* ===== Bio ===== */
.bio {
    max-width: 700px;
    margin: 0 auto;
}

.bio p {
    margin-bottom: var(--spacing-md);
}

.bio p:last-child {
    margin-bottom: 0;
}

.bio a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bio a:hover {
    text-decoration-color: var(--color-link-hover);
}

/* ===== Video Grid ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

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

/* ===== Playlist ===== */
.playlist-wrapper {
    display: flex;
    justify-content: center;
}

.playlist-wrapper iframe {
    border-radius: 10px;
}

/* ===== Press ===== */
.press-grid {
    display: grid;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.press-quote {
    text-align: center;
    padding: var(--spacing-md);
}

.press-quote p {
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.press-quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.press-quote cite {
    font-style: normal;
    font-weight: 500;
}

.press-quote cite a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.press-detail {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== Contact ===== */
#contact {
    text-align: center;
}

.contact-text {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.contact-email {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== Footer ===== */
.footer {
    padding: var(--spacing-md) 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        border-bottom: 1px solid var(--color-border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform var(--transition), opacity var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1rem;
        padding: var(--spacing-xs) 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

    .press-quote p {
        font-size: 1.1rem;
    }

    .contact-email {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        width: 160px;
        height: 160px;
    }

    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    .nav,
    .nav-toggle {
        display: none;
    }

    .hero {
        padding-top: var(--spacing-md);
    }

    .section {
        padding: var(--spacing-md) 0;
    }

    .video-grid,
    .playlist-wrapper,
    .photo-break {
        display: none;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: var(--color-text-muted);
    }
}
