/* =============================================================
   72 Seaside Vinyl – Main Stylesheet
   ============================================================= */

/* ── Custom properties ── */
:root {
    --color-black:    #0c2e31;
    --color-dark:     #0e4143;
    --color-mid:      #155f64;
    --color-gold:     #c9a84c;
    --color-gold-lt:  #e6c96a;
    --color-white:    #f5f5f0;
    --color-muted:    #93c8cb;
    --color-accent:   #16767b;

    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body:    'Helvetica Neue', Arial, sans-serif;

    --header-h: 68px;
    --section-pad: 80px;
    --intro-overlap: 180px;
    --border-radius: 4px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.7;
}

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

a:hover {
    color: var(--color-gold-lt);
}

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

address { font-style: normal; }

/* ── Utilities ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-gold-lt);
    transform: translateY(-2px);
}

/* ── Section common ── */
.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-white);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-intro {
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Header / Navigation ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.97);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    backdrop-filter: blur(6px);
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-over-hero {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}

.site-header.is-over-hero .site-nav a {
    color: rgba(245, 245, 240, 0.88);
}

.site-header.is-over-hero .site-nav a:hover {
    color: var(--color-gold-lt);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white) !important;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.logo-record {
    font-size: 1.5rem;
    color: var(--color-gold);
    line-height: 1;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.logo-text { font-weight: 700; }

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: height var(--transition);
}

.site-header.is-over-hero .logo-img {
    height: 88px;
}

.site-header.is-over-hero .site-logo {
    margin-top: 8px;
}

.site-header.is-over-hero .header-inner {
    height: 92px;
}

/* Mobile menu open state: keep dark navbar with small logo */
.site-header.has-mobile-menu-open {
    background: rgba(17, 17, 17, 0.97);
    border-bottom-color: rgba(201, 168, 76, 0.25);
    backdrop-filter: blur(6px);
}

.site-header.has-mobile-menu-open.is-over-hero .logo-img {
    height: 48px;
}

.site-header.has-mobile-menu-open.is-over-hero .header-inner {
    height: var(--header-h);
}

.site-header.has-mobile-menu-open.is-over-hero .site-logo {
    margin-top: 0;
}

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

.site-nav a {
    color: var(--color-muted);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.site-nav a:hover {
    color: var(--color-gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px 8px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--color-white);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--color-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* ── Intro Teaser ── */
.intro-teaser {
    margin-top: calc(-1 * var(--intro-overlap));
    position: relative;
    z-index: 2;
    padding: 0 0 52px;
    background: linear-gradient(to bottom, transparent var(--intro-overlap), var(--color-dark) var(--intro-overlap));
}

.intro-teaser-card {
    background: rgba(11, 52, 55, 0.66);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: end;
}

.intro-kicker {
    color: var(--color-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.76rem;
    margin-bottom: 10px;
}

.intro-teaser-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    line-height: 1.25;
    color: var(--color-gold-lt);
    margin-bottom: 14px;
}

.intro-teaser-content p {
    color: #d4d9d9;
    line-height: 1.85;
    margin-bottom: 12px;
    max-width: 860px;
}

.intro-teaser-content .intro-closing {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    margin-bottom: 0;
}

.intro-teaser-cta {
    margin-top: 20px;
}

/* ── Store Photos ── */
.store-photos {
    padding: 60px 0;
    background: var(--color-dark);
}

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

.photo-item.photo-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* ── Real photo frames ── */
.photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: var(--color-mid);
    border: 0;
    padding: 0;
    cursor: pointer;
    text-align: inherit;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-frame:hover .photo-img {
    transform: scale(1.04);
}

.photo-frame:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px;
    background: rgba(5, 17, 18, 0.92);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox-figure {
    max-width: min(78vw, 980px);
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gallery-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(86vh - 56px);
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-caption {
    text-align: center;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(201, 168, 76, 0.2);
    color: var(--color-gold-lt);
}

.gallery-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.25rem;
}

.gallery-lightbox-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ── About Section ── */
.about {
    padding: var(--section-pad) 0;
    background: var(--color-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-card {
    background: var(--color-mid);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    transition: border-color var(--transition), transform var(--transition);
}

.highlight-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.highlight-record-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    min-height: 28px;
}

.highlight-card-title-behind {
    position: absolute;
    left: 34px;
    z-index: 0;
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: rgba(245, 245, 240, 0.82);
    font-family: var(--font-heading);
    pointer-events: none;
    white-space: nowrap;
}

.highlight-record {
    position: relative;
    z-index: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        #333 0%,
        #222 19%,
        #1a1a1a 20%,
        #111 21%,
        #1a1a1a 52%,
        #111 53%
    );
    border: 1px solid rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.16);
}

.highlight-record-label {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.9);
    display: block;
}

