/* LUX MAGAZINE - Editorial Submission Portal */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #121218;
    --bg-tertiary: #1a1a24;
    --bg-light: #f8f8f6;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-tertiary: #8a8a8a;
    --text-light: #ffffff;
    --accent-navy: #1a2332;
    --accent-azure: #2d5a7a;
    --accent-gold: #c9a962;
    --accent-sand: #d4c4b0;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background: var(--bg-light);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s, visibility 0.8s;
}

#loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.lux-magazine-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 12px;
    color: var(--text-light);
    display: block;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: block;
    margin-top: 0.5rem;
}

.loading-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: var(--accent-gold);
    animation: loadingProgress 2s ease forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.loading-text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-tertiary);
}

/* Screens */
.screen { min-height: 100vh; }

/* Welcome Hero */
.welcome-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--accent-navy) 100%);
    overflow: hidden;
}

.welcome-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,169,98,0.1)"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(45, 90, 122, 0.2) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    text-align: center;
    padding: 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.eyebrow-icon { color: var(--accent-gold); }

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
    margin: 2rem auto;
}

.hero-description {
    text-align: left;
    margin: 2rem 0;
}

.hero-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-description .highlight {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.btn-primary-large {
    background: var(--accent-gold);
    border: none;
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary-large:hover {
    background: #d4b870;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.3);
}

.btn-arrow { transition: transform 0.3s ease; }
.btn-primary-large:hover .btn-arrow { transform: translateX(5px); }

.submission-note {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

/* Info Section */
.info-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.info-container { max-width: 1200px; margin: 0 auto; }

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

.info-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-navy);
}

.info-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Quote Section */
.quote-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
}

.quote-container { max-width: 800px; margin: 0 auto; }

.editorial-quote {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent-gold);
    opacity: 0.3;
    display: block;
    line-height: 1;
}

.quote-text {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin: 1rem 0;
}

.quote-source {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* Types Section */
.types-section {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.types-container { max-width: 1200px; margin: 0 auto; }

.types-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--accent-navy);
    margin-bottom: 0.5rem;
}

.types-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.type-card {
    background: linear-gradient(145deg, #d4af37 0%, #c9a962 25%, #f4d46a 50%, #c9a962 75%, #d4af37 100%);
    background-size: 200% 200%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.type-card:hover::before {
    left: 100%;
}

.type-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--gold-light);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.2);
    animation: goldShimmer 2s ease-in-out infinite;
}

@keyframes goldShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.type-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0f;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.type-card > p {
    font-size: 0.85rem;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.type-requirements {
    list-style: none;
    padding: 0;
    text-align: left;
    border-top: 1px solid rgba(10, 10, 15, 0.15);
    padding-top: 1.25rem;
}

.type-requirements li {
    font-size: 0.8rem;
    color: #0a0a0f;
    font-weight: 500;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.type-requirements li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #0a0a0f;
}

/* Type Indicator in Header */
.type-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50px;
}

.type-label {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Submission Screen */
.submission-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: rgba(248, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

.mini-logo .logo-text {
    font-size: 2rem;
    letter-spacing: 6px;
    color: var(--accent-navy);
}

.mini-logo .logo-subtitle {
    color: var(--accent-gold);
    font-size: 0.6rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    width: 200px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gold);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    letter-spacing: 1px;
}

/* Form Sections */
#submission-screen {
    background: var(--bg-light);
    padding: 2rem 3rem 5rem;
}

.form-section {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInSection 0.5s ease;
}

.form-section.active { display: block; }

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.section-number {
    display: block;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--accent-gold);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Form section titles - specific selector to override other .section-title rules */
.form-section .section-title {
    color: var(--accent-gold) !important;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group.full-width { grid-column: 1 / -1; }

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lux-input, .lux-select, .lux-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.lux-input:focus, .lux-select:focus, .lux-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.lux-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
}

