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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Archivo', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

p {
    margin-bottom: 20px;
}

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

/* ========================== */
/* Header                     */
/* ========================== */
.site-header {
    width: 100%;
    z-index: 1000;
    background: #000;
    border-bottom: 4px solid #3B1711;
    /* Mobile: always fixed */
    position: fixed;
    top: 0;
    left: 0;
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 53px;
}

.header-logo {
    pointer-events: none;
}

.site-header.collapsed .header-logo {
    pointer-events: auto;
}

.header-logo img {
    height: 35px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.header-nav {
    display: none;
}

.header-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.03em;
}

/* Hamburger button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger to X animation */
.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}
.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav dropdown */
.site-header.menu-open .header-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 53px;
    left: 0;
    width: 100%;
    background: #000;
    border-bottom: 3px solid #3B1711;
    padding: 20px 6vw;
    gap: 20px;
}

/* Desktop header — expanded (default) */
@media (min-width: 768px) {
    .site-header {
        position: static;
    }

    .header-inner {
        height: auto;
        padding: 30px 4vw 20px;
        flex-direction: column;
        gap: 16px;
    }

    .header-logo img {
        height: auto;
        width: 100%;
        max-width: 340px;
    }

    .menu-toggle {
        display: none;
    }

    .header-nav {
        display: flex;
        gap: 32px;
    }

    /* Desktop header — collapsed (scrolled or inner pages) */
    .site-header.collapsed,
    .site-header[data-header="collapsed"] {
        position: fixed;
        top: 0;
        left: 0;
    }

    .site-header.collapsed .header-inner,
    .site-header[data-header="collapsed"] .header-inner {
        flex-direction: row;
        justify-content: center;
        height: 60px;
        padding: 0 4vw;
        gap: 0;
        position: relative;
    }

    .site-header.collapsed .header-logo,
    .site-header[data-header="collapsed"] .header-logo {
        position: absolute;
        left: 4vw;
    }

    .site-header.collapsed .header-logo img,
    .site-header[data-header="collapsed"] .header-logo img {
        height: 40px;
        width: auto;
        max-width: none;
    }
}

a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}
a:hover {
    opacity: 0.8;
}

/* Section base */
.section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.section-content {
    width: 100%;
    max-width: 1500px;
    padding: 0 6vw;
}

@media (min-width: 768px) {
    .section-content {
        padding: 0 4vw;
    }
}

/* ===================== */
/* SECTION: Hero Logo    */
/* ===================== */
.section--hero {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .section--hero {
        display: none;
    }
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    width: 100%;
    max-width: 564px;
    height: auto;
    object-fit: contain;
}

/* ========================== */
/* SECTION: Inertia Promo     */
/* ========================== */
.section--promo {
    padding: 60px 0;
    border-bottom: 5px solid #fff;
}

.promo-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.promo-text {
    text-align: center;
}

.promo-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.promo-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
}


.promo-video {
    width: 100%;
    max-width: 700px;
}

.stream-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.stream-btn:hover {
    opacity: 0.75;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
}

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


/* ========================== */
/* SECTION: Videos            */
/* ========================== */
.section--videos {
    padding: 60px 0;
}

.videos-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.videos-grid h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
}

.video-block {
    width: 100%;
    max-width: 900px;
}

.video-block .video-wrapper {
    padding-bottom: 56.5%;
}

/* ========================== */
/* SECTION: Gallery           */
/* ========================== */
.section--gallery {
    padding: 60px 0;
}

.gallery-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 40px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.photo-item {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.photo-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: opacity 0.2s ease;
}

.photo-item:hover img {
    opacity: 0.85;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
}