.highlight-card p {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* ── Releases Section ── */
.releases {
    padding: var(--section-pad) 0;
    background: var(--color-dark);
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.release-card {
    background: var(--color-mid);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.release-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

.release-cover {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.release-cover-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.record-visual {
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        #333 0%,
        #222 20%,
        #1a1a1a 21%,
        #111 22%,
        #1a1a1a 50%,
        #111 51%
    );
    border: 2px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(0,0,0,0.3);
}

.record-label {
    width: 30%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.06em;
}

.release-info {
    padding: 16px;
}

.release-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-artist {
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.release-genre {
    font-size: 0.75rem;
    color: var(--color-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.release-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
}

.releases-cta {
    text-align: center;
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* ── Contact Section ── */
.contact {
    padding: var(--section-pad) 0;
    background: var(--color-black);
}

.contact-content {
    display: grid;
    gap: 30px;
    align-items: start;
}

.contact-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 6px;
}

.contact-form-field {
    display: grid;
    gap: 6px;
}

.contact-form label {
    color: var(--color-muted);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(201, 168, 76, 0.24);
    border-radius: var(--border-radius);
    background: rgba(6, 35, 37, 0.85);
    color: var(--color-white);
    padding: 11px 12px;
    font: inherit;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.35);
}

.contact-submit {
    margin-top: 6px;
    justify-self: start;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.flash-message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin: 0 0 18px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-gold);
    background: rgba(6, 35, 37, 0.85);
    color: var(--color-white);
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    animation: flashSlideIn 320ms ease-out;
}

.flash-message--success {
    border-left-color: var(--color-gold);
}

.flash-message--success .flash-message-icon {
    color: var(--color-gold-lt);
}

.flash-message--error {
    border-left-color: #d97a6c;
}

.flash-message--error .flash-message-icon {
    color: #f0a896;
}

.flash-message-icon {
    font-size: 1.15rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.flash-message-text {
    flex: 1;
}

.flash-message-close {
    background: transparent;
    border: 0;
    color: var(--color-muted);
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 2px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 150ms ease;
}

.flash-message-close:hover {
    opacity: 1;
    color: var(--color-gold-lt);
}

.flash-message--hidden {
    display: none;
}

/* ── Flash messages on light (shop) pages ── */

.shop-page .flash-message {
    background: #f5f5f5;
    color: #1a1a1a;
    border-left-color: var(--color-mid);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
}

.shop-page .flash-message--success {
    background: #f0faf1;
    border-left-color: #388e3c;
    color: #1b5e20;
}

.shop-page .flash-message--success .flash-message-icon {
    color: #388e3c;
}

.shop-page .flash-message--error {
    background: #fff5f5;
    border-left-color: #e53935;
    color: #b71c1c;
}

.shop-page .flash-message--error .flash-message-icon {
    color: #e53935;
}

.shop-page .flash-message--warning {
    background: #fffbf0;
    border-left-color: #f9a825;
    color: #7b5800;
}

.shop-page .flash-message--warning .flash-message-icon {
    color: #f9a825;
}

.shop-page .flash-message--info {
    background: #f0f7f8;
    border-left-color: var(--color-mid);
    color: #0d3c54;
}

.shop-page .flash-message-close {
    color: #aaa;
}

.shop-page .flash-message-close:hover {
    color: #333;
    opacity: 1;
}

@keyframes flashSlideIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-block h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.contact-icon {
    margin-right: 8px;
}

.contact-block address,
.contact-block p {
    color: #cccccc;
    line-height: 1.9;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    color: #cccccc;
}

.hours-table td {
    padding: 5px 0;
    vertical-align: top;
}

.hours-table td:first-child {
    padding-right: 20px;
    color: var(--color-muted);
    min-width: 160px;
}

.social-links {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    color: var(--color-muted) !important;
    font-size: 0.875rem;
    transition: color var(--transition);
}

.social-link .contact-icon {
    width: 16px;
    text-align: center;
}

.social-link:hover {
    color: var(--color-gold) !important;
}

.contact-map {
    width: 100%;
}

.contact-map-iframe {
    width: 100%;
    min-height: 360px;
    background: var(--color-mid);
    border: 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: block;
}

/* ── Footer ── */
.site-footer {
    background: var(--color-dark);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 32px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.95rem;
}

.footer-copy {
    color: var(--color-muted);
    font-size: 0.8rem;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    :root {
        --intro-overlap: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-teaser-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px;
    }

    .intro-teaser-cta {
        justify-self: start;
    }

    .contact-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .photo-item.photo-large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .photo-item.photo-large .photo-frame {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    :root { --section-pad: 56px; }

    .nav-toggle { display: block; }

    .site-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--color-dark);
        flex-direction: column;
        padding: 16px 24px;
        gap: 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    }

    .site-nav.open { display: flex; }

    .site-nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

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

    .photo-item.photo-large { grid-column: 1; }

    .photo-grid .photo-item:nth-child(n + 4) {
        display: none;
    }

    .gallery-lightbox {
        gap: 12px;
        padding: 64px 12px 20px;
    }

    .gallery-lightbox-figure {
        max-width: calc(100vw - 80px);
    }

    .gallery-lightbox-image {
        max-height: calc(80vh - 56px);
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .about-highlights { grid-template-columns: 1fr; }

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

    .contact-map-iframe { min-height: 300px; }

    .footer-inner { flex-direction: column; text-align: center; }
}

@media (min-width: 901px) and (max-width: 1399px) {
    .intro-teaser-card {
        max-width: 72%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1400px) {
    .intro-teaser-card {
        max-width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* =============================================================
   Shop pages – light background, dark text
   ============================================================= */

.shop-page {
    background: #fff;
    color: #1a1a1a;
    padding-top: var(--header-h);
    min-height: calc(100vh - var(--header-h) - 80px);
}

.shop-page a {
    color: var(--color-dark);
}

.shop-page a:hover {
    color: var(--color-gold);
}

/* ── Breadcrumb ── */

.record-breadcrumb {
    background: #f5f5f0;
    border-bottom: 1px solid #e8e8e3;
}

.record-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 10px 0;
    font-size: 0.8rem;
    color: #888;
}

.record-breadcrumb__list li + li::before {
    content: '›';
    margin: 0 7px;
    color: #ccc;
}

.record-breadcrumb__list a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

.record-breadcrumb__list a:hover {
    color: var(--color-gold);
}

.record-breadcrumb__list [aria-current="page"] {
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 260px;
}

/* ── Shop index ── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shop-index-header {
    background: var(--color-black);
    color: var(--color-white);
    padding: 48px 0 40px;
    margin-bottom: 0;
}

.shop-index-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 6px;
}

.shop-index-subtitle {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.shop-index-body {
    padding-top: 36px;
    padding-bottom: 64px;
}

.shop-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.shop-search__input {
    flex: 1;
    padding: 13px 16px;
    border: 1.5px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
    color: #1a1a1a;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.shop-search__input:focus {
    outline: none;
    border-color: var(--color-mid);
    box-shadow: 0 0 0 3px rgba(21, 95, 100, 0.1);
}

.shop-search__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--color-dark);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.shop-search__btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.shop-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.shop-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 14px;
    background: #eef4f4;
    border: 1px solid #c8dfe0;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--color-dark);
    font-weight: 600;
}

.shop-filter-chip__label {
    color: #888;
    font-weight: 400;
}

.shop-filter-chip__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #c8dfe0;
    color: var(--color-dark);
    font-size: 0.85rem;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    margin-left: 2px;
}

.shop-filter-chip__remove:hover {
    background: #c62828;
    color: #fff;
}

.shop-results-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 24px;
}

.shop-results-meta a {
    color: var(--color-mid);
}

.shop-empty {
    text-align: center;
    padding: 64px 24px;
    color: #aaa;
    font-size: 1rem;
}

/* ── Record card grid ── */

.shop-records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 28px;
}

.record-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.record-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #f0f0f0;
    margin-bottom: 12px;
    position: relative;
}

.record-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.record-card:hover .record-card__image img {
    transform: scale(1.05);
}

.record-card__no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.record-card__artist {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-accent);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.record-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.record-card:hover .record-card__title {
    color: var(--color-dark);
}

.record-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #aaa;
}

.record-card__price {
    font-weight: 700;
    color: var(--color-dark);
}

/* ── Shop pagination ── */

.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.shop-pagination a,
.shop-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1.5px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    color: #444;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    background: #fff;
}

.shop-pagination a:hover {
    background: #f5f5f5;
    border-color: var(--color-mid);
}

.shop-pagination .current {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
    font-weight: 700;
}

/* ── Artist link on detail page ── */

.record-detail__artist-link {
    color: var(--color-accent) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.record-detail__artist-link:hover {
    color: var(--color-gold) !important;
    text-decoration: underline;
}

.genre-badge--link {
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.genre-badge--link:hover {
    background: var(--color-dark);
    color: #fff;
}

/* ── Shop index responsive ── */

@media (max-width: 640px) {
    .shop-search {
        flex-direction: column;
    }

    .shop-search__btn span {
        display: none;
    }

    .shop-search__btn {
        justify-content: center;
        padding: 13px;
    }

    .shop-records-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ── Record detail layout ── */

.record-detail {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    padding-top: 56px;
    padding-bottom: 56px;
    align-items: start;
}

/* Third column: artist cutout — only visible when wide enough */
.record-detail--with-cutout {
    grid-template-columns: 340px 1fr 200px;
    align-items: end;
}

.record-detail__cutout {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
}

.record-detail__cutout-img {
    max-width: 200px;
    width: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.92;
}

/* Hide cutout when there isn't room for it to breathe */
@media (max-width: 1024px) {
    .record-detail--with-cutout {
        grid-template-columns: 340px 1fr;
    }

    .record-detail__cutout {
        display: none;
    }
}

.record-cover-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

.record-cover-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.record-cover-trigger .record-cover-img {
    display: block;
    transition: transform 0.3s ease;
}

.record-cover-trigger:hover .record-cover-img {
    transform: scale(1.02);
}

.record-cover-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease;
    border-radius: var(--border-radius);
}

.record-cover-trigger:hover .record-cover-zoom {
    opacity: 1;
}

.record-thumbnails {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.record-thumbnail-btn {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 3px;
    background: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.record-thumbnail-btn:hover {
    border-color: var(--color-gold);
    transform: translateY(-1px);
}

.record-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.record-cover-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eee;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.record-detail__artist {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.record-detail__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 6px;
}

.record-detail__year {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 28px;
}

.record-detail__price-block {
    margin-bottom: 16px;
}

.record-detail__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 6px;
}

.record-pickup {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #666;
}

.record-pickup svg {
    flex-shrink: 0;
    color: var(--color-mid);
}

.record-stock {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.record-stock--in {
    background: #e6f4ea;
    color: #2e7d32;
}

.record-stock--out {
    background: #fce8e6;
    color: #c62828;
}

.record-reserve-block {
    margin-bottom: 28px;
}

.btn-reserve {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black) !important;
    padding: 14px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    margin-bottom: 8px;
}

.btn-reserve:hover {
    background: var(--color-dark);
    color: var(--color-white) !important;
    transform: translateY(-2px);
}

.btn-basket {
    display: inline-block;
    background: var(--color-dark);
    color: var(--color-white) !important;
    padding: 14px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    margin-bottom: 8px;
}

.btn-basket:hover {
    background: var(--color-gold);
    color: var(--color-black) !important;
    transform: translateY(-2px);
}

.btn-basket--in-basket {
    background: var(--color-mid);
}

.record-reserve-note {
    font-size: 0.8rem;
    color: #888;
}

.genre-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.genre-badge {
    background: #f0f0f0;
    color: #444;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ── Record sections (tracklist, credits, video) ── */

.record-section-wrap {
    padding: 48px 0;
    border-top: 1px solid #eee;
    background: #fff;
}

.record-section-wrap--alt {
    background: #fafafa;
}

.record-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-gold);
    margin-bottom: 28px;
}

/* ── Tracklist ── */

.tracklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tracklist__heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-mid);
    padding: 20px 0 8px;
    border-bottom: 1px solid #eee;
}

.tracklist__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.tracklist__position {
    width: 28px;
    flex-shrink: 0;
    font-size: 0.82rem;
    color: #aaa;
    font-weight: 600;
}

.tracklist__title {
    flex: 1;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.tracklist__duration {
    flex-shrink: 0;
    font-size: 0.82rem;
    color: #aaa;
    font-variant-numeric: tabular-nums;
    width: 40px;
    text-align: right;
}

.tracklist__video-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--color-mid) !important;
    font-weight: 600;
}

.tracklist__video-link:hover {
    color: var(--color-gold) !important;
}

/* ── Credits ── */

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.credits-group h3 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 10px;
}

