/* ===========================================
   RESET AND BASE STYLES
   =========================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none;
    color: inherit;
}

@font-face {
    font-family: 'TrajanPro-Regular';
    src: url('../shared/fonts/TrajanPro-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'OldeEnglish';
    src: url('../shared/fonts/OldeEnglish.ttf') format('truetype');
}

@font-face {
    font-family: 'HKHOldGlyphs';
    src: url('../shared/fonts/HKH Old Glyphs.ttf') format('truetype');
}

:root {
    --primary-color: #000000;
    --accent-color: #ffffff;
    --text-color: #fff;
    --text-secondary: #ccc;
    --transition: all 0.3s ease;
    --menu-font: TrajanPro-Regular, "Trajan Pro", "Times New Roman", serif;
    --panel-solid: rgba(26, 26, 26, 0.95);
    --panel-translucent: rgba(26, 26, 26, 0.5);
}

.hkh-glyphs {
    font-family: 'HKHOldGlyphs', serif;
    font-weight: normal;
}

.page-title.hkh-glyphs {
    font-size: 1.1rem;
    letter-spacing: 1.6px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
    transition: background-image 0.8s ease-in-out;
}

/* ===========================================
   ANIMATED BACKGROUND
   =========================================== */
#animatedBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 1;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.main-nav {
    position: fixed;
    top: 0.3rem;
    left: 0;
    right: 0;
    width: 100%;
    background-color: transparent;
    padding: 1rem 2rem 1rem 1.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.1rem;
    margin-right: auto;
}

.nav-brand a {
    color: #f3ecde;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--menu-font);
    letter-spacing: 1px;
}

.nav-brand:has(.nav-logo) {
    margin-left: 0.5rem;
    margin-right: -0.75rem;
}

.nav-logo-link {
    display: block;
    line-height: 0;
}

.nav-logo {
    height: 3rem;
    width: auto;
    opacity: 0.96;
    transition: var(--transition);
}

.nav-logo-link:hover .nav-logo {
    opacity: 1;
}

.nav-menu li a {
    color: #f3ecde;
    text-decoration: none;
    padding: 0.7rem 1.1rem;
    transition: var(--transition);
    font-family: var(--menu-font);
    font-size: 0.74rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: #f3ecde;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.55rem;
    transition: var(--transition);
}

.nav-toggle:focus {
    outline: none;
}

.hamburger {
    --bar-color: #e9ddc3;
    --bar-height: 2px;
    --bar-gap: 9px;
    --bar-full: 26px;
    --bar-short: 14px;

    display: block;
    width: var(--bar-short);
    height: var(--bar-height);
    background: var(--bar-color);
    position: relative;
    margin: 0 auto;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 50%;
    width: var(--bar-full);
    height: var(--bar-height);
    background: var(--bar-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.hamburger::before { top: calc(-1 * var(--bar-gap)); }
.hamburger::after { bottom: calc(-1 * var(--bar-gap)); }

.nav-toggle:hover .hamburger,
.nav-toggle:hover .hamburger::before,
.nav-toggle:hover .hamburger::after {
    background: #f3ecde;
}

.nav-toggle.active .hamburger {
    width: var(--bar-full);
    background: transparent;
}

.nav-toggle.active .hamburger::before,
.nav-toggle.active .hamburger::after {
    background: var(--bar-color);
    width: var(--bar-full);
}

.nav-toggle.active .hamburger::before {
    transform: translateX(-50%) rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: translateX(-50%) rotate(-45deg);
    bottom: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-left: auto;
    margin-right: 1.8rem;
    justify-content: flex-end;
}

.nav-social a {
    color: #f3ecde;
    font-size: 1.25rem;
    transition: color 0.2s;
}

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

/* ===========================================
   ALBUM PAGE LAYOUT
   =========================================== */
.album-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6.5rem 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
}

.album-page::before {
    content: '';
    display: block;
    height: calc(3.75rem + 2.25rem + 4rem + 4px);
    width: 100%;
    flex-shrink: 0;
    pointer-events: none;
}

.page-title-header {
    position: absolute;
    top: 7rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.25rem;
}

.page-title-header .separator-line {
    max-width: 700px;
}

.page-title {
    font-size: 3.5rem;
    color: #f3ecde;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.35;
    opacity: 0.96;
}

.album-layout {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1280px;
}

.album-info-panel,
.album-player-panel {
    display: flex;
    flex-direction: column;
}

.album-info-panel {
    flex: 0 0 600px;
    width: 600px;
    background: var(--panel-translucent);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 1.5rem 1rem 1.5rem;
    align-items: center;
    text-align: center;
    font-weight: normal;
}

.album-player-panel {
    flex: 0 0 600px;
    width: 600px;
    padding: 0;
    gap: 2rem;
}

.album-copyright {
    font-family: var(--menu-font);
    font-size: 0.65rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 0.70;
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: normal;
}

.album-copyright-line,
.album-copyright-rights {
    white-space: nowrap;
}

.bandcamp-player {
    margin-bottom: 0;
    flex-shrink: 0;
    opacity: 0.76;
}

.bandcamp-player iframe {
    display: block;
    width: 100%;
    height: 120px;
    border: 0;
}

.tracklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    background: var(--panel-translucent);
    border: 1px solid rgba(192, 192, 192, 0.1);
    padding: 1.1rem 1.75rem;
}

