/* GRAFIKDESIGN - MAGAZINE/EDITORIAL LAYOUT */

:root {
    /* Dark Elegant Colors */
    --black: #0A0A0A;
    --dark: #1A1A1A;
    --dark-light: #2A2A2A;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;

    /* Gold Gradient */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E5B4 50%, #D4AF37 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    font-weight: 300;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* FLOATING NAVIGATION */
.floating-menu {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.menu-logo {
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    padding-right: 30px;
}

.logo-initial {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--black);
}

.menu-items {
    display: flex;
    gap: 30px;
}

.menu-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link.active,
.menu-link:hover {
    color: var(--gold);
}

.menu-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
}

.menu-socials {
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding-left: 30px;
}

.social-icon {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--gold);
}

/* HERO: MAGAZINE COVER */
.hero-magazine {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    background: var(--black);
    position: relative;
}

.magazine-frame {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.edition-label {
    position: absolute;
    top: 40px;
    left: 80px;
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray-light);
}

.edition-num,
.edition-year {
    color: var(--gold);
}

.cover-title {
    margin-bottom: 60px;
}

.cover-headline {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.gold-foil {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gold-foil::after {
    content: attr(data-text);
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    z-index: -1;
}

.cover-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    letter-spacing: 1px;
    font-weight: 300;
}

.cover-image-grid {
    display: grid;
    grid-template-columns: 400px 300px 1fr;
    gap: 30px;
    align-items: center;
}

.grid-image {
    overflow: hidden;
}

.grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.grid-image:hover img {
    filter: grayscale(0%);
}

.img-1 {
    height: 500px;
}

.img-2 {
    height: 400px;
}

.grid-text {
    padding: 40px;
}

.serif-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.4;
}

.scroll-indicator-mag {
    position: absolute;
    bottom: 40px;
    right: 80px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gray-light);
    font-weight: 600;
}

/* SERVICES: BENTO BOX GRID */
.services-bento {
    padding: 120px 40px;
    background: var(--dark);
}

.container-magazine {
    max-width: 1400px;
    margin: 0 auto;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.eyebrow-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
}

.eyebrow-line.white {
    background: var(--white);
}

.eyebrow-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gray-light);
}

.eyebrow-text.white {
    color: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 20px;
}

.bento-box {
    background: var(--black);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

/* Bento Box Sizes */
.bento-box.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-box.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-box.small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-box.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-box.tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* Bento Box Variants */
.bento-box.gold-border {
    border: 2px solid var(--gold);
}

.bento-box.black-bg {
    background: var(--black);
}

.bento-box.white-border {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bento-box.gradient-gold {
    background: var(--gradient-gold);
}

.bento-box.gold-bg {
    background: var(--gold);
}

.bento-box.image-bg {
    padding: 0;
}

.bento-box.image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.box-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.box-number.gold {
    color: var(--gold);
}

.box-number.white {
    color: var(--white);
}

.box-number.black {
    color: var(--black);
}

.box-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--white);
}

.box-title.white {
    color: var(--white);
}

.box-title.black {
    color: var(--black);
}

.box-desc {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.box-desc.gray {
    color: var(--gray);
}

.box-desc.white-trans {
    color: rgba(255, 255, 255, 0.9);
}

.box-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
}

.box-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 4rem;
    opacity: 0.1;
    color: var(--gold);
}

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

.box-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.1) 20px
    );
    pointer-events: none;
}

/* PORTFOLIO: HORIZONTAL SCROLL CASES */
.portfolio-cases {
    padding: 120px 0;
    background: var(--black);
    overflow: hidden;
}

.cases-header {
    text-align: center;
    margin-bottom: 60px;
}

.cases-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--white);
    margin-top: 20px;
}

.horizontal-scroll {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

.case-item {
    min-width: 600px;
    scroll-snap-align: center;
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
}

.case-number {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -40px;
    left: 0;
}

.case-image {
    width: 400px;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);
    transition: all 0.5s ease;
}

.case-item:hover .case-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.case-info {
    flex: 1;
    padding: 40px;
}

.case-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.case-category {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.case-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.scroll-hint {
    text-align: center;
    margin-top: 40px;
}

.hint-text {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gray);
    font-weight: 600;
}

/* TESTIMONIALS: EDITORIAL QUOTE */
.testimonials-editorial {
    padding: 120px 40px;
    background: var(--dark);
}

.quote-large {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: -60px;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 40px;
}

.quote-author {
    margin-top: 40px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.95rem;
    color: var(--gray);
    letter-spacing: 1px;
}

/* CONTACT: SPLIT SCREEN */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.split-left {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.split-content {
    max-width: 600px;
}

.split-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 30px 0;
}

.split-text {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 60px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.method-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.method-value {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

.split-right {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.split-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 80px;
}

.overlay-text {
    color: var(--white);
}

.location {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.availability {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* FOOTER */
.footer-minimal {
    background: var(--dark);
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a,
.footer-social a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .floating-menu {
        top: 20px;
        gap: 20px;
        padding: 12px 20px;
    }

    .menu-items {
        gap: 20px;
    }

    .cover-headline {
        font-size: 6rem;
    }

    .cover-image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .img-1,
    .img-2 {
        height: 400px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(auto-fit, 250px);
    }

    .bento-box.large {
        grid-column: span 2;
    }

    .bento-box.medium,
    .bento-box.wide {
        grid-column: span 2;
    }

    .bento-box.tall {
        grid-row: span 1;
    }

    .case-item {
        min-width: 500px;
        flex-direction: column;
    }

    .case-image {
        width: 100%;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .split-right {
        min-height: 50vh;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .floating-menu {
        top: 20px;
        gap: 15px;
        padding: 12px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-logo {
        border-right: none;
        padding-right: 0;
    }

    .menu-socials {
        border-left: none;
        padding-left: 0;
    }

    .menu-items {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-link {
        font-size: 0.8rem;
    }

    .magazine-frame {
        padding: 40px 20px;
    }

    .cover-headline {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-box.large,
    .bento-box.medium,
    .bento-box.wide {
        grid-column: span 1;
    }

    .cases-title {
        font-size: 3rem;
    }

    .case-item {
        min-width: 90vw;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .split-left {
        padding: 40px 20px;
    }

    .split-title {
        font-size: 2.5rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .floating-menu {
        padding: 10px 15px;
        gap: 10px;
    }

    .menu-items {
        gap: 10px;
    }

    .menu-link {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .cover-headline {
        font-size: 2.5rem;
    }

    .bento-box {
        padding: 30px 20px;
    }

    .box-title {
        font-size: 1.5rem;
    }
}