.credits-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credits-group ul li {
    font-size: 0.95rem;
    color: #1a1a1a;
    padding: 3px 0;
}

.credits-role {
    font-size: 0.78rem;
    color: #aaa;
    margin-left: 6px;
}

/* ── Videos ── */

.record-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 540px), 1fr));
    gap: 28px;
}

.video-embed-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #000;
}

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

.video-links {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.video-links li {
    padding: 4px 0;
}

/* ── YouTube track video modal ── */

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
}

.video-modal__content {
    position: relative;
    z-index: 1;
    width: min(860px, 92vw);
}

.video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.video-modal__close:hover {
    opacity: 1;
}

/* ── Basket header icon ── */

.basket-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.basket-count-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Basket page ── */

.basket-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.basket-table th {
    text-align: left;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888;
    padding: 0 12px 12px 0;
    border-bottom: 2px solid #eee;
}

.basket-table th:last-child {
    text-align: right;
}

.basket-table td {
    padding: 16px 12px 16px 0;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.basket-table td:last-child {
    text-align: right;
}

.basket-item-cover {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 2px;
}

.basket-item-cover-placeholder {
    width: 60px;
    height: 60px;
    background: #eee;
    border-radius: 2px;
}

.basket-item-name {
    font-weight: 600;
    color: #1a1a1a;
    display: block;
}

.basket-item-artist {
    font-size: 0.85rem;
    color: #888;
}

.basket-total {
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.basket-total span {
    font-size: 1.5rem;
}

.basket-empty {
    text-align: center;
    padding: 64px 24px;
    color: #888;
}

.basket-empty h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 12px;
}

.basket-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-remove {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 0.8rem;
    padding: 4px 8px;
    transition: color var(--transition);
}

.btn-remove:hover {
    color: #c62828;
}

/* ── Checkout form ── */

.checkout-wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 56px 24px;
}

