/* ========================== */
/* Colour Palette             */
/* ========================== */
/* Accent (yellow-green):  #eaeb77 */
/* Light accent (steel blue): #b3c3cf */
/* Dark accent (terracotta):  #8c4d2e */
/* Body background: #fff */
/* Body text: #000 */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #000;
    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: #eaeb77;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-bottom: 4px solid #000;
    /* Mobile: always fixed */
    position: fixed;
    top: 0;
    left: 0;
}

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

.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}


.header-logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.header-nav {
    display: none;
}

.header-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.header-nav a:hover {
    opacity: 0.6;
}

.header-nav a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* 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: 1px;
    background: #000;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger to X animation */
.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) 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(-6px) rotate(-45deg);
}

/* Mobile nav dropdown */
.site-header.menu-open .header-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #eaeb77;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 6vw;
    gap: 20px;
}

/* Desktop header */
@media (min-width: 768px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        column-gap: 40px;
        height: auto;
        padding: min(3vw, 1vmax) 4vw;
    }

    .header-logo {
        justify-self: start;
    }

    .header-logo-img {
        height: 126px;
    }

    .menu-toggle {
        display: none;
    }

    .header-nav {
        display: flex;
        gap: 1.5vw;
        justify-content: center;
        flex-wrap: wrap;
    }
}

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

/* Shared heading font */
.section-heading,
.articles-heading,
.article-header h1,
.article-body h2,
.band-name,
.studio-category h2,
.page-header-content h1,
.contact-content h2,
.thankyou h1,
.article-card-title,
.release-card-title,
.music-release h3,
.playlist-item h3,
.studio-year {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.02em;
}

/* Responsive image */
.release-artwork,
.band-image,
.studio-hero-img,
.article-banner,
.contact-photo img,
.article-body .article-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Section padding groups */
.section--articles,
.section--article,
.section--music-bands,
.section--music-playlists,
.section--bands,
.section--bands-previous,
.section--studio,
.section--contact {
    padding: 60px 0 80px;
}

.section--releases,
.section--music-releases {
    padding: 60px 0;
}

/* 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;
    }
}

/* ========================== */
/* Shared Button              */
/* ========================== */
.btn-outline,
.stream-btn {
    padding: 15px 20px;
    color: #000;
    background: none;
    border: 2px solid #000;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 30px;
    transition: opacity 0.2s;
}

.btn-outline {
    display: inline-block;
    margin: 1.2em 0;
}

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

/* ========================== */
/* Stream / Link Buttons      */
/* ========================== */
.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;
    font-size: 0.9rem;
}

/* ========================== */
/* Video Embed Wrapper        */
/* ========================== */
.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: Page Header       */
/* ========================== */
.section--page-header {
    padding: 60px 0 40px;
    background-color: #eaeb77;
}

.page-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.page-header-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .page-header-content h1 {
        font-size: 3.5rem;
    }
}

/* ========================== */
/* SECTION: Latest Releases   */
/* ========================== */
.releases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 900px;
}

.release-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    background: #eaeb77;
    text-decoration: none;
    color: #000;
    transition: background 0.2s;
    gap: 12px;
}

.release-card:hover {
    background: #dfe05e;
}

