/* ============================================================
   HOMEPAGE (2026-09 redesign)
   One dark canvas, left-aligned editorial type, no floating dots,
   no dot grids, no framed photos. Loaded after styles/v2/reels.
   ============================================================ */

.home { background: var(--black); }

.home .h-textlink,
.home .h-essay,
.home .btn { outline-offset: 4px; }
.home .h-textlink:focus-visible,
.home .h-essay:focus-visible,
.home .btn:focus-visible,
.home .video-wrapper:focus-visible { outline: 2px solid var(--cyan); }

/* ---------- section scaffolding ---------- */
.h-section { padding: 112px 0; position: relative; }
.h-section--raised { background: #0a0a0a; }

.h-head { max-width: 720px; margin-bottom: 56px; }
.h-head h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    letter-spacing: .01em;
    color: var(--white);
}
.h-head p {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-300);
}
.h-head p strong { color: var(--white); font-weight: 600; }
.h-head--split {
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

/* ---------- hero ---------- */
.h-hero {
    position: relative;
    min-height: min(92vh, 920px);
    display: flex;
    align-items: center;
    padding: 140px 0 96px;
    overflow: hidden;
}
.h-hero-photo {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 54%;
    pointer-events: none;
}
.h-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 18%;
    /* the studio portrait sits on near-black, so it melts into the page */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%), linear-gradient(to top, transparent 0%, #000 22%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to right, transparent 0%, #000 38%), linear-gradient(to top, transparent 0%, #000 22%);
    mask-composite: intersect;
}
.h-hero .container { position: relative; z-index: 1; width: 100%; }
.h-hero-copy { max-width: 560px; }
.h-hero h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(64px, 9vw, 128px);
    line-height: .88;
    letter-spacing: .005em;
    color: var(--white);
    margin: 0 0 28px;
}
.h-hero h1 .highlight { display: block; color: var(--cyan); }
.h-hero h1 .highlight::after { display: none; }
.h-hero .hero-text {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gray-300);
    margin: 0 0 36px;
    max-width: 520px;
}
.h-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.h-hero-actions .btn { padding: 15px 34px; font-size: 15px; }
.h-hero-facts {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 48px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: var(--gray-400);
    font-size: 15px;
}
.h-hero-facts strong { color: var(--white); font-weight: 600; }

/* ---------- two talks ---------- */
.h-talks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.h-talk {
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, .08);
    border-top: 3px solid var(--cyan);
    border-radius: 20px;
    padding: 44px 40px 40px;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.h-talk + .h-talk { border-top-color: var(--gold); }
.h-talk:hover + .h-talk, .h-talk + .h-talk:hover { border-top-color: var(--gold); }
.h-talk:hover:first-child { border-top-color: var(--cyan); }
.h-talk:hover { border-color: rgba(255, 255, 255, .16); }
.h-talk h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1;
    color: var(--white);
    margin: 0 0 12px;
}
.h-fee {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px;
}
.h-fee--free { color: var(--cyan); }
.h-fee--paid { color: var(--gold); }
.h-talk > p:not(.h-fee) {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 24px;
}
.h-list {
    list-style: none;
    margin: 0 0 36px;
    padding: 0;
}
.h-list li {
    position: relative;
    padding: 12px 0 12px 26px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: var(--gray-100);
    font-size: 15px;
    line-height: 1.5;
}
.h-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 21px;
    width: 12px; height: 2px;
    background: currentColor;
    opacity: .5;
}
.h-talk-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.h-kit { margin: 32px 0 0; color: var(--gray-400); font-size: 15px; }
.h-kit .h-textlink { margin-left: 6px; }