.checkout-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-black);
    margin-bottom: 8px;
}

.checkout-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.checkout-summary {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 20px 24px;
    margin-bottom: 36px;
}

.checkout-summary-title {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888;
    margin-bottom: 12px;
}

.checkout-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 4px 0;
    color: #1a1a1a;
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 0 0;
    margin-top: 8px;
    border-top: 1px solid #eee;
    color: var(--color-dark);
}

.shop-form-group {
    margin-bottom: 20px;
}

.shop-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.shop-form-group input,
.shop-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: #1a1a1a;
    transition: border-color var(--transition);
    background: #fff;
}

.shop-form-group input:focus,
.shop-form-group textarea:focus {
    outline: none;
    border-color: var(--color-mid);
    box-shadow: 0 0 0 3px rgba(21, 95, 100, 0.1);
}

.shop-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkout-pickup-note {
    background: #f0f7f8;
    border-left: 3px solid var(--color-mid);
    padding: 14px 18px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 0.875rem;
    color: #1a1a1a;
    margin-bottom: 28px;
}

/* ── Confirmation page ── */

.confirm-wrap {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.confirm-icon {
    width: 72px;
    height: 72px;
    background: #e6f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #2e7d32;
}

.confirm-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-dark);
    margin-bottom: 12px;
}

