/* Ayyurt Av Bayi - ana sayfa görsel vitrini */
.home-hero {
    padding: 44px 0 42px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2ec 0%, #f8f6ef 55%, #ebe4d6 100%);
}

.home-hero .hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
    gap: 46px;
}

.home-hero .hero-copy {
    position: relative;
    z-index: 2;
}

.home-hero .hero-copy::before {
    position: absolute;
    top: -55px;
    left: -85px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(23, 61, 43, .09);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.home-hero .hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.home-hero .hero-copy .eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.home-hero h1 {
    max-width: 680px;
    font-size: clamp(46px, 5vw, 72px);
}

.home-hero .hero-media {
    position: relative;
    height: 540px;
    overflow: hidden;
    border-radius: 30px;
    background: #173d2b;
    box-shadow: 0 28px 70px rgba(18, 42, 30, .22);
}

.home-hero .hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 19, 13, .8) 100%);
    content: "";
    pointer-events: none;
}

.home-hero .hero-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 59% center;
    transition: transform .8s ease;
}

.home-hero .hero-visual:hover .hero-media > img {
    transform: scale(1.025);
}

.hero-photo-caption {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #fff;
}

.hero-photo-caption span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero-photo-caption strong {
    font-size: 18px;
    letter-spacing: -.02em;
}

.home-hero .hero-sticker {
    bottom: 76px;
    left: -24px;
}

.home-showcase {
    padding-top: 52px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
}

.showcase-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    isolation: isolate;
    border-radius: 26px;
    background: #173d2b;
    box-shadow: 0 16px 45px rgba(20, 45, 31, .11);
    color: #fff;
}

.showcase-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.showcase-card-wide > img {
    object-position: center 48%;
}

.showcase-card:hover > img {
    transform: scale(1.045);
}

.showcase-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 15, .03) 24%, rgba(9, 21, 14, .9) 100%);
}

.showcase-copy {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 28px;
    left: 30px;
}

.showcase-copy > span {
    color: var(--gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .2em;
}

.showcase-copy h3 {
    max-width: 470px;
    margin: 7px 0 16px;
    font-size: clamp(25px, 2.4vw, 36px);
    line-height: 1.03;
    letter-spacing: -.04em;
}

.showcase-copy b {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
}

.showcase-copy b svg {
    transition: transform .2s ease;
}

.showcase-card:hover .showcase-copy b svg {
    transform: translateX(4px);
}

@media (max-width: 1050px) {
    .home-hero .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .home-hero .hero-media {
        height: 500px;
    }

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

@media (max-width: 820px) {
    .home-hero {
        padding-top: 28px;
    }

    .home-hero .hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero .hero-media {
        height: min(62vw, 500px);
    }

    .home-hero .hero-sticker {
        bottom: 22px;
        left: 12px;
    }

    .hero-photo-caption {
        display: none;
    }

    .showcase-card {
        min-height: 330px;
    }
}

@media (max-width: 620px) {
    .home-hero h1 {
        font-size: clamp(39px, 11vw, 54px);
    }

    .home-hero .hero-media {
        min-height: 330px;
        height: 72vw;
        border-radius: 22px;
    }

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

    .showcase-card {
        min-height: 310px;
        border-radius: 20px;
    }

    .showcase-copy {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .showcase-copy h3 {
        font-size: 28px;
    }

    .home-showcase .section-head .link-arrow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero .hero-media > img,
    .showcase-card > img,
    .showcase-copy b svg {
        transition: none;
    }
}
