/* ═══════════════════════════════════════════════════════════════
   MUSEO DELLE VOCI ARTIFICIALI
   Info Pages — Galleria Notturna

   Design: Atmospheric museum after hours
   - Dramatic spotlight effects on content
   - Asymmetric editorial layouts
   - Art deco geometric accents
   - Gold leaf on obsidian
   ═══════════════════════════════════════════════════════════════ */

/* ─── Page Foundation ──────────────────────────────────────────── */
.info-page {
    background: var(--nero-profondo);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Atmospheric gradient — like gallery lighting */
.info-page::before {
    content: '';
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 80%;
    background: radial-gradient(
        ellipse 50% 40% at 50% 0%,
        rgba(201, 162, 39, 0.04) 0%,
        rgba(201, 162, 39, 0.015) 40%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Subtle vertical guide lines */
.info-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(201, 162, 39, 0.08) 20%,
        rgba(201, 162, 39, 0.08) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

/* ─── Content Container ────────────────────────────────────────── */
.info-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: calc(120px + var(--space-xl)) var(--space-lg) calc(var(--space-xl) * 2);
}

/* ─── Page Header ──────────────────────────────────────────────── */
.info-header {
    text-align: left;
    margin-bottom: calc(var(--space-xl) * 1.5);
    padding-bottom: var(--space-xl);
    position: relative;
    padding-left: var(--space-xl);
}

/* Vertical accent line */
.info-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        var(--oro-antico) 0%,
        var(--oro-scuro) 60%,
        transparent 100%
    );
}

/* Horizontal rule under header */
.info-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-xl);
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201, 162, 39, 0.4) 0%,
        rgba(201, 162, 39, 0.1) 60%,
        transparent 100%
    );
}

.info-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--oro-antico);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    opacity: 0;
    animation: slideInLeft 0.6s ease 0.1s forwards;
}

.info-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--bianco);
    line-height: 1.1;
    opacity: 0;
    animation: slideInLeft 0.6s ease 0.2s forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLine {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* ─── Article Body ─────────────────────────────────────────────── */
.info-body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
}

/* ─── Sections ─────────────────────────────────────────────────── */
.info-section {
    margin-bottom: calc(var(--space-xl) * 1.2);
    padding-bottom: var(--space-xl);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.7s ease forwards;
}

.info-section:nth-child(1) { animation-delay: 0.3s; }
.info-section:nth-child(2) { animation-delay: 0.4s; }
.info-section:nth-child(3) { animation-delay: 0.5s; }
.info-section:nth-child(4) { animation-delay: 0.6s; }
.info-section:nth-child(5) { animation-delay: 0.7s; }
.info-section:nth-child(6) { animation-delay: 0.8s; }
.info-section:nth-child(7) { animation-delay: 0.9s; }

/* Subtle separator */
.info-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201, 162, 39, 0.2) 0%,
        transparent 100%
    );
}

.info-section:last-child::after {
    display: none;
}

/* Section Headings */
.info-section h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--oro-antico);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Decorative diamond before h3 */
.info-section h3::before {
    content: '◇';
    font-size: 0.6rem;
    opacity: 0.6;
}

.info-section p {
    margin-bottom: var(--space-md);
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section em {
    color: var(--bianco);
    font-style: italic;
}

.info-section strong {
    color: var(--bianco);
    font-weight: 600;
}

.info-section a {
    color: var(--oro-chiaro);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.info-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.info-section a:hover {
    color: var(--bianco);
}

.info-section a:hover::after {
    opacity: 0.8;
}

/* ─── Lead Paragraph ───────────────────────────────────────────── */
.info-lead {
    font-size: 1.4rem;
    line-height: 1.65;
    color: var(--bianco);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
}

.info-lead::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 3px;
    height: 1.2em;
    background: var(--oro-antico);
}

/* ─── Final Statement ──────────────────────────────────────────── */
.info-final {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--bianco);
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    position: relative;
}

.info-final::before,
.info-final::after {
    content: '—';
    color: var(--oro-antico);
    opacity: 0.5;
    margin: 0 var(--space-sm);
}

/* ─── Note Box ─────────────────────────────────────────────────── */
.info-section--note {
    background: linear-gradient(
        135deg,
        rgba(201, 162, 39, 0.03) 0%,
        rgba(10, 9, 8, 0.6) 100%
    );
    border: 1px solid rgba(201, 162, 39, 0.12);
    padding: var(--space-lg);
    margin-top: var(--space-lg);
}

.info-section--note::after {
    display: none;
}

/* ─── Signature ────────────────────────────────────────────────── */
.info-section--signature {
    text-align: right;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    margin-top: var(--space-xl);
}

.info-section--signature::after {
    display: none;
}

.info-signature {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--oro-antico);
    margin: 0;
}

/* ─── Info List ────────────────────────────────────────────────── */
.info-list {
    list-style: none;
    margin: var(--space-lg) 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.info-list li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--oro-antico);
}