.track-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem 1.25rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-family: var(--menu-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: #e8e8e8;
}

.track-item:last-child {
    border-bottom: none;
}

.track-title {
    text-align: left;
}

.track-title .ordinal-suffix {
    font-size: 0.58em;
    line-height: 0;
    vertical-align: super;
}

.track-lyrics {
    font-family: var(--menu-font);
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
    opacity: 0.70;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.track-lyrics:hover,
.track-lyrics[aria-expanded="true"] {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.track-lyrics-panel {
    grid-column: 1 / -1;
    padding: 0.75rem 0 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 0.35rem;
    text-transform: none;
    letter-spacing: normal;
}

.lyrics-body {
    font-family: "Times New Roman", Times, serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #d8d8d8;
}

.lyrics-body p + p {
    margin-top: 1.25rem;
}

.lyrics-credits {
    margin-top: 1rem;
    font-family: var(--menu-font);
    font-size: 0.6rem;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    opacity: 0.65;
}

.track-duration {
    min-width: 2.5rem;
    text-align: right;
    opacity: 0.70;
    white-space: nowrap;
}

.track-item:not(:has(.track-lyrics)) .track-duration {
    grid-column: 3;
}

.album-info-panel .view-details-button {
    min-width: 300px;
    padding: 1.2rem 3rem;
}

/* ===========================================
   SECTIONS (GENERAL)
   =========================================== */
.section {
    padding: 7rem 2rem 5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, 0.098);
}

/* ===========================================
   SECTION SEPARATORS
   =========================================== */
.section-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.098);
    position: relative;
}

.separator-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f3ecde, transparent);
    width: 100%;
    max-width: 500px;
    opacity: 0.6;
}

/* ===========================================
   RELEASED RECORDS SECTION
   =========================================== */
#music {
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.released-records {
    width: 100%;
    position: relative;
    z-index: 2;
}

.released-records-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.released-records-header .separator-line {
    max-width: 700px;
}

.released-records-title {
    font-family: var(--menu-font);
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f3ecde;
    opacity: 0.96;
}

.music-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 9rem;
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.album-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 0 1 600px;
    text-align: center;
}

.album-cover {
    width: min(464px, calc(100% - 4rem));
    max-width: 100%;
    margin: 2rem;
}

.album-cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    opacity: 0.96;
    border: 2px solid white;
}

.album-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.release-date {
    font-family: 'TrajanPro-Regular', "Trajan Pro", "Times New Roman", serif;
    font-size: 0.8rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.70;
}

