@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;800&display=swap');

.minimal-editorial-banner {
    --bg: #f8f8f8; /* Very light neutral */
    --black: #1a1a1a;
    
    background-color: var(--bg);
    padding: 120px 8%; /* Massive vertical and horizontal space */
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    justify-content: center;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* More space for the image */
    align-items: center;
    gap: 100px; /* Huge gap between text and image */
    max-width: 1400px;
    width: 100%;
}

/* Typography Styling */
.bold-title {
    font-size: clamp(80px, 10vw, 140px); /* Massive text */
    line-height: 0.85;
    font-weight: 800;
    letter-spacing: -5px; /* Tight letters for the big title */
    color: var(--black);
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.minimal-cta {
    text-decoration: none;
    color: var(--black);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px; /* wide letter spacing = premium */
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--black); /* Simple line instead of a box */
    transition: gap 0.3s ease;
}

.minimal-cta:hover {
    gap: 25px; /* Subtle movement on hover */
}

/* Image Framing */
.editorial-visual {
    display: flex;
    justify-content: flex-end;
}

.arch-frame {
    width: 100%;
    max-width: 500px;
    height: 650px; /* Fixed height for premium consistency */
    background: #eee;
    border-radius: 300px 300px 0 0; /* Pure architectural arch */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.05);
}

.arch-frame img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    filter: grayscale(20%); /* High-end photography feel */
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.arch-frame:hover img {
    transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .minimal-editorial-banner {
        padding: 80px 5%;
    }
    .editorial-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .editorial-text {
        order: 2;
    }
    .editorial-visual {
        order: 1;
        justify-content: center;
    }
    .bold-title {
        font-size: 80px;
        letter-spacing: -2px;
    }
    .arch-frame {
        height: 450px;
    }
}