/* ─── HERO ────────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: minmax(280px, 48%) 1fr;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero-image {
    position: relative;
    overflow: hidden;
    /* border-right: 1px solid var(--line-soft); */
}

.hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 100% 20%;
    filter: saturate(.92) contrast(1.02);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: clamp(42px, 7vw, 112px) clamp(22px, 5vw, 80px);
}

.hero-copy-wrap {
    max-width: 520px;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, rgba(11,13,16,.95) 100%),
    linear-gradient(180deg, rgba(11,13,16,.2) 0%, transparent 20%);
  pointer-events: none;
  z-index: 1;
}

h1 {
    max-width: 650px;
    font-size: clamp(48px, 6.4vw, 94px);
    line-height: .99;
    letter-spacing: -.055em;
}

h1 em {
    color: #fff;
    font-style: italic;
    font-weight: 300;
}

.hero-copy {
    max-width: 440px;
    margin-top: 30px;
    color: var(--muted);
    font-family: var(--serif-text);
    font-size: 18px;
    line-height: 1.72;
    font-weight: 300;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 820px) {
    .hero {
        height: auto;
        grid-template-columns: 1fr;
    }

    .hero-image {
        height: 60vh;
        border-right: 0;
        border-bottom: 1px solid var(--line-soft);
    }

    .hero-image::after {
        display: none;
    }

    .hero-inner {
        padding-top: 28px;
        padding-bottom: 48px;
    }
}

@media (max-width: 520px) {
    .hero {
        grid-template-rows: 480px auto;
    }
}