.hero-icle {
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-cream);
    overflow: hidden;
    position: relative;
    padding-top: 80px;
}

.hero-icle-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1440px !important;
}

.hero-icle-left {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-collage {
    position: relative;
    width: 90%;
    height: 90%;
}

.collage-item {
    position: absolute;
    width: 320px;
    height: 450px;
    overflow: hidden;
    background-color: #ddd;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, z-index 0s;
    transition-delay: 0s, 0.5s;
}

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

.collage-item.c1 {
    top: 5%;
    left: 5%;
    width: 65%;
    height: 55%;
    z-index: 2;
}

.collage-item.c2 {
    top: 15%;
    right: 5%;
    width: 50%;
    height: 45%;
    z-index: 1;
}

.collage-item.c3 {
    bottom: 10%;
    left: 10%;
    width: 45%;
    height: 40%;
    z-index: 3;
}

.collage-item.c4 {
    bottom: 5%;
    right: 10%;
    width: 40%;
    height: 35%;
    z-index: 4;
}

.collage-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.hero-icle-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-icle-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.icle-word-top,
.icle-word-mid,
.icle-word-bot {
    font-family: var(--font-sans);
    font-weight: 800;
    line-height: 0.85;
    color: var(--text-primary);
    text-transform: uppercase;
}

.icle-word-top {
    font-size: 8rem;
    letter-spacing: -0.02em;
}

.icle-middle {
    display: flex;
    align-items: center;
    position: relative;
}

.icle-word-mid {
    font-size: 11rem;
    letter-spacing: -0.05em;
}

.icle-ampersand {
    font-family: var(--font-serif);
    font-size: 14rem;
    color: var(--accent-blue);
    font-style: italic;
    margin-left: -20px;
    line-height: 0.5;
    margin-top: -30px;
    font-weight: 400;
}

.icle-word-bot {
    font-size: 6.5rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
    margin-top: -10px;
}

.hero-icle-subline {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 500px;
    margin-bottom: 50px;
}

.icle-decor-line {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.2) 50%, transparent);
}

@media (max-width: 1200px) {
    .icle-word-top {
        font-size: 6rem;
    }

    .icle-word-mid {
        font-size: 9rem;
    }

    .icle-ampersand {
        font-size: 11rem;
    }

    .icle-word-bot {
        font-size: 5rem;
    }
}

@media (max-width: 1024px) {
    .hero-icle-container {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .hero-icle {
        height: auto;
    }

    .hero-icle-left {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .icle-word-top {
        font-size: 4rem;
    }

    .icle-word-mid {
        font-size: 6rem;
    }

    .icle-ampersand {
        font-size: 8rem;
    }

    .icle-word-bot {
        font-size: 3.5rem;
    }
}

.extravagant-title {
    display: none;
}

/* Fullscreen Watermark - fills the hero section */
.watermark-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 18vw;
    font-family: var(--font-sans);
    font-weight: 800;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5vh 0;
    overflow: hidden;
}

.watermark-line {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.watermark-bg.left {
    display: none;
}

@media (max-width: 1024px) {
    .watermark-bg {
        font-size: 15vw;
    }
}

@media (max-width: 768px) {
    .watermark-bg {
        font-size: 12vw;
    }
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 40rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(45, 49, 42, 0.05);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.1em;
}

.hero-subline {
    margin-top: 30px;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-primary);
}

/* Decoration Lines */
.decoration-lines {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.line {
    position: absolute;
    background-color: rgba(45, 49, 42, 0.1);
}

.line-1 {
    top: 20%;
    left: 45%;
    width: 300px;
    height: 1px;
    transform: rotate(45deg);
}

.line-2 {
    bottom: 0;
    right: 15%;
    width: 600px;
    height: 1px;
    transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .hero-main-title h1 {
        font-size: 5rem;
    }

    .hero-bg-text {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-main-title h1 {
        font-size: 3.5rem;
    }

    .hero-bg-text {
        display: none;
    }
}