/* ==========================================================================
   NOIR & GOLD — Base Typography & Layout
   ========================================================================== */

/* ── Section Spacing ── */
.noir-section {
    padding: var(--space-2xl) 0;
    position: relative;
}

.noir-section--alt {
    background-color: var(--bg-secondary);
}

.noir-section--gold-border {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* ── Section Headers ── */
.section-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    display: block;
    margin-bottom: var(--space-xs);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
}

.section-subheading {
    font-size: var(--text-base);
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: var(--space-xl);
}

.text-center .section-subheading {
    margin-left: auto;
    margin-right: auto;
}

/* ── Gold Decorative Line ── */
.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin-bottom: var(--space-md);
}

.text-center .gold-line {
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.btn-gold:hover {
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
    color: var(--bg-primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 13px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 11px;
}

/* Focus states for accessibility */
.btn:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 3px;
}

a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* ── Cards ── */
.noir-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-lg) var(--ease-out);
}

.noir-card:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

/* ── Glass Card ── */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

/* ── Grid Layouts ── */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

/* ── Price List Style ── */
.price-item {
    display: flex;
    align-items: baseline;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.price-name {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    font-size: var(--text-base);
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gold-dark);
    margin: 0 var(--space-sm);
    min-width: 40px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--gold-primary);
    white-space: nowrap;
}

.price-duration {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-left: var(--space-xs);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        font-size: var(--text-2xl);
    }
}

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

    .noir-section {
        padding: var(--space-xl) 0;
    }

    .section-heading {
        font-size: 28px;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 12px;
    }
}
