/* Shared base styles for The Bend show/preview pages.
   Extracted 2026-08-19: rules that were byte-identical (aside from
   whitespace) across 5+ of the 13 static show pages under public/preview/.
   Each page still defines its own :root color palette above this link,
   so themed variables (--gold, --deep, --cream, etc.) resolve per-page. */

* { box-sizing: border-box; margin: 0; padding: 0; }

.bebas { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.06em; }

.btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      padding: 0.9rem 1.55rem;
      border-radius: 2px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
    }

.btn:hover { transform: translateY(-2px); }

.cta-band p {
      color: var(--muted);
      margin-bottom: 0.35rem;
      font-size: 0.95rem;
    }

.detail-row {
      display: grid;
      grid-template-columns: 8rem 1fr;
      gap: 1rem;
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.95rem;
    }

.detail-row dd { color: var(--cream); line-height: 1.5; }

.detail-row:last-child { border-bottom: none; }

.detail-rows { padding: 0.5rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }

.hits strong { color: var(--cream); font-weight: 700; }

.nav-in {
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
    }

.nav-in img { height: 3.2rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }

.nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

.night span {
      display: block;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }

.section-in { max-width: 72rem; margin: 0 auto; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

.stat span {
      font-size: 0.58rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }

.stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.65rem;
      margin-top: 1.75rem;
    }

.vid-card .frame-wrap {
      position: relative;
      padding-top: 56.25%;
      background: #000;
    }

.vid-card .frame-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

/* Fallback to --white when a page's :root doesn't define --cream — several
   pages never picked it up during the 2026-08-19 extraction, which made
   body text resolve to invalid/black against the dark background. */
body {
      font-family: Inter, system-ui, sans-serif;
      background: var(--deep);
      color: var(--cream, var(--white, #fff));
      overflow-x: hidden;
    }

footer a:hover { text-decoration: underline; }

html { scroll-behavior: smooth; }

nav {
      position: fixed;
      top: 1.95rem;
      left: 0; right: 0;
      z-index: 1000;
      padding: 0 0.85rem;
      transition: background 0.3s, top 0.3s;
    }