.release-card-meta {
    font-size: 0.78rem;
    opacity: 0.5;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.release-card-title {
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.release-card-type {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.45;
}

.release-card-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.5;
    white-space: nowrap;
    flex-shrink: 0;
}

.release-card:hover .release-card-link {
    opacity: 1;
}

@media (max-width: 540px) {
    .releases-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================== */
/* SECTION: Articles Feed     */
/* ========================== */
.articles-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.article-card {
    display: flex;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #000;
}

.article-card:hover {
    opacity: 0.7;
}

.article-card-thumb {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.article-card-body {
    flex: 1;
    min-width: 0;
}

.article-card-meta {
    font-size: 0.85rem;
    opacity: 0.55;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.article-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-card-excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: 0.65;
    margin-bottom: 12px;
}

.article-card-read-more {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .article-card-thumb {
        width: 180px;
        height: 180px;
    }

    .article-card-title {
        font-size: 1.6rem;
    }
}

/* ========================== */
/* SECTION: Article Page      */
/* ========================== */
.article-container {
    max-width: 780px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.article-header h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-meta {
    font-size: 0.9rem;
    opacity: 0.55;
    letter-spacing: 0.03em;
}

.article-body h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.article-body h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 28px;
    margin-bottom: 12px;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    padding-left: 1.5em;
    margin-bottom: 20px;
}

.article-body li {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 8px;
}

.article-body a {
    color: #8c4d2e;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body blockquote {
    border-left: 3px solid #8c4d2e;
    padding: 12px 20px;
    margin: 24px 0;
    font-style: italic;
    opacity: 0.85;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-banner {
    border-radius: 4px;
    margin-bottom: 30px;
}

.article-body .article-image {
    margin: 30px 0;
    border-radius: 4px;
}

.article-body .image-pair {
    display: flex;
    gap: 16px;
    margin: 30px 0;
}

.article-body .image-pair img {
    flex: 1;
    width: 0;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.article-body .image-float-left,
.article-body .image-float-right {
    width: 50%;
    margin: 10px 0 20px;
    border-radius: 4px;
}

.article-body .image-float-left {
    float: left;
    margin-right: 24px;
}

.article-body .image-float-right {
    float: right;
    margin-left: 24px;
}

.article-body .clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.article-body .image-caption {
    font-size: 0.82rem;
    opacity: 0.5;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 20px;
}

.article-body .image-caption-inline {
    font-size: 0.82rem;
    opacity: 0.5;
    margin-top: 4px;
    margin-bottom: 20px;
}

.article-body hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin: 40px 0;
    clear: both;
}

@media (max-width: 768px) {
    .article-body .image-float-left,
    .article-body .image-float-right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .article-body .image-pair {
        flex-direction: column;
    }

    .article-body .image-pair img {
        width: 100%;
    }
}

.article-bandcamp {
    margin: 30px 0;
}

.article-nav {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.article-nav a {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #8c4d2e;
}

@media (min-width: 768px) {
    .article-header h1 {
        font-size: 2.8rem;
    }
}

/* ========================== */
/* SECTION: Music             */
/* ========================== */
.section--music-intro {
    padding: 60px 0 0;
}

.music-intro-copy {
    max-width: 900px;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.75;
    text-align: center;
}


.section--music-playlists {
    background-color: #eaeb77;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.music-release {
    display: block;
    text-decoration: none;
}

.music-release:hover {
    opacity: 0.8;
}

.release-artwork {
    border-radius: 4px;
}

.music-release h3 {
    font-size: 1.8rem;
}

.music-release .release-meta {
    font-size: 0.85rem;
    opacity: 0.55;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.music-release p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.75;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.bandcamp-embed {
    width: 100%;
    max-width: 700px;
    border: 0;
    margin: 0;
}

.playlists-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.playlist-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.playlist-item p {
    font-size: 0.95rem;
    opacity: 0.65;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .music-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .section-heading {
        font-size: 2.4rem;
    }

}

/* ========================== */
/* SECTION: Bands             */
/* ========================== */
.section--bands-previous {
    background-color: #eaeb77;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
}

.bands-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.band-item {
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.band-name {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.band-image {
    border-radius: 20px;
    margin-bottom: 16px;
}

.band-genre {
    font-size: 0.9rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 6px;
}

.band-role {
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 16px;
}

.band-desc {
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0.75;
    margin-bottom: 16px;
}

.band-item .btn-outline {
    display: inline-block;
    margin: 0;
    padding: 10px 18px;
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .bands-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        row-gap: 40px;
    }

    .band-name {
        font-size: 2.4rem;
    }
}

/* ========================== */
/* SECTION: My Studio         */
/* ========================== */
.section--studio {
    text-align: center;
}

.studio-hero {
    max-width: 600px;
    margin: 0 auto 30px;
}

.studio-hero-img {
    border-radius: 4px;
}

.studio-year {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.studio-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.studio-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.75;
}

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

.studio-category {
    margin-bottom: 40px;
}

.studio-category h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.studio-subcategory {
    margin-bottom: 24px;
}

.studio-subcategory h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 12px;
}

.studio-list {
    list-style: disc;
    padding: 0;
    list-style-position: inside;
}

.studio-list li {
    font-size: 1rem;
    line-height: 1.7;
    padding: 4px 0;
}

.studio-item-name {
    font-weight: 700;
}

.studio-item-note {
    font-size: 0.9rem;
    opacity: 0.55;
    font-style: italic;
}

/* ========================== */
/* SECTION: Contact Form      */
/* ========================== */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-photo img {
    border-radius: 4px;
}

.contact-photo-credit {
    font-size: 0.8rem;
    opacity: 0.4;
    margin-top: 10px;
}

.contact-photo-credit a {
    text-decoration: underline;
}

.contact-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-content .contact-intro {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.65;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-photo {
        flex: 1;
        position: sticky;
        top: 180px;
    }

    .contact-content {
        flex: 1;
    }
}

.label-hint {
    opacity: 0.5;
}

.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 select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    color: #000;
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.contact-form select option {
    background: #fff;
    color: #000;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8c4d2e;
}

.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-size: 2.5rem;
    margin-bottom: 16px;
}

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

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

/* ========================== */
/* Footer                     */
/* ========================== */
.site-footer {
    width: 100%;
    padding: 3.3vmax 6vw 5vmax;
    text-align: center;
    background-color: #fff;
    color: #000;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
}

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

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

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

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

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

/* ========================== */
/* Responsive                 */
/* ========================== */
@media (min-width: 768px) {
    .section--page-header {
        padding: 80px 0 50px;
    }
}

@media (max-width: 480px) {
    .article-card-title {
        font-size: 1.2rem;
    }
}
