/* Editorial Magazine Style Variables */
:root {
    --bg-color: #050810; /* Very Dark Luxury Background */
    --text-primary: #F8F9FA; /* Off-white text */
    --text-secondary: #A0AEC0; /* Gray text */
    --brand-blue: #3B82F6; /* Bright Vivid Sapphire Blue */
    --accent-gold: #D4AF37; /* Metallic Gold */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

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



/* Typography Utilities */
.brand-blue { color: var(--brand-blue); }
.accent-gold { color: var(--accent-gold); font-style: italic; }
.text-center { text-align: center; }

/* Navigation */
.editorial-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 8, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.editorial-nav.scrolled {
    padding: 1rem 5%;
    background: rgba(5, 8, 16, 0.98);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-blue);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-btn {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 0.3rem 0.8rem;
    font-family: var(--font-heading);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--accent-gold);
    color: var(--text-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--text-primary);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050810;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at 90% 10%);
    transition: clip-path 0.6s ease-in-out;
}

.mobile-overlay.open {
    clip-path: circle(150% at 90% 10%);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-links a {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-decoration: none;
    text-transform: uppercase;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-typography {
    z-index: 2;
    padding-right: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 400px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100vh;
    overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}

/* Heritage Section */
.heritage-section {
    padding: 10rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 3rem;
}

.editorial-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.drop-cap {
    float: left;
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 4rem;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    color: var(--brand-blue);
}

.heritage-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.heritage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

/* Curation / Marquee Section */
.curation-section {
    padding: 8rem 0;
    overflow: hidden;
    background: #02040A;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.marquee {
    display: inline-flex;
    gap: 2rem;
    animation: scroll-left 40s linear infinite;
}

.marquee-wrapper.reverse .marquee {
    animation: scroll-right 45s linear infinite;
}

.marquee img {
    height: 350px;
    width: 280px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.5s;
}

.marquee img:hover {
    filter: grayscale(0%);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Collage Section */
.collage-section {
    padding: 10rem 5%;
    background: var(--bg-color);
}

.collage-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    gap: 2rem;
    align-items: center;
}

.collage-item {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
}

.collage-item:hover img {
    transform: scale(1.05);
}

.c-1 {
    grid-column: 2 / 6;
    grid-row: 1 / 3;
    aspect-ratio: 3/4;
}

.c-2 {
    grid-column: 7 / 10;
    grid-row: 1 / 2;
    aspect-ratio: 1/1;
}

.c-3 {
    grid-column: 8 / 12;
    grid-row: 2 / 4;
    aspect-ratio: 4/5;
    margin-top: -3rem;
}

.collage-text {
    grid-column: 2 / 6;
    grid-row: 3 / 4;
    padding-top: 3rem;
}

.collage-text h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Inquiry Section */
.inquiry-section {
    padding: 10rem 5%;
    background: #0A0F1D;
    color: var(--text-primary);
}

.inquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inquiry-info h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 2rem;
}

.inquiry-info p {
    color: #A0AEC0;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
}

.contact-list strong {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-list a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--brand-blue);
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

.btn-submit {
    align-self: flex-start;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-gold);
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-gold);
    color: #000;
}

footer {
    text-align: center;
    padding: 3rem;
    background: #050814;
    color: #4A5568;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 6rem; }
    .heritage-section { gap: 3rem; }
    .inquiry-container { gap: 3rem; }
}

@media (max-width: 768px) {
    .logo { font-size: 1.5rem; }
    .nav-links { display: none; }
    .nav-actions { gap: 1rem; }
    .menu-toggle { display: block; }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding-top: 8rem;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 60vh;
        clip-path: none;
        margin-top: 2rem;
    }
    
    .hero-typography {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-title { font-size: 3.5rem; word-break: break-word; }
    .section-title { font-size: 2.5rem; word-break: break-word; }
    
    .heritage-section {
        grid-template-columns: 1fr;
    }
    
    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .c-1, .c-2, .c-3, .collage-text {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .c-3 { margin-top: 0; }
    .collage-text h3 { font-size: 2.2rem; word-break: break-word; }
    
    .inquiry-container {
        grid-template-columns: 1fr;
    }
    .inquiry-info h2 { font-size: 2.5rem; word-break: break-word; }
}