/* ═══════════════════════════════════════════════════════════════
   CURATOR PAGE — Il Curatore
   ═══════════════════════════════════════════════════════════════ */

.curator-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    align-items: start;
    padding: var(--space-xl);
    margin-bottom: calc(var(--space-xl) * 1.5);
    position: relative;
    background: linear-gradient(
        135deg,
        rgba(20, 18, 14, 0.9) 0%,
        rgba(12, 11, 9, 0.95) 100%
    );
    border: 1px solid rgba(201, 162, 39, 0.15);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.25s forwards;
}

/* Corner accent */
.curator-profile::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--oro-antico);
    border-right: 2px solid var(--oro-antico);
    opacity: 0.4;
}

.curator-profile::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -1px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--oro-antico);
    border-left: 2px solid var(--oro-antico);
    opacity: 0.4;
}

.curator-avatar {
    position: relative;
}

.curator-avatar__placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(
        145deg,
        var(--oro-scuro) 0%,
        var(--oro-antico) 50%,
        var(--oro-chiaro) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--nero-profondo);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.curator-info h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--bianco);
    margin-bottom: var(--space-xs);
}

.curator-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--oro-antico);
}

/* ═══════════════════════════════════════════════════════════════
   COLLECTION GRID — La Collezione
   ═══════════════════════════════════════════════════════════════ */

.collection-grid {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.collection-item {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(15, 14, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s ease;
}

.collection-item:hover {
    border-color: rgba(201, 162, 39, 0.2);
    background: rgba(20, 18, 15, 0.8);
}

.collection-item__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--oro-antico);
    opacity: 0.5;
    text-align: center;
    padding-top: var(--space-xs);
}

.collection-item__content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--bianco);
    margin-bottom: var(--space-xs);
}

.collection-item__content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.collection-item__meta {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* Author color accents */
.collection-item--claude {
    border-left: 2px solid var(--blu-glow, #4a9eff);
}

.collection-item--gemini {
    border-left: 2px solid var(--rosso-luminoso, #ff4444);
}

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO PAGE — Voci a Confronto
   ═══════════════════════════════════════════════════════════════ */

.manifesto-voices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: calc(var(--space-xl) * 1.2) 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.5s forwards;
}

.manifesto-voice {
    padding: var(--space-xl);
    position: relative;
    background: rgba(12, 11, 10, 0.7);
}

.manifesto-voice:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Claude — Cold blue glow */
.manifesto-voice--claude {
    background: linear-gradient(
        180deg,
        rgba(74, 158, 255, 0.03) 0%,
        rgba(12, 11, 10, 0.9) 100%
    );
}

.manifesto-voice--claude::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--blu-glow, #4a9eff) 0%,
        transparent 100%
    );
}

.manifesto-voice--claude h3 {
    color: var(--blu-glow, #4a9eff);
}

/* Gemini — Warm red glow */
.manifesto-voice--gemini {
    background: linear-gradient(
        180deg,
        rgba(255, 68, 68, 0.03) 0%,
        rgba(12, 11, 10, 0.9) 100%
    );
}

.manifesto-voice--gemini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--rosso-luminoso, #ff4444) 0%,
        transparent 100%
    );
}

.manifesto-voice--gemini h3 {
    color: var(--rosso-luminoso, #ff4444);
}

.manifesto-voice h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.manifesto-voice h3::before {
    display: none;
}

.manifesto-voice p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.manifesto-voice em {
    display: block;
    margin-top: var(--space-md);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ─── Quote Block ──────────────────────────────────────────────── */
.manifesto-quote {
    position: relative;
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: center;
    background: linear-gradient(
        180deg,
        rgba(201, 162, 39, 0.04) 0%,
        transparent 100%
    );
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.manifesto-quote blockquote {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--bianco);
    margin: 0;
}

.manifesto-quote blockquote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--oro-antico);
    opacity: 0.3;
    display: block;
    margin-bottom: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════
   DISCLAIMER BOX
   ═══════════════════════════════════════════════════════════════ */

.disclaimer-box {
    margin-top: calc(var(--space-xl) * 1.5);
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.disclaimer-box::before {
    content: 'NOTA';
    position: absolute;
    top: calc(var(--space-lg) * -1 - 8px);
    left: var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    color: var(--oro-antico);
    background: var(--nero-profondo);
    padding: 0 var(--space-sm);
}

.disclaimer-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.disclaimer-box strong {
    color: var(--bianco);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

.contact-methods {
    display: grid;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(
        90deg,
        rgba(201, 162, 39, 0.04) 0%,
        rgba(12, 11, 10, 0.8) 50%,
        rgba(12, 11, 10, 0.9) 100%
    );
    border: 1px solid rgba(201, 162, 39, 0.12);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--oro-antico);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.contact-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    background: linear-gradient(
        90deg,
        rgba(201, 162, 39, 0.08) 0%,
        rgba(15, 14, 12, 0.9) 50%,
        rgba(15, 14, 12, 0.95) 100%
    );
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--oro-antico);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
    background: rgba(201, 162, 39, 0.1);
    border-color: var(--oro-antico);
}

.contact-card__info {
    flex: 1;
}

.contact-card__label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--oro-antico);
    margin-bottom: 0.25rem;
    opacity: 0.7;
}

