/* style.css - EArt Collections design system
   Design tokens are injected as CSS custom properties via site_tokens_css() */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    padding-top: var(--header-height, 68px);
    background: var(--color-bg, #fff);
    color: var(--color-text, #1c1814);
    font-family: var(--font-body, system-ui, sans-serif);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--color-accent, #b8820a);
    text-decoration: none;
}

a:hover { color: var(--color-accent-strong, #9a6e08); }

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

h1, h2, h3, h4 {
    font-family: var(--font-display, system-ui, sans-serif);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; font-weight: 400; }

p { margin: 0 0 1rem; }

/* ── Container ─────────────────────────────────────────────────────────────── */

.container {
    max-width: var(--content-width, 1240px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Header ────────────────────────────────────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height, 68px);
    background: rgba(14, 22, 33, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 100;
}

.site-header__inner {
    max-width: var(--content-width, 1240px);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
}

.logo-mark {
    font-family: var(--font-display, system-ui, sans-serif);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--color-accent, #b8820a);
    background: rgba(184,130,10,0.15);
    border: 1px solid rgba(184,130,10,0.4);
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.logo-divider {
    color: rgba(255,255,255,0.2);
    font-size: 1.1rem;
}

.logo-name {
    font-family: var(--font-display, system-ui, sans-serif);
    font-weight: 300;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--color-hero-text, #f0ece4);
}

/* ── Navigation ────────────────────────────────────────────────────────────── */

.site-nav { margin-left: auto; }

.site-nav__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.site-nav__list a {
    color: rgba(240,236,228,0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.4rem 0.7rem;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    display: block;
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
    color: var(--color-accent, #b8820a);
    background: rgba(255,255,255,0.06);
}

.site-nav__item--has-dropdown { position: relative; }

.nav-chevron::after {
    content: ' \25BE';
    font-size: 0.75em;
    opacity: 0.6;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #0e1621;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-small, 6px);
    padding: 0.4rem 0;
    min-width: 240px;
    list-style: none;
    margin: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 200;
}

.nav-dropdown.is-open { display: block; }

.nav-dropdown li a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-size: 0.85rem;
    color: rgba(240,236,228,0.8);
    border-radius: 0;
}

.nav-dropdown li a:hover {
    color: var(--color-accent, #b8820a);
    background: rgba(255,255,255,0.06);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    margin-left: auto;
    min-width: 52px;
}

.nav-hamburger span:not(.nav-hamburger__label) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-hero-text, #f0ece4);
    border-radius: 2px;
    transition: transform 0.2s;
}

.nav-hamburger__label {
    font-family: var(--font-display, system-ui, sans-serif);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(240,236,228,0.6);
    margin-top: 2px;
}

/* ── Layout ─────────────────────────────────────────────────────────────────── */

.page-wrapper {
    max-width: var(--content-width, 1240px);
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.content-layout--single {
    grid-template-columns: 1fr;
    max-width: 780px;
}

.content-main { min-width: 0; }

.content-sidebar {
    position: sticky;
    top: calc(var(--header-height, 68px) + 1.5rem);
}

/* ── Section pattern ─────────────────────────────────────────────────────────── */

.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--color-surface, #f5f2ee);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 0.5rem; }
.section-header p { color: var(--color-text-muted, #6b6560); max-width: 560px; margin: 0 auto; }

.section-header--left { text-align: left; }
.section-header--left p { margin: 0; }

.section-cta-row {
    text-align: center;
    margin-top: 2.5rem;
}

.section-cta-centered { text-align: center; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */

.site-hero {
    position: relative;
    background: var(--color-hero, #0e1621);
    overflow: hidden;
    padding: 6rem 0 0;
}

.site-hero__backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-art-panel {
    position: absolute;
    border-radius: 12px;
    opacity: 0.15;
}

.hero-art-panel--1 {
    width: 320px; height: 420px;
    right: 8%; top: -40px;
    background: linear-gradient(145deg, #4b0082, #1e90ff);
    transform: rotate(-8deg);
}

.hero-art-panel--2 {
    width: 200px; height: 280px;
    right: 26%; top: 20px;
    background: linear-gradient(145deg, #1b4332, #95d5b2);
    transform: rotate(5deg);
}

.hero-art-panel--3 {
    width: 180px; height: 240px;
    right: 4%; top: 200px;
    background: linear-gradient(145deg, #b8820a, #f2e8cc);
    transform: rotate(3deg);
}

.hero-art-panel--4 {
    width: 260px; height: 320px;
    right: 36%; top: 180px;
    background: linear-gradient(145deg, #6a0572, #ff4d6d);
    transform: rotate(-4deg);
    opacity: 0.1;
}

.site-hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding-bottom: 3rem;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent, #b8820a);
    background: rgba(184,130,10,0.15);
    border: 1px solid rgba(184,130,10,0.35);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-hero-text, #f0ece4);
    margin-bottom: 0;
}

.hero-headline-accent {
    display: block;
    color: var(--color-accent, #b8820a);
}

.hero-subtext {
    font-size: 1.05rem;
    color: rgba(240,236,228,0.7);
    margin: 1.5rem 0 2rem;
    max-width: 520px;
    line-height: 1.65;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero trust strip */
.hero-trust-strip {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.hero-trust-strip__inner {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 180px;
}

.trust-badge__icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(184,130,10,0.2);
    border: 1px solid rgba(184,130,10,0.35);
    flex-shrink: 0;
}

.trust-badge__label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-hero-text, #f0ece4);
    margin-bottom: 0.2rem;
}

.trust-badge__desc {
    font-size: 0.8rem;
    color: rgba(240,236,228,0.55);
    line-height: 1.4;
}

/* ── Page Hero (internal pages) ──────────────────────────────────────────────── */

.page-hero {
    padding: 4rem 0;
}

.page-hero--dark {
    background: var(--color-hero, #0e1621);
    color: var(--color-hero-text, #f0ece4);
}

.page-hero--dark h1 { color: var(--color-hero-text, #f0ece4); font-weight: 200; }
.page-hero--dark p  { color: rgba(240,236,228,0.7); max-width: 560px; }

.hero-sub {
    color: rgba(240,236,228,0.7);
    font-size: 1rem;
    margin: 0.5rem 0 0;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */

.btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-small, 6px);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-accent, #b8820a);
    color: #fff;
    border-color: var(--color-accent, #b8820a);
}

.btn--primary:hover {
    background: var(--color-accent-strong, #9a6e08);
    border-color: var(--color-accent-strong, #9a6e08);
    color: #fff;
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-text, #1c1814);
    border-color: var(--color-border, #ddd8d0);
}

.btn--outline-dark:hover {
    border-color: var(--color-accent, #b8820a);
    color: var(--color-accent, #b8820a);
}

.btn--accent {
    background: var(--color-accent, #b8820a);
    color: #fff;
    border-color: var(--color-accent, #b8820a);
}

.btn--accent:hover {
    background: var(--color-accent-strong, #9a6e08);
    color: #fff;
}

.btn--hero-primary {
    background: var(--color-accent, #b8820a);
    color: #fff;
    border-color: var(--color-accent, #b8820a);
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
}

.btn--hero-primary:hover {
    background: var(--color-accent-strong, #9a6e08);
    color: #fff;
}

.btn--hero-secondary {
    background: transparent;
    color: var(--color-hero-text, #f0ece4);
    border-color: rgba(240,236,228,0.3);
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
}

.btn--hero-secondary:hover {
    border-color: rgba(240,236,228,0.7);
    color: #fff;
}

.btn--sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
}

/* ── Collection cards ────────────────────────────────────────────────────────── */

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collections-grid--full {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.collections-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.collection-card {
    background: #fff;
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.collection-card:hover {
    box-shadow: var(--shadow-card-hover, 0 6px 28px rgba(0,0,0,0.14));
    transform: translateY(-2px);
}

.collection-card__thumb {
    height: 180px;
    width: 100%;
}

.collection-card__thumb--sm { height: 120px; }

.collection-card__thumb-link { display: block; }

.collection-card__body { padding: 1.1rem 1.1rem 1.25rem; }

.collection-card__title {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.collection-card__title a { color: var(--color-text, #1c1814); }
.collection-card__title a:hover { color: var(--color-accent, #b8820a); }

.collection-card__style {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent, #b8820a);
    margin: 0 0 0.5rem;
}

.collection-card__mood {
    font-size: 0.8rem;
    margin: 0 0 0.5rem;
}

.collection-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-muted, #6b6560);
    margin: 0;
    line-height: 1.5;
}

.collection-card--sm { border-radius: var(--radius-small, 6px); }

/* ── Artist cards ────────────────────────────────────────────────────────────── */

.artists-section-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.artists-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.artist-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    padding: 1.5rem 1rem;
    transition: box-shadow 0.2s;
}

.artist-card:hover { box-shadow: var(--shadow-card-hover); }

.artist-card--full {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    padding: 1.5rem;
}

.artist-card__avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.artist-card--full .artist-card__avatar { margin-bottom: 0; }

.artist-card__avatar--lg { width: 100px; height: 100px; font-size: 2rem; }

.artist-card__avatar-link { text-decoration: none; }

.artist-card__name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.2rem;
    letter-spacing: 0;
}

.artist-card__name a { color: var(--color-text, #1c1814); }
.artist-card__name a:hover { color: var(--color-accent, #b8820a); }

.artist-card__role { font-size: 0.82rem; color: var(--color-accent, #b8820a); font-weight: 500; margin: 0; }
.artist-card__location { font-size: 0.8rem; margin: 0.2rem 0 0; }
.artist-card__bio { font-size: 0.875rem; color: var(--color-text-muted); margin: 0.75rem 0 0; line-height: 1.55; }

/* ── Guide cards ─────────────────────────────────────────────────────────────── */

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guides-grid--full {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.guide-card {
    background: #fff;
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.guide-card:hover { box-shadow: var(--shadow-card-hover); }

.guide-card--lg .guide-card__body { padding: 1.5rem; }

.guide-card__thumb {
    height: 140px;
}

.guide-card__thumb--accent {
    background: linear-gradient(135deg, var(--color-surface, #f5f2ee), var(--color-panel, #ece8e0));
    position: relative;
}

.guide-card__thumb--accent::after {
    content: '';
    position: absolute;
    left: 1.25rem; top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-accent-light, #f2e8cc);
    border: 2px solid var(--color-accent, #b8820a);
}

.guide-card__body { padding: 1.1rem; }

.guide-card__category {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent, #b8820a);
    display: block;
    margin-bottom: 0.4rem;
}

.guide-card__title {
    font-size: 0.975rem;
    font-weight: 500;
    margin: 0 0 0.5rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.guide-card__title a { color: var(--color-text, #1c1814); }
.guide-card__title a:hover { color: var(--color-accent, #b8820a); }

.guide-card__excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted, #6b6560);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.guide-card__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-accent, #b8820a);
}

/* ── Statement section ────────────────────────────────────────────────────────── */

.statement-block {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: center;
}

.statement-block__text h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }

.statement-block__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    background: var(--color-surface, #f5f2ee);
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    padding: 1.25rem;
    text-align: center;
}

.stat-item__number {
    font-family: var(--font-display, system-ui);
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--color-accent, #b8820a);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-item__label { font-size: 0.82rem; color: var(--color-text-muted); font-weight: 500; }

/* ── Newsletter CTA box ──────────────────────────────────────────────────────── */

.newsletter-cta-box {
    background: var(--color-hero, #0e1621);
    border-radius: var(--radius-large, 16px);
    padding: 2rem;
    color: var(--color-hero-text, #f0ece4);
    position: sticky;
    top: calc(var(--header-height, 68px) + 1.5rem);
}

.newsletter-cta__badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent, #b8820a);
    margin-bottom: 0.75rem;
}

.newsletter-cta-box h3 {
    font-size: 1.3rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter-cta__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    font-size: 0.875rem;
    color: rgba(240,236,228,0.75);
}

.newsletter-cta__list li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.newsletter-cta__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent, #b8820a);
    font-size: 0.8rem;
}

.newsletter-cta__note {
    font-size: 0.78rem;
    color: rgba(240,236,228,0.45);
    margin: 0.75rem 0 0;
}

/* ── Commercial tiles ────────────────────────────────────────────────────────── */

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.commercial-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: #fff;
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    text-decoration: none;
    color: var(--color-text, #1c1814);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    text-align: center;
}

.commercial-tile:hover {
    border-color: var(--color-accent, #b8820a);
    box-shadow: var(--shadow-card-hover);
    color: var(--color-accent, #b8820a);
    transform: translateY(-2px);
}

.commercial-tile__icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--color-surface, #f5f2ee);
    border: 1px solid var(--color-border, #ddd8d0);
}

.commercial-tile__label {
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ── Commercial hero ─────────────────────────────────────────────────────────── */

.commercial-hero {
    background: var(--color-hero, #0e1621);
    padding: 5rem 0 4rem;
    color: var(--color-hero-text, #f0ece4);
}

.commercial-hero h1 { color: #fff; font-weight: 200; font-size: clamp(2rem, 5vw, 3.25rem); }
.commercial-hero__sub { color: rgba(240,236,228,0.75); max-width: 600px; font-size: 1.05rem; margin-top: 1rem; }

/* ── Benefits grid ───────────────────────────────────────────────────────────── */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    background: var(--color-surface-alt, #faf8f5);
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    padding: 1.5rem;
}

.benefit-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.benefit-item p { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

/* ── Rec links ──────────────────────────────────────────────────────────────── */

.rec-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.rec-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    color: var(--color-text, #1c1814);
    text-decoration: none;
    font-weight: 500;
    transition: border-color 0.15s, color 0.15s;
}

.rec-link-card:hover {
    border-color: var(--color-accent, #b8820a);
    color: var(--color-accent, #b8820a);
}

.rec-link-card__arrow { opacity: 0.4; }

/* ── Use case chips ─────────────────────────────────────────────────────────── */

.use-case-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

.use-case-chip {
    padding: 0.4rem 1rem;
    background: var(--color-surface, #f5f2ee);
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--color-text, #1c1814);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.use-case-chip:hover {
    border-color: var(--color-accent, #b8820a);
    color: var(--color-accent, #b8820a);
}

/* ── Dark CTA section ─────────────────────────────────────────────────────────── */

.section--dark-cta {
    background: var(--color-hero, #0e1621);
    color: var(--color-hero-text, #f0ece4);
}

.section--dark-cta h2 { color: #fff; font-weight: 200; }
.section--dark-cta p  { color: rgba(240,236,228,0.7); }

/* ── Collection hero (single) ────────────────────────────────────────────────── */

.collection-hero {
    position: relative;
    background: var(--color-hero, #0e1621);
    overflow: hidden;
}

.collection-hero__thumb {
    position: absolute;
    inset: 0;
    opacity: 0.25;
}

.collection-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--color-hero-text, #f0ece4);
}

.collection-hero__content h1 { color: #fff; font-weight: 200; margin-bottom: 0.75rem; }

.collection-hero__meta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

.meta-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.7rem;
    background: rgba(255,255,255,0.12);
    border-radius: 100px;
    color: rgba(240,236,228,0.85);
}

/* ── Collection layout ───────────────────────────────────────────────────────── */

.collection-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    align-items: start;
}

.collection-description { font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }

.collection-meta-block { margin-bottom: 2rem; }

.meta-block-heading {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted, #6b6560);
    margin-bottom: 0.75rem;
}

/* Gallery */
.collection-gallery { margin-bottom: 2.5rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-small, 6px);
}

.gallery-note { font-size: 0.85rem; }

/* Artist list */
.collection-artists { margin-bottom: 2.5rem; }

.artist-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }

.artist-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.artist-list-item__avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

.artist-list-item__name { font-weight: 500; color: var(--color-text); }
.artist-list-item__name:hover { color: var(--color-accent); }
.artist-list-item__role { font-size: 0.82rem; }

/* FAQ */
.collection-faq { margin-bottom: 2rem; }

.faq-item {
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-small, 6px);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-item__q {
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    list-style: none;
}

.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; }

.faq-item[open] .faq-item__q { color: var(--color-accent, #b8820a); }

.faq-item__a {
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--color-text-muted, #6b6560);
    line-height: 1.6;
}

/* Collection sidebar */
.collection-sidebar {
    position: sticky;
    top: calc(var(--header-height, 68px) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Artist layout ───────────────────────────────────────────────────────────── */

.artist-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
    align-items: start;
}

.artist-main h2 { margin-top: 1.75rem; font-size: 1.4rem; }

.artist-avatar-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border, #ddd8d0);
}

.artist-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

.artist-avatar--profile { width: 108px; height: 108px; font-size: 2.5rem; }

.artist-role { font-weight: 600; font-size: 0.9rem; color: var(--color-accent, #b8820a); margin-bottom: 0.2rem; }
.artist-location { font-size: 0.85rem; }

.artist-statement {
    border-left: 3px solid var(--color-accent, #b8820a);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: var(--color-surface, #f5f2ee);
    border-radius: 0 var(--radius-small) var(--radius-small) 0;
}

.artist-statement p {
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text, #1c1814);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.artist-statement cite { font-size: 0.85rem; color: var(--color-text-muted); font-style: normal; }

.artist-sidebar {
    position: sticky;
    top: calc(var(--header-height, 68px) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ── Guide article ───────────────────────────────────────────────────────────── */

.guide-article__header { margin-bottom: 2rem; }
.guide-article__header h1 { margin-bottom: 0.5rem; }

.guide-article__excerpt {
    font-size: 1.1rem;
    color: var(--color-text-muted, #6b6560);
    line-height: 1.65;
    margin: 0.75rem 0 1rem;
}

.guide-article__meta { font-size: 0.85rem; }

.guide-article__body { margin-bottom: 3rem; }

.guide-article__related { padding-top: 2rem; border-top: 1px solid var(--color-border, #ddd8d0); }
.guide-article__related h2 { font-size: 1.3rem; margin-bottom: 1.25rem; }

/* ── Prose styles ────────────────────────────────────────────────────────────── */

.prose h2 { margin-top: 2rem; font-size: 1.35rem; }
.prose h3 { margin-top: 1.5rem; }
.prose p  { margin-bottom: 1.1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.prose li { margin-bottom: 0.4rem; line-height: 1.65; }
.prose a  { color: var(--color-accent); text-decoration: underline; }
.prose a:hover { color: var(--color-accent-strong); }

/* ── Tags ────────────────────────────────────────────────────────────────────── */

.tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--color-surface, #f5f2ee);
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--color-text-muted, #6b6560);
}

.tag--accent {
    background: var(--color-accent-light, #f2e8cc);
    border-color: var(--color-accent, #b8820a);
    color: var(--color-accent-strong, #9a6e08);
}

/* ── Style page ─────────────────────────────────────────────────────────────── */

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.style-card {
    background: #fff;
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    overflow: hidden;
}

.style-card__swatch { height: 120px; }

.style-card__body { padding: 1rem; }
.style-card__body h3 { font-size: 0.95rem; margin-bottom: 0.25rem; letter-spacing: 0; }
.style-card__body h3 a { color: var(--color-text); }
.style-card__body h3 a:hover { color: var(--color-accent); }

/* ── Sidebar blocks ──────────────────────────────────────────────────────────── */

.sidebar-block {
    background: var(--color-surface, #f5f2ee);
    border: 1px solid var(--color-border, #ddd8d0);
    border-radius: var(--radius-medium, 10px);
    padding: 1.25rem;
    font-size: 0.9rem;
}

.sidebar-block--cta {
    background: var(--color-hero, #0e1621);
    border-color: transparent;
    color: var(--color-hero-text, #f0ece4);
}

.sidebar-block--cta .sidebar-block__title { color: rgba(240,236,228,0.6); }
.sidebar-block--cta p { color: rgba(240,236,228,0.75); }

.sidebar-block__title {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted, #6b6560);
    margin-bottom: 0.75rem;
}

.sidebar-block__body { font-size: 0.875rem; margin-bottom: 0.75rem; }
.sidebar-block__body p { margin: 0; }

.sidebar-block__links {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-block__links a { font-size: 0.875rem; color: var(--color-text); }
.sidebar-block__links a:hover { color: var(--color-accent); }

.cta-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--color-accent, #b8820a);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-small, 6px);
    font-size: 0.875rem;
    font-weight: 500;
}

.cta-btn:hover { background: var(--color-accent-strong, #9a6e08); color: #fff; }

/* ── Breadcrumbs ─────────────────────────────────────────────────────────────── */

.breadcrumbs { margin-bottom: 1.5rem; }

.breadcrumbs__list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: var(--color-text-muted, #6b6560);
}

.breadcrumbs__item + .breadcrumbs__item::before {
    content: '/';
    margin-right: 0.5rem;
}

.breadcrumbs__item.is-current { color: var(--color-text, #1c1814); }

.collection-hero__content .breadcrumbs__list { color: rgba(240,236,228,0.55); }
.collection-hero__content .breadcrumbs__list a { color: rgba(240,236,228,0.7); }
.collection-hero__content .breadcrumbs__item.is-current { color: rgba(240,236,228,0.85); }

.page-hero--dark .breadcrumbs__list { color: rgba(240,236,228,0.5); }
.page-hero--dark .breadcrumbs__list a { color: rgba(240,236,228,0.65); }
.page-hero--dark .breadcrumbs__item.is-current { color: rgba(240,236,228,0.85); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.site-footer {
    background: var(--color-hero, #0e1621);
    color: var(--color-hero-text, #f0ece4);
    padding: 4rem 0 0;
    margin-top: 6rem;
}

.site-footer__inner { max-width: var(--content-width, 1240px); margin: 0 auto; padding: 0 1.5rem; }

.site-footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__brand-name {
    font-family: var(--font-display, system-ui);
    font-weight: 300;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.site-footer__tagline {
    font-size: 0.875rem;
    color: rgba(240,236,228,0.55);
    margin: 0 0 0.75rem;
    max-width: 260px;
    line-height: 1.5;
}

.site-footer__contact a {
    font-size: 0.875rem;
    color: rgba(240,236,228,0.55);
}

.site-footer__contact a:hover { color: var(--color-accent, #b8820a); }

.site-footer__col-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(240,236,228,0.4);
    margin-bottom: 1rem;
}

.site-footer__links {
    list-style: none; margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__links a {
    font-size: 0.875rem;
    color: rgba(240,236,228,0.65);
    text-decoration: none;
}

.site-footer__links a:hover { color: var(--color-accent, #b8820a); }

.site-footer__bottom {
    padding: 1.25rem 0;
    font-size: 0.8rem;
    color: rgba(240,236,228,0.35);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.site-footer__bottom-links a {
    color: rgba(240,236,228,0.35);
    text-decoration: none;
    font-size: 0.8rem;
}

.site-footer__bottom-links a:hover { color: rgba(240,236,228,0.65); }

/* ── Utility ──────────────────────────────────────────────────────────────────── */

.text-muted { color: var(--color-text-muted, #6b6560); }

.page-excerpt {
    font-size: 1.1rem;
    color: var(--color-text-muted, #6b6560);
    margin-bottom: 2rem;
    line-height: 1.65;
}

/* ── Error page ─────────────────────────────────────────────────────────────── */

.error-page {
    text-align: center;
    padding: 5rem 1rem;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 200;
    margin: 0 0 0.5rem;
    color: var(--color-text-muted, #6b6560);
}

.error-page p { font-size: 1.1rem; margin-bottom: 2rem; }

/* ── Mobile ───────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .artists-section-grid { grid-template-columns: 1fr; }
    .newsletter-cta-box { position: static; }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .statement-block { grid-template-columns: 1fr; gap: 2rem; }
    .statement-block__stats { grid-template-columns: repeat(4, 1fr); }
    .commercial-grid { grid-template-columns: repeat(3, 1fr); }
    .site-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .collection-layout { grid-template-columns: 1fr 240px; gap: 2rem; }
    .artist-layout { grid-template-columns: 1fr 220px; }
}

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }

    .site-nav {
        display: none;
        position: fixed;
        top: var(--header-height, 68px);
        left: 0; right: 0;
        background: #0e1621;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 1rem 1.5rem 1.5rem;
        z-index: 99;
        max-height: calc(100vh - var(--header-height, 68px));
        overflow-y: auto;
    }

    .site-nav.is-open { display: block; }

    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.15rem;
    }

    .site-nav__list > li { width: 100%; }

    .site-nav__list a { font-size: 1rem; padding: 0.6rem 0.5rem; }

    .nav-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 1rem;
        background: transparent;
        min-width: 0;
    }

    .nav-dropdown.is-open { display: block; }

    .nav-dropdown li a {
        color: rgba(240,236,228,0.65);
        font-size: 0.9rem;
        padding: 0.4rem 0.5rem;
    }

    .collections-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: 1fr; }
    .content-layout { grid-template-columns: 1fr; }
    .content-sidebar { position: static; }
    .commercial-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .rec-links-grid { grid-template-columns: 1fr; }
    .statement-block__stats { grid-template-columns: repeat(2, 1fr); }
    .collection-layout { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .artist-layout { grid-template-columns: 1fr; }
    .artist-sidebar { position: static; }
    .collection-sidebar { position: static; }
    .artist-card--full { flex-direction: column; text-align: center; align-items: center; }
    .artist-avatar-block { flex-direction: column; text-align: center; align-items: center; }
    .hero-trust-strip__inner { gap: 1.5rem; }
    .trust-badge { min-width: 140px; }

    /* Footer - single column, 2x text on mobile */
    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .site-footer__links a { font-size: 1.1rem; }
    .site-footer__col-heading { font-size: 0.85rem; }
    .site-footer__bottom { flex-direction: column; align-items: flex-start; font-size: 1rem; }
    .site-footer__bottom-links { gap: 1.25rem; }
    .site-footer__bottom-links a { font-size: 1rem; }
    .site-footer__tagline { font-size: 1.05rem; }
    .site-footer__contact a { font-size: 1.05rem; }
    .site-footer__brand-name { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .commercial-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-ctas { flex-direction: column; }
    .btn--hero-primary, .btn--hero-secondary { width: 100%; text-align: center; }
    .hero-trust-strip__inner { flex-direction: column; gap: 1rem; }
}
