/* ============================================
   BEACON PROJECT PAGE
   beacon.css
   ============================================ */

.beacon-page {
    background-color: var(--bg);
}

/* ── Hero ── */
.bcn-hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-color: #000;
    margin-top: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bcn-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bcn-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.4) 100%
    );
}

.bcn-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.bcn-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.bcn-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: normal;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #fff;
}

.bcn-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    letter-spacing: -0.02em;
}

/* ── Dateline ── */
.bcn-dateline {
    border-bottom: 0.5px solid var(--line);
    border-top: 0.5px solid var(--line);
}
.bcn-dateline-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.bcn-dateline-sep { color: var(--line); }

/* ── Shared container ── */
.bcn-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ── Sections ── */
.bcn-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.bcn-grid-2 {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
}

.bcn-hr {
    border: none;
    border-top: 0.5px solid var(--line);
    margin: 0;
}

/* ── Section labels ── */
.bcn-section-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ── Typography ── */
.bcn-lede {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.bcn-body {
    font-size: clamp(1rem, 1.3vw, 1.125rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}
.bcn-body:last-child { margin-bottom: 0; }

.bcn-link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--line);
    transition: text-decoration-color 0.2s;
}
.bcn-link:hover { text-decoration-color: var(--text); }

/* ── Specs ── */
.bcn-specs {
    display: flex;
    flex-direction: column;
    border-top: 0.5px solid var(--line);
}

.bcn-spec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0.875rem 0;
    border-bottom: 0.5px solid var(--line);
}

.bcn-spec-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.bcn-spec-value {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: -0.01em;
}

/* ── Print ad ── */
.bcn-ad {
    width: 100%;
    border-top: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    overflow: hidden;
    display: flex;
    justify-content: center;
    background: #000;
}

.bcn-ad img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

/* ── Back link ── */
.bcn-back {
    padding: 3rem 0;
    border-top: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
}

.bcn-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.2s ease, gap 0.2s ease;
    letter-spacing: -0.01em;
}
.bcn-back-link:hover { color: var(--text); gap: 1rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .bcn-grid-2 { grid-template-columns: 1fr; gap: 2rem; }
    .bcn-spec-row { grid-template-columns: 1fr; gap: 0.25rem; }
}

@media (max-width: 640px) {
    .bcn-hero { height: auto; min-height: 60vw; }
    .bcn-hero-overlay { padding: 2rem; }
    .bcn-title { font-size: clamp(3rem, 14vw, 4rem); }
}