.album-title {
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.album-title.hkh-glyphs {
    font-size: 1rem;
    font-family: 'HKHOldGlyphs', serif;
    font-weight: normal;
    letter-spacing: 1.6px;
    margin-top: 0.6rem;
    margin-bottom: 0.8rem;
    opacity: 0.96;
}

.hkh-glyphs-fallback {
    font-family: 'TrajanPro-Regular', "Trajan Pro", "Times New Roman", serif;
}

/* Exception: "Behind the Silence of the Death - Vol.1: The Birth"
   If the title wraps, break only after the dash, before the subtitle.
   The leading space lives on the subtitle so it stays visible when wrapped. */
/* Exception: "Through the Veil of the Looking-Glass"
   The hyphen uses TrajanPro (hkh-glyphs-fallback). If the title wraps,
   break only before "looking-glass" so the composed word stays intact. */
.album-title-break-after-dash,
.album-title-break-before-looking-glass {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    max-width: 100%;
    gap: 0;
}

.album-title-break-after-dash .album-title-primary,
.album-title-break-after-dash .album-title-subtitle,
.album-title-break-before-looking-glass .album-title-primary,
.album-title-break-before-looking-glass .album-title-subtitle {
    white-space: nowrap;
    flex: 0 0 auto;
    max-width: 100%;
}

.page-title.album-title-break-after-dash,
.page-title.album-title-break-before-looking-glass {
    row-gap: 0.45em;
}

.album-title.hkh-glyphs.album-title-wide-tracking {
    letter-spacing: 1.6px;
}

.album-title.trajan {
    font-size: 1.1rem;
    font-family: 'TrajanPro-Regular', "Trajan Pro", "Times New Roman", serif;
    font-weight: normal;
    letter-spacing: 0.4px;
    margin-top: 0.6rem;
    margin-bottom: 0.8rem;
    opacity: 0.96;
}

.album-title.olde-english {
    font-size: 2rem;
    font-family: 'OldeEnglish', serif;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: 0rem;
    margin-bottom: 0.1rem;
    opacity: 0.85;
}

.album-description {
    font-family: 'TrajanPro-Regular', "Trajan Pro", "Times New Roman", serif;
    font-size: 0.9rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.70;
}

.streaming-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    padding-inline: clamp(0.5rem, 6%, 5rem);
    margin-inline: auto;
    margin-bottom: 1.2rem;
    flex-wrap: nowrap;
    opacity: 0.72;
    box-sizing: border-box;
}

.streaming-icons a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stream-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stream-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.view-details-button {
    background: url('../shared/images/frame_gothic church_var sepia.png') center/contain no-repeat;
    background-size: 100% 100%;
    border: none;
    padding: 1.2rem 2.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.96;
    text-decoration: none;
}

.view-details-button:hover {
    filter: blur(1px);
    opacity: 0.6;
    transform: scale(0.98);
}

.details-button-text {
    font-family: 'TrajanPro-Regular', "Trajan Pro", "Times New Roman", serif;
    font-size: 1rem;
    color: #000000;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: bold;
    z-index: 1;
    position: relative;
    margin: 0 3.8rem;
}

/* ===========================================
   FOOTER
   =========================================== */
footer {
    background: rgba(0, 0, 0, 0.098);
    padding: 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    --social-icon-size: clamp(22px, 5.5vw, 32px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.35rem, calc((100vw - 2.5rem - 7 * var(--social-icon-size)) / 6), 1.7rem);
    margin-bottom: 1.2rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    opacity: 0.90;
}

.social-link {
    width: var(--social-icon-size);
    height: var(--social-icon-size);
    flex-shrink: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-link:hover {
    filter: brightness(0.6);
}

footer p {
    font-family: 'TrajanPro-Regular', "Trajan Pro", "Times New Roman", serif;
    font-size: 0.7rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 0px;
    opacity: 0.96;
}

.copyright-notice {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 0.3em;
    row-gap: 0;
    max-width: 100%;
}

.copyright-brand,
.copyright-rights {
    white-space: nowrap;
}

footer p a {
    transition: var(--transition);
    color: #f3ecde;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: none;
}

.footer-logo {
    display: inline-block;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    opacity: 1;
}

.footer-logo-img {
    width: 4.34rem;
    height: 4.34rem;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(0.6);
}

.social-icon {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0.6);
}

/* ===========================================
   EVENTS ACCESS MODAL
   =========================================== */
.events-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.events-modal[hidden] {
    display: none;
}

.events-modal-content {
    position: relative;
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(243, 236, 222, 0.3);
    text-align: center;
}

.events-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: #f3ecde;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.events-modal-close:hover {
    opacity: 1;
}

.events-modal-content h2 {
    font-family: var(--menu-font);
    font-size: 1.2rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.events-access-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.events-access-form .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.4rem;
}

