/* ============================================
   BLAIR MORGAN - GOTHIC DARK LUXURY LANDING PAGE
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent: #DC143C;
    --accent-light: #FF2D55;
    --accent-glow: rgba(220, 20, 60, 0.4);
    --accent-glow-strong: rgba(220, 20, 60, 0.6);
    --text-primary: #f5f5f5;
    --text-secondary: #888888;
    --text-muted: #555555;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-strong: rgba(255, 255, 255, 0.06);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: clamp(60px, 10vw, 120px);
    --container-max: 1200px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

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

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

/* ============================================
   LACE TEXTURE OVERLAY
   ============================================ */
.lace-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    pointer-events: none;
    z-index: 9998;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(220, 20, 60, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo),
                border-color 0.3s ease, background 0.3s ease;
}

.cursor.hover {
    width: 16px;
    height: 16px;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.1);
    border-color: var(--accent);
}

@media (pointer: coarse), (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
}

/* ============================================
   LOADING SCREEN - FLICKER EFFECT
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.loader-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 64px);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    opacity: 0;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.5), 0 0 60px rgba(220, 20, 60, 0.2);
    white-space: nowrap;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    opacity: 0;
    visibility: hidden;
}

.main-content.visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-container {
    width: 100%;
    max-width: var(--container-max);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Image */
.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin-bottom: 48px;
    perspective: 1000px;
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(220, 20, 60, 0.15);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-out-expo), border-color 0.4s ease;
}

.hero-image-container:hover {
    border-color: rgba(220, 20, 60, 0.3);
}

.hero-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.8s var(--ease-out-expo);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(10, 10, 10, 0.8) 100%
    );
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.name {
    font-family: var(--font-display);
    /* "BLAIR MORGAN" = 11 letters + space. Scale to fit viewport minus padding */
    font-size: clamp(18px, calc((100vw - 60px) / 13), 64px);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-right: -0.2em;
    overflow: hidden;
    white-space: nowrap;
    color: var(--accent);
    text-shadow: 0 0 40px rgba(220, 20, 60, 0.3), 0 0 80px rgba(220, 20, 60, 0.1);
}

.name-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
}

.name-spacer {
    display: inline-block;
    width: 0.4em;
}

/* Red Accent Line Under Name */
.name-accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transform: scaleX(0);
    margin-top: -4px;
}

.tagline {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: lowercase;
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 480px) {
    .tagline {
        font-size: 11px;
        letter-spacing: 0.15em;
    }
}

.quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(18px, 4vw, 26px);
    font-weight: 300;
    color: var(--text-primary);
    opacity: 0.9;
    max-width: 500px;
    margin: 8px 0;
}

/* Age Badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    background: var(--glass);
    margin-top: 16px;
    opacity: 0;
    transform: translateY(20px);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px var(--accent-glow);
    transition: all 0.4s var(--ease-out-back);
    cursor: pointer;
    min-height: 56px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--accent-glow-strong);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s var(--ease-out-expo);
}

.cta-button:hover .cta-glow {
    transform: translate(-50%, -50%) scale(1);
}

.cta-button-large {
    padding: 22px 60px;
    font-size: 15px;
    min-height: 64px;
}

/* Hero Ghost CTA Button */
.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 60px;
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.4s var(--ease-out-expo);
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta-ghost:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(220, 20, 60, 0.05);
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.15);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-out-expo);
    background: var(--glass);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

/* ============================================
   PREVIEW SECTION
   ============================================ */
.preview-section {
    padding: var(--section-padding) 20px clamp(30px, 5vw, 50px);
    background: var(--bg-primary);
    position: relative;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.preview-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.title-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.title-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.preview-item {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.preview-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass);
    aspect-ratio: 4/5;
    cursor: pointer;
    border: 1px solid rgba(220, 20, 60, 0.12);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.preview-item:not(.locked) .preview-image-wrapper:hover {
    border-color: rgba(220, 20, 60, 0.35);
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease, box-shadow 0.4s ease;
}

.preview-item:not(.locked) .preview-image-wrapper:hover {
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.2);
}

.preview-item:not(.locked) .preview-image-wrapper:hover .preview-image {
    transform: scale(1.05);
}

/* Locked Items */
.preview-item.locked .preview-image {
    filter: blur(12px) brightness(0.5);
}

