/* ═══════════════════════════════════════════════════════
   Component: Hero — Full-viewport parallax hero
   ═══════════════════════════════════════════════════════ */

.dc-hero {
    height: 160vh;
    max-height: 1000px;
}

.dc-hero__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    max-height: 1000px;
    overflow: clip;
    display: flex;
    align-items: center;
}

.dc-hero__bg,
.dc-hero__image,
.dc-hero__veil,
.dc-hero__soft,
.dc-hero__outline {
    position: absolute;
    inset: 0;
}

.dc-hero__bg {
    inset: -20% 0 -20% 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.08);
    filter: saturate(0.92) contrast(1.05) brightness(1.08);
}

.dc-hero__soft {
    background: radial-gradient(circle at 70% 28%, rgba(255, 240, 220, 0.12), transparent 22%), radial-gradient(circle at 26% 70%, rgba(185, 144, 99, 0.16), transparent 28%);
    mix-blend-mode: screen;
}

.dc-hero__veil {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.14) 45%, rgba(0, 0, 0, 0.22) 100%);
}

.dc-hero__outline {
    inset: 10vh 4vw 6vw;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.dc-hero__content {
    position: relative;
    z-index: 3;
    padding: 4vh;
}

.dc-hero .dc-eyebrow {
    color: rgb(255 255 255 / 55%);
}

.dc-hero .dc-eyebrow::before {
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 35%));
}

.dc-hero h1 {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    text-wrap: balance;
    color: #fff;
}

.dc-hero__lead {
    max-width: 600px;
    font-size: 18px;
    color: rgb(255 255 255 / 62%);
    margin-top: 12px;
}

/* ── Meta cards ───────────────────────────────────────── */

.dc-hero__meta {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
}

.dc-hero__meta-card {
    position: relative;
    padding: 22px 20px 18px;
    background: rgba(255, 253, 249, 0.12);
    border: 1.5px dashed rgba(255, 240, 220, 0.4);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Inner stitch border */
.dc-hero__meta-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px dashed rgba(255, 240, 220, 0.22);
    border-radius: 13px;
    pointer-events: none;
}

/* Cross-stitch corner decoration */
.dc-hero__meta-card::after {
    content: "\2715 \2715";
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 10px;
    color: rgba(255, 240, 220, 0.28);
    letter-spacing: 3px;
    line-height: 1;
    pointer-events: none;
}

.dc-hero__meta-card strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 240, 220, 0.92);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.dc-hero__meta-card span {
    font-size: 0.86rem;
    color: rgba(255, 240, 220, 0.6);
    line-height: 1.55;
    display: block;
}

/* ── Floating photos ──────────────────────────────────── */

.dc-floating-photo {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.dc-floating-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

.dc-floating-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.dc-floating-photo--one {
    width: clamp(180px, 18vw, 290px);
    height: clamp(260px, 34vw, 420px);
    right: 8vw;
    top: 14vh;
    transform: rotate(6deg);
}

.dc-floating-photo--two {
    width: clamp(160px, 16vw, 240px);
    height: clamp(220px, 28vw, 340px);
    right: 24vw;
    bottom: 10vh;
    transform: rotate(-6deg);
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 780px) {
    .dc-hero__outline {
        align-items: flex-end;
    }
    .dc-hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
        max-width: 100%;
    }

    .dc-hero__meta {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .dc-floating-photo {
        display: none;
    }
}

@media (max-width: 480px) {
    .dc-hero__content {
        padding: 3vh;
    }
    .dc-hero__meta {
        display: none;
    }
}
