/* ============================================================
   PRESS — editorial-magazine override layer for Lumière.
   Loaded AFTER lumiere.css. A masthead headline, a wide photo band and
   strong rules. Crisp off-white canvas, near-black ink, one accent.
   Everything else inherited from lumiere.css.
   ============================================================ */

.press {
  --l-bg: #f6f4ef;
  --l-surface: #ffffff;
  --l-muted-surface: #ece8e0;
  --l-border: #dcd6cb;
  --l-rule: #1a1613;          /* strong editorial rule */
  --l-ink: #141210;
  --l-ink-muted: #504a43;
  --l-radius-card: 4px;       /* crisp, squared-off */
  --l-radius-media: 4px;
  --l-radius-pill: 6px;
}
body.press { background: var(--l-bg); color: var(--l-ink); }
.press h1, .press h2, .press h3 { letter-spacing: -0.03em; }

/* squared "stamp" buttons instead of pills */
.press .btn, .press .nav-cta { border-radius: var(--l-radius-pill); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; font-size: .74rem; }

/* ---- Nav ---- */
.press #nav { background: color-mix(in srgb, var(--l-bg) 84%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--l-rule); }

/* ---- HERO: masthead + photo band + meta row ---- */
.press .press-hero { min-height: auto; display: block; padding: clamp(6.5rem, 9vw, 9rem) var(--l-pad) clamp(2.5rem, 4vw, 4rem); }
.press .press-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 1.4rem; border-bottom: 3px solid var(--l-rule); }
.press .press-top .eyebrow { color: var(--accent); opacity: 1; margin: 0 0 .3rem; }
.press .l-hero-h1 { color: var(--l-ink); text-shadow: none; font-size: clamp(3.4rem, 10vw, 10rem); line-height: 0.9; flex: 1 1 100%; }
.press .l-hero-h1 em { color: var(--accent); font-style: italic; }
.press .press-band { margin-top: 1.6rem; overflow: hidden; border-radius: var(--l-radius-media); }
.press .press-band .hero-photo { position: relative; width: 100%; height: clamp(320px, 52vh, 620px); background-size: cover; background-position: center; }
.press .press-meta { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.2rem 2rem; padding-top: 1.4rem; }
.press .press-meta .l-hero-tag { color: var(--l-ink); text-shadow: none; opacity: 1; font-family: var(--font-head); font-size: clamp(1.15rem, 2vw, 1.7rem); line-height: 1.35; max-width: 40ch; margin: 0; }
.press .press-meta .l-hero-cta { margin: 0; justify-content: flex-end; }
.press .press-meta .l-hero-rating { grid-column: 1 / -1; color: var(--l-ink-muted); border-top: 1px solid var(--l-border); padding-top: 1rem; }
.press .press-meta .l-hero-rating .stars { color: var(--accent); }
.press .btn-ghost { color: var(--l-ink); border-color: var(--l-rule); }
.press .btn-ghost:hover { background: var(--l-ink); color: var(--l-bg); border-color: var(--l-ink); }

/* ---- Section headers: big number + rule, magazine style ---- */
.press .section-eyebrow { color: var(--l-ink); font-weight: 500; }
.press .section-eyebrow::before {
  content: ""; display: block; width: 100%; height: 2px; background: var(--l-rule); margin-bottom: 1.2rem;
}
.press .l-sec-head h2 { font-size: clamp(2.4rem, 4vw, 4.4rem); }

/* squared media + crisp cards */
.press .gallery-grid img { border-radius: var(--l-radius-media); }
.press .review-card { border-radius: var(--l-radius-card); border-color: var(--l-border); }
.press .l-about-media, .press .bs-edu-media { border-radius: var(--l-radius-media); }

@media (max-width: 720px) {
  .press .press-meta { grid-template-columns: 1fr; }
  .press .press-meta .l-hero-cta { justify-content: flex-start; }
}

/* Reviews section: blend with this light layout instead of the inherited dark
   band (Kevin 2026-07-30 — the black slab clashed on the light layouts). */
.press .l-reviews { background: var(--l-muted-surface); color: var(--l-ink); }
.press .l-reviews .section-eyebrow { color: var(--accent); }
.press .review-stat .num { color: var(--l-ink); }
.press .review-stat .count { color: var(--l-ink-muted); }
.press .review-card { background: var(--l-surface); border: 1px solid var(--l-border); }
.press .review-card:hover { background: var(--l-surface); }
.press .review-card .rtext { color: var(--l-ink); }
.press .review-card .rauthor { color: var(--l-ink-muted); }