.events-access-form label {
    font-family: var(--menu-font);
    font-size: 0.75rem;
    color: #f3ecde;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-access-form input {
    padding: 0.6rem 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(243, 236, 222, 0.25);
    color: #f3ecde;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

.events-access-form input:focus {
    outline: none;
    border-color: rgba(243, 236, 222, 0.6);
}

.events-access-error {
    color: #c45c5c;
    font-family: var(--menu-font);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-access-submit {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(243, 236, 222, 0.4);
    color: #f3ecde;
    font-family: var(--menu-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.events-access-submit:hover {
    border-color: #f3ecde;
    background: rgba(243, 236, 222, 0.08);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1200px) {
    .music-container {
        gap: 2.5rem 3rem;
    }

    .album-card {
        flex: 0 1 300px;
    }
}

@media (max-width: 900px) {
    .music-container {
        gap: 3rem 2rem;
    }

    .album-card {
        flex: 0 1 280px;
        min-width: 260px;
    }
}

@media (max-width: 960px) {
    .album-layout {
        flex-direction: column;
        align-items: center;
        max-width: 460px;
    }

    .album-info-panel {
        width: 100%;
        flex: 1 1 auto;
    }

    .album-player-panel {
        width: 100%;
        flex: 1 1 auto;
    }
}

@media (max-width: 768px) {
    .main-nav {
        top: 0;
        padding: 1rem 0.75rem;
        gap: 0.75rem;
        background: rgba(0, 0, 0, 0.9);
    }

    .nav-brand:has(.nav-logo) {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-left: 0.25rem;
        margin-right: 0.05rem;
        margin-top: -0.55rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
        margin-right: auto;
        flex-shrink: 0;
        margin-top: -0.6rem;
    }

    .nav-social {
        margin-right: 0;
        gap: 0.65rem;
        flex-shrink: 0;
    }

    .section {
        padding: 6rem 1rem 3rem;
    }

    .section-separator {
        padding: 1.5rem 0;
    }

    .separator-line {
        max-width: 200px;
    }

    .album-page {
        padding: 6rem 1rem 2rem;
    }

    .album-page::before {
        height: calc(clamp(2.2rem, 9vw, 3.2rem) + 1.75rem + 3rem + 4px);
    }

    .page-title-header {
        top: 6rem;
        gap: 1.5rem;
    }

    .page-title.hkh-glyphs {
        font-size: 1rem;
        letter-spacing: 1.4px;
    }

    .album-info-panel {
        padding: 1rem 2rem;
    }

    .album-cover {
        width: min(464px, calc(100vw - 3rem));
        margin: 1rem auto 2rem;
    }

    .album-info-panel .view-details-button {
        min-width: 250px;
        min-height: 68px;
        padding: 1.2rem 2.75rem;
    }

    .tracklist {
        padding: 1.25rem;
    }

    .track-item {
        grid-template-columns: 1fr auto;
        gap: 0.5rem 0.75rem;
    }

    .track-lyrics {
        grid-column: 1;
        justify-self: start;
        margin-top: -0.15rem;
    }

    .track-duration {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
    }

    .released-records-header {
        margin-bottom: 2.5rem;
        gap: 1rem;
    }

    .released-records-title {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .music-container {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
    }

    .album-card {
        width: 100%;
        max-width: 340px;
        flex: 0 1 auto;
        min-width: 0;
    }

    .album-cover {
        width: min(464px, calc(100vw - 3rem));
        margin: 1.5rem auto;
    }

    .view-details-button {
        min-width: 200px;
        min-height: 68px;
        padding: 1.2rem 2rem;
    }

    .streaming-icons {
        gap: 1rem;
        padding-inline: 0.5rem;
    }

    .social-links {
        padding: 0 0.25rem;
    }
}

/* ===========================================
   THROUGH THE VEIL — MULTI-LINE TITLE OVERRIDES
   =========================================== */
   .page-title-header {
    gap: 2rem;
}

.album-page::before {
    height: calc(1.1rem * 1.35 * 2 + 0.45rem + 1.6rem + 1.6rem + 3rem + 4px);
}

@media (max-width: 768px) {
    .page-title-header {
        gap: 1rem;
    }

    .album-page::before {
        height: calc(1rem * 1.35 * 2 + 0.45rem + 1rem + 1.5rem + 3rem + 4px);
    }
}