.confirm-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ── Shop responsive ── */

@media (max-width: 768px) {
    .record-detail {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .record-cover-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .record-detail__title {
        font-size: 1.5rem;
    }

    .record-detail__price {
        font-size: 1.6rem;
    }

    .basket-table th:nth-child(3),
    .basket-table td:nth-child(3) {
        display: none;
    }

    .basket-actions {
        justify-content: stretch;
        flex-direction: column;
    }
}

/* =============================================================
   Artist detail page
   ============================================================= */

/* ── Hero ── */

.artist-hero {
    position: relative;
    background: var(--color-black);
    background-size: cover;
    background-position: center top;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.artist-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(12, 46, 49, 0.96) 40%,
        rgba(12, 46, 49, 0.55) 75%,
        rgba(12, 46, 49, 0.25)
    );
    z-index: 1;
}

/* When no banner image the overlay can be lighter */
.artist-hero:not(.artist-hero--has-banner) .artist-hero__overlay {
    background: linear-gradient(135deg, var(--color-black) 60%, var(--color-dark) 100%);
}

.artist-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 0;
    width: 100%;
}

.artist-hero__info {
    flex: 1;
    padding-bottom: 44px;
    min-width: 0;
}

.artist-hero__logo {
    max-height: 72px;
    max-width: 300px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 16px;
}

