/* ==========================================================================
   DREAMBOOK — Page extension styles (Cricket.html / Football.html)
   Adapts the hero visual and editorial thumbnails from the illustrated-SVG
   treatment on index.html to real photography, reusing every other token,
   component and interaction from style.css untouched.
   ========================================================================== */

/* ---------- Hero: photographic core (replaces transparent-PNG styling) ---------- */
.hero-visual-core{
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-glass-strong);
  box-shadow: 0 40px 100px -28px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-visual-core img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero-visual-core::after{
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,10,0) 38%, rgba(6,6,10,.9) 100%),
    linear-gradient(120deg, rgba(242,201,76,.16), rgba(124,58,237,.14));
  pointer-events: none;
}
.hero-visual-badge{
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 2;
  display: flex; align-items: center; gap: .7rem;
  padding: .7rem 1.05rem;
}
.hero-visual-badge .fc-icon{ width: 34px; height: 34px; border-radius: 10px; }
.hero-visual-badge .fc-icon svg{ width: 17px; height: 17px; }

/* ---------- Featured: reserve space for the real photo so it never
   shifts layout after load (a late shift here desyncs GSAP ScrollTrigger's
   cached offsets for every section below it) ---------- */
.featured-art img{
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Editorial: photographic thumbnails ---------- */
.insight-thumb.photo{ background: #0a0a12; }
.insight-thumb.photo::before{
  content: '';
  background-image: none;
}
.insight-thumb.photo::after{ display: none; }
.insight-thumb.photo img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease-out);
}
.insight-card:hover .insight-thumb.photo img{ transform: scale(1.07); }
.insight-thumb.photo .photo-shade{
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,6,10,.08) 0%, rgba(6,6,10,.78) 100%);
}

/* ---------- Page hero tag variant for sub-pages ---------- */
.page-crumb{ display:flex; align-items:center; gap:.5rem; margin-bottom:1.1rem; }
.page-crumb a{ color: var(--text-2); font-family: var(--font-mono); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; }
.page-crumb a:hover{ color: var(--gold-2); }
.page-crumb span{ color: var(--text-2); font-size:.7rem; }
.page-crumb strong{ color: var(--gold-2); font-family: var(--font-mono); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; }

@media (max-width: 1100px){
  .hero-visual-badge{ display:none; }
}

/* ---------- Legal document pages (Privacy Policy / Terms of Service) ---------- */
.legal-hero{ padding-top: calc(var(--nav-h) + 3rem); padding-bottom: .5rem; }
.legal-title{ font-size: clamp(2rem, 4.4vw, 3.2rem); text-transform: uppercase; line-height: 1.08; margin-bottom: 1rem; }
.legal-updated{ font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 1.5rem; }
.legal-intro{ color: var(--text-1); max-width: 72ch; font-size: 1.05rem; }

.legal-wrap{ display: grid; grid-template-columns: 260px 1fr; gap: 3rem; align-items: start; }
.legal-toc{ position: sticky; top: calc(var(--nav-h-scrolled) + 1.5rem); padding: 1.7rem 1.5rem; }
.legal-toc-label{ display: block; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1rem; }
.legal-toc nav{ display: flex; flex-direction: column; }
.legal-toc a{
  display: block; padding: .5rem 0 .5rem .9rem; margin-left: -.9rem;
  font-size: .87rem; color: var(--text-2); border-left: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.legal-toc a:hover{ color: var(--text-0); border-color: var(--border-glass-strong); }

.legal-content{ display: flex; flex-direction: column; gap: 2.6rem; max-width: 76ch; }
.legal-section{ scroll-margin-top: calc(var(--nav-h-scrolled) + 1.2rem); }
.legal-section h2{ font-size: 1.3rem; text-transform: uppercase; margin-bottom: 1rem; }
.legal-section h3{ font-size: 1.02rem; text-transform: uppercase; color: var(--text-0); margin: 1.3rem 0 .6rem; }
.legal-section p{ color: var(--text-1); font-size: .97rem; line-height: 1.75; margin-bottom: 1rem; }
.legal-section p:last-child{ margin-bottom: 0; }
.legal-section ul{ display: flex; flex-direction: column; gap: .55rem; margin: 1rem 0 1.2rem; padding-left: 1.3rem; list-style: disc; }
.legal-section li{ color: var(--text-1); font-size: .95rem; line-height: 1.65; }
.legal-section a.inline-link{ color: var(--gold-2); text-decoration: underline; text-underline-offset: .2em; }
.legal-section a.inline-link:hover{ color: var(--gold-1); }

@media (max-width: 1000px){
  .legal-wrap{ grid-template-columns: 1fr; }
  .legal-toc{ position: static; }
}