.preview-item.locked .preview-image-wrapper:hover .preview-image {
    filter: blur(10px) brightness(0.6);
    transform: scale(1.02);
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.3);
    transition: background 0.3s ease;
}

.preview-item.locked .preview-image-wrapper:hover .lock-overlay {
    background: rgba(10, 10, 10, 0.2);
}

.lock-icon {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.8);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.preview-item.locked .preview-image-wrapper:hover .lock-icon {
    transform: scale(1.1);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: clamp(40px, 8vw, 80px) 20px;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.cta-section .cta-button {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(20px);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    padding: 20px;
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-overlay.hidden {
    display: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10003;
    transition: all 0.3s ease;
    line-height: 1;
    padding-bottom: 4px;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    cursor: default;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transition: filter 0.3s ease;
}

.lightbox-image.blurred {
    filter: blur(25px) brightness(0.4);
}

.lightbox-locked {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.lightbox-locked.hidden {
    display: none;
}

.lightbox-lock-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: white;
    opacity: 0.9;
}

.lightbox-lock-icon svg {
    width: 100%;
    height: 100%;
}

.lightbox-locked-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 300;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.lightbox-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    padding: 18px 44px;
    border-radius: 50px;
    color: white;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 40px var(--accent-glow);
    transition: all 0.4s var(--ease-out-back);
    min-height: 56px;
}

.lightbox-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px var(--accent-glow-strong);
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .lightbox-image {
        max-height: 70vh;
        border-radius: 8px;
    }

    .lightbox-lock-icon {
        width: 48px;
        height: 48px;
    }

    .lightbox-cta {
        padding: 16px 36px;
        font-size: 12px;
        min-height: 50px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-text {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bat {
    display: inline-flex;
    align-items: center;
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 1000;
    display: none;
}

.mobile-sticky-bar.visible {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
    }

    .cta-section {
        padding-bottom: calc(clamp(40px, 8vw, 80px) + 80px);
    }
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 16px;
}

.sticky-text {
    font-size: 12px;
    color: var(--text-secondary);
    flex-shrink: 1;
}

.sticky-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.sticky-button:active {
    transform: scale(0.95);
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .lace-overlay {
        display: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   GOTHIC DECORATIVE ELEMENTS
   ============================================ */

/* Floating bats - positioned absolute in hero */
.gothic-bat {
    position: absolute;
    color: rgba(220, 20, 60, 0.06);
    pointer-events: none;
    z-index: 0;
}

.gothic-bat svg {
    width: 100%;
    height: 100%;
}

.gothic-bat-1 {
    width: 80px;
    height: 80px;
    top: 8%;
    right: 5%;
    transform: rotate(-15deg);
    animation: batFloat1 8s ease-in-out infinite;
}

.gothic-bat-2 {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 8%;
    transform: rotate(10deg) scaleX(-1);
    animation: batFloat2 10s ease-in-out infinite;
}

.gothic-bat-3 {
    width: 35px;
    height: 35px;
    bottom: 20%;
    right: 12%;
    transform: rotate(-5deg);
    animation: batFloat3 12s ease-in-out infinite;
}

@keyframes batFloat1 {
    0%, 100% { transform: rotate(-15deg) translateY(0); }
    50% { transform: rotate(-10deg) translateY(-15px); }
}

@keyframes batFloat2 {
    0%, 100% { transform: rotate(10deg) scaleX(-1) translateY(0); }
    50% { transform: rotate(15deg) scaleX(-1) translateY(-20px); }
}

@keyframes batFloat3 {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(0deg) translateY(-10px); }
}

/* Spider hanging from top corner */
.gothic-spider {
    position: absolute;
    top: 0;
    left: 6%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.04;
    animation: spiderSway 6s ease-in-out infinite;
    transform-origin: top center;
}

.spider-thread {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    margin: 0 auto;
}

.spider-body {
    width: 16px;
    height: 16px;
    color: white;
    margin: 0 auto;
}

.spider-body svg {
    width: 100%;
    height: 100%;
}

@keyframes spiderSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

/* Small skull icon in section divider */
.gothic-skull {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--accent);
    opacity: 0.4;
}

.gothic-skull svg {
    width: 100%;
    height: 100%;
}

/* Section divider with skull */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--container-max);
}

.divider-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.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;
}