.char-count {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

/* Intro Text Block */
.intro-text-block {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.intro-guidance {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.intro-list {
    list-style: none;
    padding-left: 1rem;
}

.intro-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.intro-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.intro-note {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-tertiary);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Upload Zones */
.upload-guidance {
    background: white;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.guidance-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.guidance-icon { font-size: 1.5rem; }

.guidance-header h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent-navy);
}

.guidance-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.75rem;
}

.guidance-content li {
    padding: 0.35rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.upload-guidance.compact {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.upload-guidance .small {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.upload-zone {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.03);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-gold);
    opacity: 0.6;
}

.upload-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.upload-subtext {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.upload-requirement {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.upload-preview {
    margin-top: 1.5rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.preview-item {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-item:hover .remove-btn { opacity: 1; }

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-item.video {
    aspect-ratio: 16/9;
}

/* Video file item - shows file name only */
.preview-item.video-file {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    aspect-ratio: auto;
    min-height: 80px;
}

.preview-item.video-file .video-file-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-item.video-file .video-file-info {
    flex: 1;
    min-width: 0;
}

.preview-item.video-file .video-file-name {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-item.video-file .video-file-size {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.preview-item.video-file .remove-btn {
    position: static;
    opacity: 1;
    width: 32px;
    height: 32px;
}

/* File item for PDF/press kits */
.preview-item.file-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    aspect-ratio: auto;
    min-height: 80px;
}

.preview-item.file-item .file-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.preview-item.file-item .file-item-info {
    flex: 1;
    min-width: 0;
}

.preview-item.file-item .file-item-name {
    font-size: 0.9rem;
    color: var(--accent-gold);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-item.file-item .file-item-size {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

.preview-item.file-item .remove-btn {
    position: static;
    opacity: 1;
    width: 32px;
    height: 32px;
}

.upload-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent-gold);
}

.checkbox-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.amenity-checkbox:hover {
    border-color: var(--accent-gold);
    background: rgba(201, 169, 98, 0.05);
}

.amenity-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-gold);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--accent-navy);
    color: var(--accent-navy);
}

.btn-ghost:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Success Screen */
.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-light);
}

.success-content {
    max-width: 600px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.success-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-navy);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.success-message {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.message-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.success-list {
    list-style: none;
    padding-left: 1rem;
}

.success-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.success-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.success-note {
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.success-note p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.success-note .italic {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--accent-navy);
}

.success-cta { margin-top: 2rem; }

/* ========================================
   NEW PREMIUM SECTIONS FOR PRE-LAUNCH
   ======================================== */

/* Editorial Philosophy Section */
.editorial-philosophy-section {
    background: linear-gradient(135deg, #f8f8f6 0%, #f0eee9 100%);
    padding: 6rem 2rem;
}

.philosophy-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.section-label.gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 98, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.4);
}

.section-title-dark {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--bg-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.philosophy-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 50%, transparent 100%);
    margin: 2rem auto;
}

.philosophy-content {
    text-align: left;
    margin: 3rem 0;
}

.philosophy-lead {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-navy);
    line-height: 1.8;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
}

.philosophy-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.editorial-quote-large {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(201, 169, 98, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-xl);
}

.editorial-quote-large .quote-mark {
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.4;
    display: block;
    line-height: 1;
}

.editorial-quote-large .quote-text {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--bg-primary);
    line-height: 1.8;
    margin: 1.5rem 0;
}

.editorial-quote-large .quote-source {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-navy);
    font-weight: 600;
}

/* Why Lux Magazine Section */
.why-lux-section {
    background: var(--bg-primary);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.why-lux-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(201,169,98,0.08)"/></svg>');
    background-size: 80px 80px;
    opacity: 0.5;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle-wide {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* Invitation Section */
.invitation-section {
    background: linear-gradient(135deg, #f8f8f6 0%, #f5f1e6 100%);
    padding: 6rem 2rem;
}

.invitation-container {
    max-width: 900px;
    margin: 0 auto;
}

.invitation-content {
    margin-top: 2rem;
}

.invitation-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.invitation-emphasis {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent-navy);
    border-left: 3px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin-top: 2.5rem !important;
}

/* CTA Application Section */
.cta-application-section {
    background: var(--bg-secondary);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-container p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Enhanced Golden Type Cards */
.type-card.golden {
    background: linear-gradient(145deg, #d4af37 0%, #c9a962 25%, #f4d46a 50%, #c9a962 75%, #d4af37 100%);
    background-size: 200% 200%;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.type-card.golden .type-card-icon {
    font-size: 2rem;
    color: #0a0a0f;
    margin-bottom: 1rem;
    display: block;
}

/* Status Section Premium */
.status-section-premium {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.status-container-premium {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.status-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(201, 169, 98, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.status-container-premium h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--bg-primary);
    margin-bottom: 1rem;
}

.status-container-premium p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.status-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.status-item {
    text-align: center;
}

.status-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.status-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-navy);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #d4af37 50%, var(--accent-gold) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.final-cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.final-cta-container h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--bg-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta-container p {
    font-size: 1.1rem;
    color: rgba(10, 10, 15, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.final-note {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: rgba(10, 10, 15, 0.6);
    letter-spacing: 1.5px;
}

/* Responsive for New Sections */
@media (max-width: 1200px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .status-details { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
    .editorial-philosophy-section,
    .why-lux-section,
    .invitation-section,
    .cta-application-section,
    .status-section-premium,
    .final-cta-section {
        padding: 4rem 1.25rem;
    }

    .section-title-dark,
    .section-title {
        font-size: 1.75rem;
    }

    .philosophy-lead {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .editorial-quote-large {
        padding: 2rem 1.5rem;
    }

    .editorial-quote-large .quote-text {
        font-size: 1.2rem;
    }

    .values-grid { grid-template-columns: 1fr; }
    .status-details { grid-template-columns: 1fr; }
    .final-cta-container h2 { font-size: 1.75rem; }
}

/* Responsive */
@media (max-width: 1200px) {
    .types-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3rem; letter-spacing: 4px; }
    .section-title { font-size: 1.75rem; }
    .types-grid { grid-template-columns: 1fr; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .submission-header { padding: 1rem 1.5rem; flex-direction: column; gap: 1rem; }
    .type-indicator { order: -1; }
    .info-grid { grid-template-columns: 1fr; }
    .preview-grid { grid-template-columns: repeat(2, 1fr); }
    .form-actions { flex-direction: column; }
    .form-actions .btn-ghost,
    .form-actions .btn-primary-large { width: 100%; }
}