/* ---------- on stage ---------- */
.h-stage {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 56px;
    align-items: center;
}
.h-stage .video-wrapper { margin: 0; border-radius: 16px; }
.h-quote { margin: 0; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.h-quote:first-child { border-top: 0; padding-top: 0; }
.h-quote blockquote {
    margin: 0 0 10px;
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.6;
}
.h-quote--lead blockquote {
    color: var(--white);
    font-size: 23px;
    line-height: 1.45;
    font-weight: 500;
}
.h-quote figcaption { font-size: 14px; color: var(--cyan); font-weight: 600; }

/* ---------- story ---------- */
.home .timeline-section { padding: 112px 0; background: var(--black); }
.home .milestone-card h3 { margin-bottom: 6px; }
.home .milestone-tag {
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.h-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 72px 0 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}
.h-numbers div { display: flex; flex-direction: column-reverse; }
.h-numbers dd {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1;
    color: var(--white);
}
.h-numbers dt { margin-top: 8px; color: var(--gray-400); font-size: 15px; }
.h-more { margin: 40px 0 0; }

/* ---------- feed ---------- */
.home .reels-section { padding: 112px 0 96px; }
.home .reels-section .h-head { margin-bottom: 32px; }
.home .reels-filters { justify-content: flex-start; }

/* ---------- essays ---------- */
.h-essays {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.h-essay {
    display: block;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    text-decoration: none;
    transition: border-color .2s;
}
.h-essay:hover { border-top-color: var(--cyan); }
.h-essay-meta { display: block; font-size: 13px; color: var(--gray-400); margin: -4px 0 12px; }
.h-essay h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 27px;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 14px;
    transition: color .2s;
}
.h-essay:hover h3 { color: var(--cyan); }
.h-essay p { color: var(--gray-400); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---------- lighthouse + booking ---------- */
.h-close { background: #0a0a0a; }
.h-close-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}
.h-lighthouse-logo { width: 190px; height: auto; margin-bottom: 32px; }
.h-counter {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(64px, 8vw, 104px);
    line-height: .9;
    color: var(--white);
}
.h-counter-label { margin: 10px 0 24px; color: var(--gold); font-weight: 600; font-size: 15px; }
.h-lighthouse > p:last-child { color: var(--gray-300); font-size: 16px; line-height: 1.7; margin: 0; max-width: 540px; }
.h-lighthouse strong { color: var(--white); }
.h-book {
    background: var(--lavender);
    color: var(--black);
    border-radius: 20px;
    padding: 48px 44px;
}
.h-book h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(40px, 4.4vw, 56px);
    line-height: .95;
    margin: 0 0 16px;
    color: var(--black);
}
.h-book p { font-size: 17px; line-height: 1.6; margin: 0 0 32px; color: #1d1f2e; }
.h-book .btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.h-book .btn-primary:hover { background: #1d1f2e; border-color: #1d1f2e; color: var(--white); box-shadow: none; }
.h-book .h-textlink { color: var(--black); }
.home .h-book .h-textlink:focus-visible,
.home .h-book .btn:focus-visible { outline-color: var(--black); }

/* ---------- responsive ---------- */
@media (min-width: 821px) and (max-width: 1100px) {
    .h-hero-photo { width: 46%; }
    .h-hero-photo img { opacity: .55; }
    .h-hero-copy { max-width: 480px; }
}

@media (max-width: 991px) {
    .h-section, .home .timeline-section, .home .reels-section { padding: 80px 0; }
    .h-talks, .h-stage, .h-essays, .h-close-grid { grid-template-columns: 1fr; }
    .h-stage { gap: 40px; }
    .h-essays { gap: 32px; }
    .h-numbers { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .h-proof-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .h-proof-lead { flex-basis: auto; }
}

@media (max-width: 820px) {
    .h-hero { min-height: 0; display: block; padding: 0 0 64px; }
    .h-hero-photo { position: relative; width: 100%; height: 62vh; max-height: 560px; }
    .h-hero-photo img {
        -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 40%);
        mask-image: linear-gradient(to top, transparent 0%, #000 40%);
    }
    .h-hero .container { margin-top: -120px; }
    .h-hero h1 { font-size: clamp(56px, 16vw, 88px); margin-bottom: 20px; }
    .h-hero .hero-text { font-size: 17px; }
    .h-talk { padding: 36px 26px 30px; }
    .h-talk h3 { font-size: 34px; }
    .h-head--split { flex-direction: column; align-items: flex-start; }
    .h-logos { gap: 18px 30px; }
    .h-logos img { height: calc(var(--h, 32px) * .8); }
    .h-book { padding: 36px 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .h-talk, .h-essay, .h-essay h3, .h-logos img, .h-textlink { transition: none; }
    .home .btn:hover, .home .video-wrapper:hover { transform: none; }
}

/* The journey reveal is JS-driven; without scripting the milestones must still show. */
@media (scripting: none) {
    .home .milestone { opacity: 1; transform: none; }
}

/* Shorter tail between the journey line and the numbers */
.home .timeline { padding-bottom: 0; }
.home .timeline .milestone:last-of-type { padding-bottom: 8px; }
.h-numbers { margin-top: 40px; }