.lightbox-close {
    top: 16px;
    right: 20px;
    font-size: 2.4rem;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

@media (min-width: 768px) {
    .gallery-heading {
        font-size: 2.4rem;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .lightbox-prev { left: 24px; }
    .lightbox-next { right: 24px; }
}

/* ========================== */
/* SECTION: About / Bio       */
/* ========================== */
.section--bio {
    padding: 60px 0 80px;
    background-color: #3B1711;
    border-bottom: 5px solid #fff;
}

.bio-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
    padding-bottom: 10px;
}

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

.bio-content p {
    margin-bottom: 1.2em;
}

.bio-content .bio-intro {
    font-size: 1.15rem;
    line-height: 1.7;
}

.bio-content .bio-credits {
    font-size: 0.95rem;
    opacity: 0.85;
}

.bio-content .bio-spacer {
    height: 0.5em;
}

.bio-content .bio-desc {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ========================== */
/* SECTION: Sol                */
/* ========================== */
.section--sol {
    padding: 60px 0 80px;
    background: url('../images/nebula-bg.jpg') center center / cover no-repeat;
    border-bottom: 5px solid #fff;
}

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

.sol-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
    padding-bottom: 10px;
}

.sol-artwork {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
}

.sol-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

.sol-body {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.85;
}

.sol-body a {
    color: #fff;
    text-decoration: underline;
}

.btn-outline {
    display: inline-block;
    margin: 1.2em 0;
    padding: 15px 20px;
    color: #fff;
    background: none;
    border: 2px solid #fff;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
}

/* ========================== */
/* SECTION: Contact Form      */
/* ========================== */
.section--contact {
    padding: 60px 0 80px;
}

.contact-content {
    max-width: 550px;
    margin: 0 auto;
}

.contact-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .honeypot {
    display: none;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    opacity: 0.85;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}


/* ========================== */
/* Thank You page             */
/* ========================== */
.thankyou-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - 63px);
    padding: 40px 6vw;
}

.thankyou {
    max-width: 500px;
}

.thankyou h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.thankyou p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.85;
}

.thankyou a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ========================== */
/* Footer                     */
/* ========================== */
.site-footer {
    width: 100%;
    padding: 50px 6vw 40px;
    text-align: center;
    background-color: #3B1711;
}

.footer-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    transition: opacity 0.2s;
}

.footer-socials a:hover {
    opacity: 0.7;
}

.footer-socials a svg {
    width: 20px;
    height: 20px;
    fill: #000;
}

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

.footer-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.7;
}

/* ========================== */
/* SECTION: EPK               */
/* ========================== */
.section--epk-intro,
.section--epk-single,
.section--epk-press,
.section--epk-social,
.section--epk-bio,
.section--epk-images,
.section--epk-video {
    padding: 60px 0;
    border-bottom: 5px solid #fff;
}

.section--epk-single,
.section--epk-social,
.section--epk-images {
    background-color: #3B1711;
}

[class*="section--epk"] p {
    font-size: 1.2rem;
}

.epk-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.epk-logo {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.epk-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.epk-single h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    margin-bottom: 30px;
}

.epk-artwork {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
}

.epk-single p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.epk-press {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.epk-press h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    margin-bottom: 40px;
}

.epk-quote {
    margin: 0 0 36px;
    padding: 0 0 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.epk-quote:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.epk-quote p {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}

.epk-quote cite {
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.7;
    letter-spacing: 0.04em;
}

.epk-social {
    text-align: center;
}

.epk-social h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    margin-bottom: 30px;
}

.epk-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.epk-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    transition: opacity 0.2s;
}

.epk-social-icons a:hover {
    opacity: 0.75;
}

.epk-social-icons a svg {
    width: 26px;
    height: 26px;
    fill: #000;
}

.epk-bio {
    max-width: 900px;
    margin: 0 auto;
}

.epk-bio h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 40px;
}

.epk-bio-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.epk-bio-text {
    line-height: 1.7;
}

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

.epk-bio-text a {
    color: #fff;
    text-decoration: underline;
}

.epk-bio-photo img {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    border-radius: 4px;
}

.section--epk-images .photo-item img {
    height: auto;
    aspect-ratio: unset;
    object-fit: unset;
}

.epk-images-note {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 24px;
}

.epk-video-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.epk-contact-note {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.8;
}

@media (min-width: 768px) {
    .epk-single h2 {
        font-size: 2.4rem;
    }

    .epk-press h2,
    .epk-social h2,
    .epk-bio h2 {
        font-size: 2.4rem;
    }

    .epk-bio-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .epk-bio-text {
        flex: 1;
    }

    .epk-bio-photo {
        flex-shrink: 0;
        width: 280px;
    }

    .epk-bio-photo img {
        max-width: 100%;
    }
}

/* ========================== */
/* Responsive                 */
/* ========================== */
@media (min-width: 768px) {
    .promo-text h2 {
        font-size: 3rem;
    }

    .promo-text h3 {
        font-size: 1.6rem;
    }

    .videos-grid h2 {
        font-size: 2.4rem;
    }

    .bio-content h2 {
        font-size: 2.4rem;
    }

    .sol-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .promo-text h2 {
        font-size: 1.8rem;
    }
    .promo-text h3 {
        font-size: 1.1rem;
    }
}