.artist-hero__name {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 14px;
}

/* Visually hidden when a logo image is shown, still available to screen readers */
.artist-hero__name--sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.artist-hero__meta {
    color: var(--color-muted);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.artist-hero__socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.artist-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--color-muted);
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.artist-social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.artist-hero__cutout {
    flex-shrink: 0;
    width: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
}

.artist-hero__cutout-img {
    max-height: 440px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

/* ── Biography ── */

.artist-bio-section {
    background: #f8f8f5;
    border-bottom: 1px solid #e4e4df;
    padding: 48px 0;
}

.artist-bio {
    max-width: 820px;
}

.artist-bio__heading {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-dark);
    margin-bottom: 14px;
}

.artist-bio__text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #333;
}

.artist-bio__text-wrap {
    position: relative;
    max-height: 130px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.artist-bio__text-wrap--expanded {
    max-height: 2000px;
}

.artist-bio__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(248, 248, 245, 0), #f8f8f5);
    pointer-events: none;
}

.artist-bio__toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}

.artist-bio__toggle:hover {
    color: var(--color-gold);
}

.artist-bio__toggle-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.artist-bio__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 24px;
    font-size: 0.85rem;
}

.artist-bio__tags dt {
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.artist-bio__tags dd {
    color: var(--color-dark);
    margin: 0;
}

/* ── Artist records section ── */

.artist-records-wrap {
    padding-top: 40px;
    padding-bottom: 64px;
}

.artist-records-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.artist-records-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #1a1a1a;
}

.artist-records-header .shop-results-meta {
    margin-bottom: 0;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .artist-hero {
        min-height: 0;
    }

    .artist-hero__inner {
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
        padding-top: 32px;
    }

    .artist-hero__cutout {
        width: 160px;
        margin-bottom: -4px;
    }

    .artist-hero__cutout-img {
        max-height: 220px;
        max-width: 160px;
    }

    .artist-hero__info {
        text-align: center;
        padding-bottom: 32px;
        width: 100%;
    }

    .artist-hero__logo {
        margin-left: auto;
        margin-right: auto;
    }

    .artist-hero__socials {
        justify-content: center;
    }

    .artist-records-header {
        flex-direction: column;
        gap: 4px;
    }
}
