/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #111111;
    background-color: #FAF9F6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
.hero-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: #6F6F6F;
    line-height: 1.5;
    max-width: 600px;
}

.body-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
}

.body-text.secondary {
    color: #6F6F6F;
    font-size: 1rem;
    margin-top: 2rem;
}

/* Layout System */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-block {
    max-width: 700px;
}

.section-divider {
    width: 100%;
    height: 1px;
    background-color: #EAEAEA;
    margin: 4rem 0;
}

/* Header Navigation */
.header {
    padding: 2rem 0;
    position: relative;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 300;
    color: #6F6F6F;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #111111;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #111111;
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
}

.hero-content {
    text-align: left;
}

/* About Section */
.about {
    padding: 3rem 0;
}

.body-text + .body-text {
    margin-top: 1.5rem;
}

/* Image Divider */
.image-divider {
    padding: 6rem 0;
}

.divider-image {
    display: flex;
    justify-content: center;
}

.placeholder-image.vertical {
    width: 300px;
    aspect-ratio: 3/4;
    background-color: #F5F5F5;
    border: 1px solid #EAEAEA;
}

.placeholder-image.teaser {
    width: 200px;
    aspect-ratio: 4/3;
    background-color: #F5F5F5;
    border: 1px solid #EAEAEA;
}

.divider-img.vertical {
    width: 300px;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
}

.teaser-img {
    width: 200px;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
}

.feature-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
}

.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
}

/* Recognition Section */
.recognition {
    padding: 3rem 0;
}

.recognition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    margin-bottom: 1rem;
}

.recognition-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    font-weight: 300;
    color: #6F6F6F;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.recognition-link:hover {
    color: #111111;
}

/* Coming Soon Section */
.coming-soon {
    padding: 3rem 0;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    border: 1px solid #EAEAEA;
    padding: 1rem 2rem;
    transition: all 0.2s ease;
    background-color: transparent;
}

.cta-button.outlined {
    border: 1px solid #111111;
    color: #111111;
}

.cta-button:hover,
.cta-button.outlined:hover {
    background-color: #111111;
    color: #FAF9F6;
    border-color: #111111;
}

.teaser-image {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-start;
}

/* Magazine Cover Section */
.magazine-cover {
    padding: 3rem 0;
}

.cover-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cover-image {
    display: flex;
    justify-content: center;
}

.cover-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
}

.cover-content {
    padding-left: 2rem;
}

/* Lookbook Section */
.lookbook {
    padding: 3rem 0;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.lookbook-item {
    width: 100%;
}

.lookbook-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
    transition: filter 0.3s ease;
}

.lookbook-img:hover {
    filter: grayscale(0%) contrast(1.1);
}

/* Editions Section */
.editions {
    padding: 3rem 0;
}

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

.edition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.edition-cover {
    margin-bottom: 2rem;
}

.edition-cover-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #EAEAEA;
    transition: filter 0.3s ease;
}

.edition-cover-img:hover {
    filter: grayscale(0%) contrast(1.1);
}

.edition-info {
    max-width: 300px;
}

.edition-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #111111;
}

.edition-description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #6F6F6F;
    margin-bottom: 1.5rem;
}

.edition-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    font-weight: 400;
    color: #111111;
    text-decoration: none;
    border-bottom: 1px solid #EAEAEA;
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}

.edition-link:hover {
    border-color: #111111;
}

/* Footer */
.footer {
    padding: 2rem 0 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    font-size: 0.875rem;
    color: #6F6F6F;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .nav {
        gap: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0 4rem;
    }
    
    .about {
        padding: 2rem 0;
    }
    
    .image-divider {
        padding: 4rem 0;
    }
    
    .recognition {
        padding: 2rem 0;
    }
    
    .coming-soon {
        padding: 2rem 0;
    }
    
    .section-divider {
        margin: 3rem 0;
    }
    
    .recognition-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .placeholder-image.vertical {
        width: 250px;
    }
    
    .placeholder-image.teaser {
        width: 180px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .cover-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cover-content {
        padding-left: 0;
    }
    
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .magazine-cover {
        padding: 2rem 0;
    }
    
    .lookbook {
        padding: 2rem 0;
    }
    
    .editions {
        padding: 2rem 0;
    }
    
    .editions-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 1.5rem 0;
    }
    
    .hero {
        padding: 1.5rem 0 3rem;
    }
    
    .about {
        padding: 1.5rem 0;
    }
    
    .image-divider {
        padding: 3rem 0;
    }
    
    .recognition {
        padding: 1.5rem 0;
    }
    
    .coming-soon {
        padding: 1.5rem 0;
    }
    
    .magazine-cover {
        padding: 1.5rem 0;
    }
    
    .lookbook {
        padding: 1.5rem 0;
    }
    
    .section-divider {
        margin: 2rem 0;
    }
    
    .placeholder-image.vertical {
        width: 200px;
    }
    
    .placeholder-image.teaser {
        width: 150px;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .teaser-image {
        margin-top: 2rem;
        justify-content: center;
    }
    
    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cover-img {
        max-width: 300px;
    }
}

/* Logo Link */
.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:hover {
    color: #6F6F6F;
}

/* Edition Page Styles */
.edition-hero {
    padding: 4rem 0 6rem;
}

.edition-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.edition-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    color: #6F6F6F;
    line-height: 1.5;
    max-width: 600px;
}

/* Magazine Grid */
.magazine-grid {
    padding: 2rem 0;
}

.feature-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 2rem 0;
}

.feature-image {
    width: 100%;
}

.placeholder-image {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAEAEA;
}

.placeholder-image.small {
    aspect-ratio: 1/1;
}

.placeholder-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    color: #6F6F6F;
    font-weight: 300;
}

.feature-content {
    padding-top: 0.5rem;
}

.feature-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #111111;
    margin-bottom: 1.5rem;
}

.feature-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: #6F6F6F;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.meta-divider {
    color: #EAEAEA;
    font-weight: 300;
}

/* Gallery Spread */
.gallery-spread {
    margin: 4rem 0;
}

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

.gallery-item {
    width: 100%;
}

.gallery-content {
    max-width: 700px;
}

/* Closing Section */
.closing {
    padding: 2rem 0;
}

.cta-button.secondary {
    margin-top: 2rem;
    border-color: #6F6F6F;
    color: #6F6F6F;
}

.cta-button.secondary:hover {
    background-color: #6F6F6F;
    color: #FAF9F6;
    border-color: #6F6F6F;
}

/* Responsive Design for Edition Page */
@media (max-width: 768px) {
    .feature-article {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .edition-hero {
        padding: 2rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .feature-article {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .edition-hero {
        padding: 1.5rem 0 3rem;
    }
}

/* Subtle animations */
@media (prefers-reduced-motion: no-preference) {
    .nav-link,
    .cta-button,
    .logo-link {
        transition: all 0.2s ease;
    }
    
    .section-divider {
        opacity: 0;
        animation: fadeIn 0.6s ease forwards;
    }
    
    .placeholder-image {
        transition: border-color 0.2s ease;
    }
    
    .placeholder-image:hover {
        border-color: #6F6F6F;
    }
    
    @keyframes fadeIn {
        to {
            opacity: 1;
        }
    }
}
