/* page-home.css */

/* HERO */
.hero {
    min-height: calc(100vh - var(--header-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--cream-deeper);
    overflow: hidden;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 3.5rem);
    padding-left: clamp(1.25rem, calc((100vw - var(--max-w)) / 2 + 3.5rem), 8rem);
}

.hero__eyebrow { margin-bottom: 2rem; }

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--espresso);
    max-width: 14ch;
}
.hero__headline em { color: var(--terra); font-style: italic; }

.hero__sub {
    margin-top: 2rem;
    font-size: 1.05rem;
    max-width: 44ch;
    color: var(--ink-muted);
}

.hero__cta { display: flex; gap: 1rem; margin-top: 2.75rem; flex-wrap: wrap; }

.hero__panels {
    display: grid;
    grid-template-rows: 1fr 1fr;
    border-left: 1px solid var(--cream-deeper);
}

.hero__panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    border-bottom: 1px solid var(--cream-deeper);
    text-decoration: none;
    color: var(--espresso);
    position: relative;
    overflow: hidden;
    background: var(--cream);
    transition: background 0.4s;
}
.hero__panel:last-child { border-bottom: none; }

.hero__panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--espresso);
    transform: translateY(100%);
    transition: transform 0.45s var(--ease-out);
}
.hero__panel:hover::after { transform: translateY(0); }
.hero__panel:hover .hero__panel-content { color: var(--cream); }
.hero__panel:hover .hero__panel-num { color: rgba(245,240,232,0.25); }

.hero__panel-content { position: relative; z-index: 1; transition: color 0.3s; }
.hero__panel-num {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.hero__panel-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.1;
}
.hero__panel-arrow {
    position: absolute;
    right: 2rem; bottom: 2rem;
    z-index: 1;
    color: var(--cream);
    font-size: 1.4rem;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.3s, transform 0.3s;
}
.hero__panel:hover .hero__panel-arrow { opacity: 1; transform: translate(0,0); }

/* INTRO */
.intro { background: var(--cream-dark); border-bottom: 1px solid var(--cream-deeper); }
.intro__inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.intro__quote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--espresso);
}
.intro__quote em { font-style: italic; color: var(--terra); }
.intro__body p { font-size: 1rem; line-height: 1.85; }
.intro__body p + p { margin-top: 1.1em; }

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

/* WEB PREVIEW STRIP */
.preview-strip { background: var(--cream-dark); border-top: 1px solid var(--cream-deeper); border-bottom: 1px solid var(--cream-deeper); }
.preview-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.preview-strip__item {
    aspect-ratio: 16/10;
    background: var(--cream-deeper);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--stone);
}
.preview-strip__item img { width: 100%; height: 100%; object-fit: cover; }
.preview-strip__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 3rem; color: var(--stone); opacity: 0.5;
}

/* LISTEN STRIP */
.listen-strip { border-top: 1px solid var(--cream-deeper); }

/* CTA BAND */
.cta-band {
    background: var(--espresso);
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    margin-top: 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--cream); font-weight: 400; }
.cta-band h2 em { color: rgba(245,240,232,0.4); }
.cta-band .btn { border-color: rgba(245,240,232,0.35); color: var(--cream); flex-shrink: 0; }
.cta-band .btn:hover { background: var(--cream); color: var(--espresso); border-color: var(--cream); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero__content { padding: 3.5rem clamp(1.25rem, 5vw, 3.5rem); }
    .hero__panels { grid-template-rows: auto; grid-template-columns: 1fr 1fr; border-left: none; border-top: 1px solid var(--cream-deeper); }
    .hero__panel { padding: 2rem; border-bottom: none; border-right: 1px solid var(--cream-deeper); }
    .hero__panel:last-child { border-right: none; }
    .intro__inner { grid-template-columns: 1fr; gap: 2rem; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .preview-strip__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .why-grid { grid-template-columns: 1fr; }
    .preview-strip__grid { grid-template-columns: 1fr; }
    .hero__panels { grid-template-columns: 1fr; }
    .hero__panel { border-right: none; border-bottom: 1px solid var(--cream-deeper); }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
