/* LONE BREED — Editorial surfaces
   Films, Culture, and The House. Depends on tokens from store.css. */

/* ─────────────── Editorial hero: copy over a portrait ─────────────── */

.ed-hero {
    position: relative;
    min-height: min(90vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--lb-black);
}

.ed-hero-media { position: absolute; inset: 0; z-index: 0; }

.ed-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

/* Keeps the left-hand copy readable over the photograph */
.ed-hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(0, 0, 0, 0.94) 0%,
        rgba(0, 0, 0, 0.82) 30%,
        rgba(0, 0, 0, 0.35) 62%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.ed-hero-body {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    max-width: 560px;
}

.ed-rule {
    width: 62px;
    height: 1px;
    background: var(--lb-gold);
    margin: 1.1rem 0 1.4rem;
}

.ed-display {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    line-height: 1.04;
    color: var(--lb-white);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.ed-display .is-gold { color: var(--lb-gold); }

.ed-sub {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lb-text);
}

.ed-lead { color: var(--lb-muted); line-height: 1.85; max-width: 44ch; }

.ed-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--lb-white);
    padding-left: 1.5rem;
    position: relative;
    max-width: 40ch;
}

.ed-quote::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -0.35rem;
    font-size: 2.4rem;
    color: var(--lb-gold);
    line-height: 1;
}

.ed-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--lb-muted);
}

.ed-scroll i { color: var(--lb-gold); animation: scrollHint 2s ease-in-out infinite; }

/* ─────────────────────────── Film player ─────────────────────────── */

.film-stage {
    position: relative;
    border: 1px solid var(--lb-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--lb-charcoal);
    aspect-ratio: 16 / 9;
}

.film-stage img,
.film-stage iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    display: block;
}

.film-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.28);
    border: 0;
    color: var(--lb-white);
    transition: background 0.3s var(--ease-out);
}

.film-play:hover { background: rgba(0, 0, 0, 0.12); color: var(--lb-white); }

.film-play-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    padding-left: 5px;
    backdrop-filter: blur(2px);
}

.film-duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.78);
    color: var(--lb-white);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 3px;
}

.yt-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lb-text);
}

.yt-badge {
    background: var(--lb-gold);
    color: var(--lb-black);
    width: 26px;
    height: 19px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
}

.yt-link:hover { color: var(--lb-gold); }

/* ───────────────────────── Film listing row ───────────────────────── */

.film-row {
    display: grid;
    grid-template-columns: 168px 1fr auto;
    gap: 1.1rem;
    align-items: center;
    border: 1px solid var(--lb-border);
    border-radius: 5px;
    background: var(--lb-surface);
    overflow: hidden;
    margin-bottom: 0.85rem;
    transition: border-color 0.25s var(--ease-out);
}

.film-row:hover { border-color: var(--lb-gold); }

.film-row-media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--lb-charcoal);
}

.film-row-media img { width: 100%; height: 100%; object-fit: cover; }

.film-row-media .film-play-ring {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.film-row-body { padding: 0.75rem 0; min-width: 0; }

.film-row-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--lb-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.25;
}

.film-row-meta {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lb-muted);
    margin-top: 0.2rem;
}

.film-row-cta { padding-right: 1rem; }

/* ───────────────────────── The House chapters ───────────────────────── */

.house-chapter {
    position: relative;
    border: 1px solid var(--lb-border);
    border-radius: 6px;
    overflow: hidden;
    background: var(--lb-surface);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.house-chapter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid var(--lb-border);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lb-muted);
}

.house-chapter-bar .idx { color: var(--lb-gold); }

.house-chapter-media {
    aspect-ratio: 3 / 2;
    background: var(--lb-charcoal);
    overflow: hidden;
}

.house-chapter-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.house-chapter:hover .house-chapter-media img { transform: scale(1.05); }

.house-chapter-body { padding: 1.4rem 1.35rem 1.5rem; flex: 1; }

.house-chapter-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.1;
    color: var(--lb-white);
    text-transform: uppercase;
}

.house-chapter-kicker {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lb-gold);
    margin: 0.7rem 0 0.9rem;
    line-height: 1.8;
}

.house-chapter-copy { font-size: 0.85rem; color: var(--lb-muted); line-height: 1.85; }

.house-point {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.55rem 0;
}

.house-point i { color: var(--lb-gold); font-size: 1rem; margin-top: 2px; }

.house-point-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lb-gold);
}

.house-point-note { font-size: 0.8rem; color: var(--lb-muted); }

.house-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 0;
}

.house-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lb-border);
}

.house-dot.is-active { background: var(--lb-gold); }

.house-signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--lb-gold);
    line-height: 1;
}

.house-outro {
    border: 1px solid var(--lb-border);
    border-radius: 6px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.75rem;
    align-items: center;
}

.house-outro-mark {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid var(--lb-gold);
    display: grid;
    place-items: center;
    color: var(--lb-gold);
    font-size: 1.6rem;
}

.house-explore { display: flex; gap: 2.25rem; flex-wrap: wrap; }

.house-explore a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--lb-text);
}

.house-explore a i { color: var(--lb-gold); font-size: 1.35rem; }
.house-explore a:hover { color: var(--lb-gold); }

/* ───────────────────────────── Responsive ───────────────────────────── */

@media (max-width: 767.98px) {
    .ed-hero-media img { object-position: 78% center; }

    .ed-hero-scrim {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.52) 42%,
            rgba(0, 0, 0, 0.93) 100%
        );
    }

    .film-row { grid-template-columns: 128px 1fr; }
    .film-row-cta { grid-column: 1 / -1; padding: 0 1rem 0.9rem; }

    .house-outro { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .house-explore { justify-content: center; gap: 1.5rem; }
}