.contact-card__value {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--bianco);
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════
   LICENSE PAGE
   ═══════════════════════════════════════════════════════════════ */

.license-badge {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.7s ease 0.3s forwards;
}

.license-badge__icon {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bianco);
    flex-shrink: 0;
}

.license-badge__icon span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nero-profondo);
    letter-spacing: -0.02em;
}

.license-badge__info {
    flex: 1;
    padding: var(--space-lg);
    background: rgba(15, 14, 12, 0.8);
}

.license-badge__info h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--bianco);
    margin-bottom: var(--space-xs);
}

.license-badge__info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.license-badge__code {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--oro-antico);
    margin-top: var(--space-xs);
    display: block;
}

/* Legal boxes */
.legal-box {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.35);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.legal-box h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--bianco);
    margin-bottom: var(--space-sm);
}

.legal-box p {
    font-size: 0.95rem;
    margin: 0;
}

/* Citation box */
.citation-box {
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin: var(--space-md) 0;
    overflow-x: auto;
}

.citation-box code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   COMPARISON GRID
   ═══════════════════════════════════════════════════════════════ */

.info-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: var(--space-xl) 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-comparison__item {
    padding: var(--space-lg);
    background: rgba(12, 11, 10, 0.6);
}

.info-comparison__item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.info-comparison__item--blue {
    border-top: 2px solid var(--blu-glow);
}

.info-comparison__item--red {
    border-top: 2px solid var(--rosso-luminoso);
}

.info-comparison__item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
}

.info-comparison__item--blue h4 {
    color: var(--blu-glow);
}

.info-comparison__item--red h4 {
    color: var(--rosso-luminoso);
}

.info-comparison__item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-comparison__item li {
    padding: var(--space-xs) 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-comparison__item li:last-child {
    border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════════ */

.timeline {
    position: relative;
    margin: var(--space-xl) 0;
    padding-left: calc(var(--space-xl) + 1px);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        180deg,
        var(--oro-antico) 0%,
        rgba(201, 162, 39, 0.2) 100%
    );
}

.timeline__item {
    position: relative;
    padding-bottom: var(--space-lg);
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-xl) - 4px);
    top: 0.4rem;
    width: 9px;
    height: 9px;
    background: var(--nero-profondo);
    border: 2px solid var(--oro-antico);
    border-radius: 50%;
}

.timeline__date {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--oro-antico);
    margin-bottom: var(--space-xs);
}

.timeline__item p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   QUOTE BLOCK — For Curator Page
   ═══════════════════════════════════════════════════════════════ */

.info-quote {
    position: relative;
    margin: var(--space-xl) 0;
    padding: var(--space-xl) var(--space-lg);
    background: linear-gradient(
        135deg,
        rgba(201, 162, 39, 0.04) 0%,
        rgba(10, 9, 8, 0.8) 100%
    );
    border-left: 3px solid var(--oro-antico);
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--bianco);
}

.info-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    font-style: normal;
    color: var(--oro-antico);
    opacity: 0.25;
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════
   ARCHIVES GRID — For Project Page
   ═══════════════════════════════════════════════════════════════ */

.archives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.archive-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(15, 14, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
}

.archive-card:hover {
    border-color: rgba(201, 162, 39, 0.25);
    background: rgba(20, 18, 15, 0.8);
    transform: translateY(-4px);
}

.archive-card__icon {
    width: 40px;
    height: 40px;
    color: var(--oro-antico);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.archive-card:hover .archive-card__icon {
    opacity: 1;
}

.archive-card__icon svg {
    width: 100%;
    height: 100%;
}

.archive-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.archive-card__label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--bianco);
}

.archive-card__desc {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .archives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
    .info-page::after {
        left: 8%;
    }
}

@media (max-width: 768px) {
    .info-content {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .info-header {
        padding-left: var(--space-md);
    }

    .info-page::after {
        display: none;
    }

    .manifesto-voices,
    .info-comparison {
        grid-template-columns: 1fr;
    }

    .manifesto-voice:first-child,
    .info-comparison__item:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .collection-item {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .collection-item__number {
        text-align: left;
        font-size: 1.2rem;
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .info-title {
        font-size: 2rem;
    }

    .curator-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }

    .curator-avatar {
        justify-self: center;
    }

    .curator-profile::before,
    .curator-profile::after {
        width: 40px;
        height: 40px;
    }

    .license-badge {
        flex-direction: column;
    }

    .license-badge__icon {
        width: 100%;
        height: 80px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }
}
