/* =====================================================================
   BASILICA RIOT -- SHARED DESIGN SYSTEM
   =====================================================================
   rafikiaos.com's shared stylesheet: jewel-tone design tokens, cathedral
   photo/hero patterns, nav, footer, and every reusable component (window-
   photo-cards, celebration bands, arch-window cards, etc.).

   Extracted 2026-07-19 from index.html's original inline <style> block as
   part of building a genuine shared design system, instead of copy-pasting
   CSS into each of the 8 Basilica Riot mockup pages independently. Every
   page should link this file (<link rel="stylesheet" href="/assets/css/
   basilica-riot.css">) and add only page-specific overrides in its own
   inline <style> block, not duplicate this file's rules.

   Nothing in this extraction changed the CSS itself -- verbatim copy, to
   guarantee zero visual regression on the homepage during the move to a
   shared file. Future consolidation/cleanup passes (removing now-dead
   selectors from the pre-rebuild page) are a separate future task, not
   part of this extraction.
===================================================================== */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:        #040814;
    --surface:   #0a1628;
    --surface2:  #0f1f3a;
    --cyan:      #06B6D4;
    --amber:     #F59E0B;
    --blue:      #3B82F6;
    --violet:    #8B5CF6;
    --text:      #E2E8F0;
    --dim:       #94A3B8;
    --border:    rgba(255,255,255,0.08);
    --radius:    12px;
    --font:      'Segoe UI', system-ui, -apple-system, sans-serif;

    /* ── BASILICA RIOT: cathedral jewel-tone palette ──
         4+ irregular jewel tones, never a fixed banding sequence.
         Approved direction 2026-07-07 (local/output/basilica-riot-executive-pitch-20260707.html) */
    --ruby:      #E63960;
    --emerald:   #22C55E;
    --sapphire:  #3B82F6;
    --gold:      #F0B92E;
    --br-violet: #B482FF;
    --br-serif:  Georgia, Cambria, 'Times New Roman', 'Noto Serif', serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background:
      radial-gradient(ellipse 70% 45% at 8% 0%, rgba(230,57,96,0.10) 0%, transparent 62%),
      radial-gradient(ellipse 65% 45% at 92% 8%, rgba(34,197,94,0.09) 0%, transparent 62%),
      radial-gradient(ellipse 80% 55% at 50% 100%, rgba(240,185,46,0.06) 0%, transparent 65%),
      radial-gradient(ellipse 70% 50% at 60% 30%, rgba(59,130,246,0.07) 0%, transparent 60%),
      var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
  }

  /* ── BASILICA RIOT: cathedral light-beam overlay (CSS only, no images) ── */
  .cathedral-beams {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .beam {
    position: absolute;
    top: -10%;
    width: 7%;
    height: 130%;
    opacity: 0.5;
    filter: blur(2px);
    transform: skewX(-6deg);
    mix-blend-mode: screen;
  }
  .beam-ruby     { left: 4%;  background: linear-gradient(180deg, rgba(230,57,96,0.22), transparent 70%); }
  .beam-gold     { left: 46%; background: linear-gradient(180deg, rgba(240,185,46,0.30), transparent 75%); }
  .beam-emerald  { left: 70%; background: linear-gradient(180deg, rgba(34,197,94,0.20), transparent 70%); }
  .beam-sapphire { left: 88%; background: linear-gradient(180deg, rgba(59,130,246,0.18), transparent 70%); }

  /* ── BASILICA RIOT: arched stained-glass window card shape ── */
  .arch-window {
    border-radius: 90px 90px 16px 16px !important;
    position: relative;
  }
  .arch-window::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    border-radius: 90px 90px 0 0;
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,255,255,0.06), transparent 70%);
    pointer-events: none;
  }

  /* ---- BASILICA RIOT: hero headline, divider, sub -- serif display weight
       matching the page-02 mockup's actual scale, not the old smaller wordmark ---- */
  .br-hero-headline {
    position: relative;
    z-index: 1;
    font-family: var(--br-serif);
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.08;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 50px rgba(240,185,46,0.4), 0 0 100px rgba(230,57,96,0.2), 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 22px;
  }
  .br-hero-divider {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
  }
  .br-hero-divider span { width: 64px; height: 1px; background: linear-gradient(90deg, transparent, rgba(240,185,46,0.6)); }
  .br-hero-divider span:last-child { background: linear-gradient(90deg, rgba(240,185,46,0.6), transparent); }
  .br-hero-sub {
    position: relative;
    z-index: 1;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    text-align: center;
    line-height: 1.65;
    max-width: 620px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
    margin-bottom: 48px;
  }

  /* ---- BASILICA RIOT: 3-window row using real stained-glass photo assets ---- */
  .br-3window-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    padding: 0 24px;
  }
  .br-3window-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
  }
  .br-window-photo-card {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .br-window-photo-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
  .br-window-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .br-window-photo-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 22px 20px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(4,8,20,0.55) 40%, rgba(4,8,20,0.92) 100%);
    text-align: center;
  }
  .br-window-photo-label h2 {
    font-family: var(--br-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }
  .br-window-photo-label p {
    font-size: 0.8rem;
    color: rgba(226,232,240,0.85);
    line-height: 1.55;
    margin-bottom: 16px;
  }
  .br-window-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 24px;
    padding: 10px 24px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: 1px solid currentColor;
    background: rgba(0,0,0,0.2);
  }
  .br-window-photo-card:hover .br-window-btn { background: currentColor; color: #040814 !important; }
  .br-window-ruby-btn     { color: var(--ruby); }
  .br-window-emerald-btn  { color: var(--emerald); }
  .br-window-sapphire-btn { color: var(--sapphire); }

  /* Kept for THE ROCHE LIMIT featured-release callout box further down the page */
  .br-window-violet {
    background: linear-gradient(160deg, rgba(180,130,255,0.12) 0%, rgba(139,92,246,0.04) 100%);
    border: 1px solid rgba(180,130,255,0.35);
    padding: 28px 28px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* ---- BASILICA RIOT: "Join the Celebration" -- real photo banner ---- */
  .br-celebration-photo-band {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
  }
  .br-celebration-photo-band img {
    width: 100%;
    display: block;
    max-height: 70vh;
    object-fit: cover;
  }
  .br-celebration-photo-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 8% 24px 8%;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(4,8,20,0.35) 60%, rgba(4,8,20,0.75) 100%);
  }
  .br-celebration-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--br-serif);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    letter-spacing: 0.03em;
    color: var(--gold);
    background: rgba(4,8,20,0.55);
    border: 1px solid rgba(240,185,46,0.6);
    border-radius: 30px;
    padding: 16px 42px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(240,185,46,0.25);
    transition: background 0.2s, transform 0.2s;
  }
  .br-celebration-btn:hover { background: rgba(240,185,46,0.2); transform: translateY(-1px); }
  .br-celebration-sub {
    margin-top: 18px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.9);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  }

  @media (max-width: 900px) {
    .br-3window-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  }

  /* ─── NAV ─────────────────────────────────────────────────── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(4,8,20,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-brand {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--cyan);
    text-decoration: none;
  }
  .nav-brand:hover { opacity: 0.8; }
  .nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
  }
  .nav-link {
    font-size: 0.82rem;
    color: var(--dim);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.02em;
  }
  .nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.05);
  }

  /* ─── HERO ─────────────────────────────────────────────────── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 80px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 60% 50% at 50% 0%, rgba(240,185,46,0.14) 0%, transparent 65%),
      radial-gradient(ellipse 70% 55% at 15% 25%, rgba(230,57,96,0.09) 0%, transparent 65%),
      radial-gradient(ellipse 70% 55% at 85% 30%, rgba(34,197,94,0.08) 0%, transparent 65%),
      radial-gradient(ellipse 80% 60% at 50% 30%, rgba(59,130,246,0.10) 0%, transparent 70%),
      var(--bg);
  }

  /* Basilica Riot: photographic cathedral hero backdrop */
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.55;
    filter: saturate(1.05);
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(4,8,20,0.55) 0%, rgba(4,8,20,0.35) 40%, rgba(4,8,20,0.75) 100%),
      radial-gradient(ellipse 70% 60% at 50% 45%, transparent 0%, rgba(4,8,20,0.5) 100%);
  }

  /* Star particles */
  .stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle var(--dur, 4s) ease-in-out infinite var(--delay, 0s);
  }
  @keyframes twinkle {
    0%,100% { opacity: 0; transform: scale(0.8); }
    50%      { opacity: var(--op, 0.6); transform: scale(1); }
  }

  .hero-icon {
    margin-bottom: 32px;
    filter: drop-shadow(0 0 18px rgba(6,182,212,0.4));
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
  }

  /* ─── BOOK HERO ─────────────────────────────────────────── */
  .hero-book {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 36px;
  }
  .hero-cover {
    width: clamp(200px, 28vw, 300px);
    border-radius: 10px;
    box-shadow: 0 12px 48px rgba(6,182,212,0.22), 0 4px 20px rgba(0,0,0,0.55);
    margin-bottom: 22px;
    animation: float 6s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .hero-cover:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 18px 56px rgba(6,182,212,0.32), 0 6px 24px rgba(0,0,0,0.6);
  }
  .hero-book-title {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    text-align: center;
  }
  .hero-book-sub {
    font-size: 0.9rem;
    color: var(--dim);
    margin-bottom: 22px;
    text-align: center;
    letter-spacing: 0.01em;
  }
  .hero-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: #040814;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.01em;
  }
  .hero-dl-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }

  .wordmark {
    position: relative;
    z-index: 1;
    font-family: var(--br-serif);
    font-size: clamp(2.2rem, 6vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 0 40px rgba(240,185,46,0.35), 0 0 90px rgba(230,57,96,0.18);
    line-height: 1.08;
    margin-bottom: 18px;
  }

  .cathedral-motto {
    position: relative;
    z-index: 1;
    font-family: var(--br-serif);
    font-style: italic;
    font-size: clamp(1rem, 2.4vw, 1.3rem);
    color: rgba(240,185,46,0.85);
    letter-spacing: 0.01em;
    margin-bottom: 10px;
  }

  .tagline {
    position: relative;
    z-index: 1;
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: var(--dim);
    letter-spacing: 0.03em;
    max-width: 480px;
  }

  /* ─── SHARED LAYOUT ─────────────────────────────────────────── */
  .section {
    padding: 80px 24px;
  }
  .section-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* ─── MISSION ───────────────────────────────────────────────── */
  #mission {
    background: var(--surface);
    padding: 72px 24px;
  }
  .mission-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    background: radial-gradient(ellipse 120% 100% at 50% -10%, rgba(240,185,46,0.07), transparent 65%), var(--surface2);
    border: 1px solid rgba(240,185,46,0.18);
    border-radius: 90px 90px 16px 16px;
    padding: 52px 40px 48px;
    position: relative;
    overflow: hidden;
  }
  .mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ruby), var(--gold), var(--emerald), var(--sapphire));
  }
  .mission-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .mission-text {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
  }

  /* ─── VIDEO ─────────────────────────────────────────────────── */
  #video {
    background: var(--bg);
    padding: 80px 24px;
  }
  .video-label {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 24px;
  }
  .video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(6,182,212,0.3);
    box-shadow: 0 0 40px rgba(6,182,212,0.12), 0 0 80px rgba(6,182,212,0.05);
    aspect-ratio: 16 / 9;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
  .video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--dim);
    font-size: 0.9rem;
  }
  .video-yt-link {
    text-align: center;
    margin-top: 14px;
    font-size: 0.82rem;
  }
  .video-yt-link a {
    color: var(--dim);
    text-decoration: none;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(6,182,212,0.25);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
  }
  .video-yt-link a:hover {
    color: var(--accent);
    border-color: var(--accent);
  }

  /* ─── PATTERN GIFT ─────────────────────────────────────────── */
  #patterns {
    padding: 80px 24px;
    background: var(--bg);
  }
  .patterns-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .patterns-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .patterns-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .patterns-sub {
    font-size: 0.92rem;
    color: var(--dim);
    max-width: 480px;
    margin: 0 auto 44px;
    line-height: 1.65;
  }
  .pattern-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
  }
  .pattern-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,25,40,0.9);
    border: 1px solid rgba(6,182,212,0.15);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--text);
    transition: border-color 0.2s;
  }
  .pattern-pill:hover { border-color: rgba(6,182,212,0.35); }
  .pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .dot-amber  { background: #f59e0b; }
  .dot-cyan   { background: #06b6d4; }
  .dot-purple { background: #8b5cf6; }
  .patterns-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(245,158,11,0.35);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, border-color 0.2s;
  }
  .patterns-cta:hover {
    background: rgba(245,158,11,0.08);
    border-color: rgba(245,158,11,0.6);
  }

  /* ─── WHAT IT IS ────────────────────────────────────────────── */
  #what {
    background: var(--surface);
    padding: 80px 24px;
  }
  .what-heading {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
  }
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .card {
    background: var(--surface2);
    border: 1px solid rgba(6,182,212,0.25);
    border-radius: var(--radius);
    padding: 0 0 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(6,182,212,0.15);
  }
  .card-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    width: 100%;
    flex-shrink: 0;
  }
  .card-body {
    padding: 28px 28px 0;
    flex: 1;
  }
  .card-icon {
    margin-bottom: 18px;
    display: flex;
  }
  .card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .card-text {
    font-size: 0.9rem;
    color: var(--dim);
    line-height: 1.7;
  }

  /* ─── WELLNESS CALLOUT ──────────────────────────────────────── */
  #wellness-callout {
    background: var(--bg);
    padding: 0 24px 0;
  }
  .wellness-callout-card {
    max-width: 760px;
    margin: 0 auto;
    background: rgba(245,158,11,0.05);
    border: 1px solid rgba(245,158,11,0.22);
    border-radius: var(--radius);
    padding: 36px 44px;
    position: relative;
    overflow: hidden;
  }
  .wellness-callout-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.6), transparent);
  }
  .wellness-callout-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 16px;
  }
  .wellness-callout-quote {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
  }
  .wellness-callout-quote strong {
    font-style: normal;
    color: var(--amber);
  }
  .wellness-callout-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--amber);
    text-decoration: none;
    letter-spacing: 0.04em;
    opacity: 0.8;
    transition: opacity 0.2s;
  }
  .wellness-callout-cta:hover { opacity: 1; }

  /* ─── WELLNESS SECTION ───────────────────────────────────────── */
  #wellness {
    background: var(--surface);
    padding: 80px 24px;
  }
  .wellness-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .wellness-heading {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
  }
  .wellness-sub {
    text-align: center;
    font-size: 0.92rem;
    color: var(--dim);
    max-width: 520px;
    margin: 0 auto 16px;
    line-height: 1.7;
  }
  .wellness-disclaimer {
    max-width: 680px;
    margin: 0 auto 44px;
    padding: 14px 20px;
    background: rgba(239,68,68,0.05);
    border: 1px solid rgba(239,68,68,0.15);
    border-radius: 8px;
    font-size: 0.78rem;
    color: rgba(148,163,184,0.6);
    line-height: 1.65;
    text-align: center;
  }
  .wellness-disclaimer strong {
    color: rgba(239,68,68,0.7);
  }
  .wellness-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  .wellness-card {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 0 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .wellness-card-accent {
    height: 3px;
    width: 100%;
  }
  .wellness-card-body {
    padding: 26px 28px 0;
    flex: 1;
  }
  .wellness-card-icon {
    margin-bottom: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .wellness-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
  }
  .wellness-card-text {
    font-size: 0.87rem;
    color: var(--dim);
    line-height: 1.7;
  }
  .wellness-card-note {
    margin-top: 14px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    font-size: 0.75rem;
    color: rgba(148,163,184,0.4);
    font-style: italic;
    line-height: 1.55;
  }

  /* ─── GALAXY SECTION ────────────────────────────────────────── */
  #galaxy {
    background: var(--bg);
    padding: 80px 24px;
  }
  .galaxy-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .galaxy-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
    font-weight: 600;
    margin-bottom: 14px;
    opacity: 0.6;
  }
  .galaxy-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .galaxy-sub {
    font-size: 0.92rem;
    color: var(--dim);
    max-width: 460px;
    margin: 0 auto 44px;
    line-height: 1.65;
    opacity: 0.7;
  }
  .galaxy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 16px;
  }
  .galaxy-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px 22px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .galaxy-tile:hover {
    transform: translateY(-3px);
  }
  .galaxy-tile-icon {
    font-size: 1.8rem;
    line-height: 1;
  }
  .galaxy-tile-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
  }
  .galaxy-tile-desc {
    font-size: 0.75rem;
    color: var(--dim);
    line-height: 1.55;
    opacity: 0.7;
  }
  .galaxy-tile-coming {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    border: 1px solid;
    margin-top: 2px;
  }

  /* tile accent colors */
  .tile-music  { border-color: rgba(139,92,246,0.18); }
  .tile-music:hover  { border-color: rgba(139,92,246,0.45); }
  .tile-music  .galaxy-tile-coming { color: var(--violet); border-color: rgba(139,92,246,0.3); background: rgba(139,92,246,0.06); }

  .tile-film   { border-color: rgba(239,68,68,0.18); }
  .tile-film:hover   { border-color: rgba(239,68,68,0.45); }
  .tile-film   .galaxy-tile-coming { color: #f87171; border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.06); }

  .tile-games  { border-color: rgba(16,185,129,0.18); }
  .tile-games:hover  { border-color: rgba(16,185,129,0.45); }
  .tile-games  .galaxy-tile-coming { color: var(--emerald); border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.06); }

  .tile-software { border-color: rgba(59,130,246,0.18); }
  .tile-software:hover { border-color: rgba(59,130,246,0.45); }
  .tile-software .galaxy-tile-coming { color: var(--blue); border-color: rgba(59,130,246,0.3); background: rgba(59,130,246,0.06); }

  .tile-services { border-color: rgba(245,158,11,0.18); }
  .tile-services:hover { border-color: rgba(245,158,11,0.45); }
  .tile-services .galaxy-tile-coming { color: var(--amber); border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.06); }

  /* ─── FOOTER ────────────────────────────────────────────────── */
  /* ── BASILICA RIOT: footer stone + stained-glass-fragment border (page-08 mockup) ── */
  footer {
    position: relative;
    border-top: none;
    padding: 12px 24px 32px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--dim);
    background:
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(240,185,46,0.05), transparent 70%),
      #0a0710;
  }
  .footer-glass-border {
    height: 10px;
    width: 100%;
    margin-bottom: 26px;
    background: repeating-linear-gradient(
      110deg,
      var(--ruby) 0 3.4%,
      var(--gold) 3.4% 6.8%,
      var(--emerald) 6.8% 10.2%,
      var(--sapphire) 10.2% 13.6%,
      var(--br-violet) 13.6% 17%
    );
    opacity: 0.75;
  }
  footer a { color: var(--gold); text-decoration: none; }
  footer a:hover { text-decoration: underline; }
  .footer-faith {
    margin-top: 10px;
    font-size: 0.72rem;
    font-family: var(--br-serif);
    font-style: italic;
    color: rgba(240,185,46,0.55);
    letter-spacing: 0.04em;
  }

  /* ── BASILICA RIOT: footer 5-column nav grid (page-08 mockup) ── */
  .footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 28px;
    text-align: left;
    padding: 0 24px;
  }
  .footer-col-heading {
    font-family: var(--br-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(226,232,240,0.7);
    text-decoration: none;
    margin-bottom: 9px;
    line-height: 1.4;
  }
  .footer-col a:hover { color: var(--gold); text-decoration: underline; }
  .footer-legal {
    text-align: center;
    font-size: 0.8rem;
    color: var(--dim);
    border-top: 1px solid rgba(240,185,46,0.12);
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 20px;
  }
  @media (max-width: 780px) {
    .footer-nav-columns { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 460px) {
    .footer-nav-columns { grid-template-columns: 1fr; text-align: center; }
  }

  /* ── BASILICA RIOT: footer stone-floor photo backdrop (page-08 mockup), reuses an already-
       approved asset -- zero new generation cost ── */
  footer {
    background:
      linear-gradient(180deg, rgba(4,8,20,0.55) 0%, rgba(4,8,20,0.88) 55%, #0a0710 100%),
      url('/assets/celebration/celebration-band-desktop.png') center 70% / cover no-repeat;
  }

  /* ── BASILICA RIOT: shorter page-header band for interior pages (Music/Books/Mission/Journal),
       reusing the same photographic-backdrop technique as the homepage hero but at reduced height
       since these pages don't carry a headline + 3-window row ── */
  .page-header-photo {
    position: relative;
    min-height: 46vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .page-header-photo-content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 0 24px 48px;
    text-align: center;
  }

  /* ── BASILICA RIOT: .br-catalog-tile-grid / .br-catalog-tile (Music page catalog tiles) ── */
  .br-catalog-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
  }
  @media (max-width: 860px) { .br-catalog-tile-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .br-catalog-tile-grid { grid-template-columns: 1fr; max-width: 420px; } }

  .br-catalog-tile {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid var(--tile-color, rgba(240,185,46,0.3));
    box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 12px 40px rgba(0,0,0,0.45), 0 0 30px var(--tile-glow, rgba(240,185,46,0.15));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .br-catalog-tile:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 44px var(--tile-glow, rgba(240,185,46,0.25)); }
  .br-catalog-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .br-catalog-tile-label {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, transparent, rgba(4,8,20,0.9));
    text-align: center;
  }
  .br-catalog-tile-label h3 { font-family: var(--br-serif); font-size: 1.05rem; color: #fff; margin-bottom: 4px; }
  .br-catalog-tile-label p { font-size: 0.7rem; color: rgba(226,232,240,0.75); letter-spacing: 0.04em; text-transform: uppercase; }

  /* ── Content-integrity requirement: persistent, non-hover-only disclosure affordance per tile ── */
  .br-tile-disclosure-flag {
    position: absolute;
    bottom: 8px; right: 8px;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(240,185,46,0.4);
    border-radius: 20px;
    padding: 3px 9px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    z-index: 2;
  }
  .br-tile-disclosure-flag:hover,
  .br-tile-disclosure-flag:focus-visible {
    background: rgba(240,185,46,0.85); color: #040814;
  }

  /* ── BASILICA RIOT: 6-cover tilt-fan standing on the existing .book-ledge element (Books page) ── */
  .br-shelf-fan {
    display: flex; align-items: flex-end; justify-content: center; gap: 18px;
    padding: 48px 24px 0; perspective: 1400px; flex-wrap: wrap;
  }
  .br-shelf-cover {
    width: clamp(90px, 11vw, 150px);
    border-radius: 4px 8px 8px 4px;
    box-shadow: 4px 10px 26px rgba(0,0,0,0.55), -2px 0 0 rgba(0,0,0,0.4) inset;
    transform: rotateY(calc(var(--tilt, 0) * 1deg)) translateZ(0);
    transition: transform 0.3s ease;
  }
  .br-shelf-cover:hover { transform: rotateY(calc(var(--tilt, 0) * 1deg)) translateY(-8px); }

  /* ── BASILICA RIOT: journal two-column timeline + sticky photo layout ── */
  .br-journal-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
  @media (max-width: 900px) { .br-journal-layout { grid-template-columns: 1fr; } }
  .br-journal-timeline-col { padding: 48px clamp(24px,4vw,56px); position: relative; }
  .br-journal-timeline-col::before {
    content:''; position:absolute; left: 38px; top: 60px; bottom: 40px; width: 1px;
    background: linear-gradient(180deg, var(--ruby), var(--emerald), var(--sapphire), var(--gold), var(--br-violet));
    opacity: 0.5;
  }
  .br-journal-photo-col { position: sticky; top: 0; height: 100vh; overflow: hidden; }
  .br-journal-photo-col img { width: 100%; height: 100%; object-fit: cover; }
  .br-journal-banner-overlay {
    position: absolute; top: 30%; right: 8%; writing-mode: vertical-rl;
    background: rgba(20,10,5,0.65); border: 1px solid rgba(240,185,46,0.4);
    padding: 20px 10px; font-family: var(--br-serif); font-style: italic;
    color: var(--gold); font-size: 1.1rem; letter-spacing: 0.08em; text-align: center;
    border-radius: 4px;
  }

  /* ── Content-integrity requirement: parchment card + excerpt/expand, not full body inline ── */
  .br-journal-entry-card {
    position: relative; margin-left: 28px; margin-bottom: 22px;
    border-radius: 10px; overflow: hidden;
    background: linear-gradient(180deg, rgba(232,217,181,0.97), rgba(214,196,153,0.97));
    color: #2a1f0f;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    border-left: 4px solid var(--spine-color, var(--gold));
  }
  .br-journal-entry-card .entry-title { color: #1f1508; font-family: var(--br-serif); }
  .br-journal-entry-card .entry-body-excerpt,
  .br-journal-entry-card .entry-body { color: rgba(42,31,15,0.85); }
  .br-journal-entry-card .entry-date { color: #6b5a2e; }
  .br-journal-read-more {
    font-size: 0.78rem; font-weight: 700; color: #7a5a1e;
    text-decoration: none; display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
  }

  /* ── Parchment-card contrast fix (VISUAL-QA-REPORT-20260719.md) ──
     The secondary content layer (Hard Part / Why / Agents / tags) still carried its
     original dark-theme colors (grays/mutes tuned for the #040814 navy background)
     when the journal cards switched to this light parchment surface -- measured
     contrast on those tokens ranged 1.19:1 to 2.75:1, below the 4.5:1 AA minimum.
     These overrides give each element its own real, computed-legible ink color
     against the parchment gradient (~rgb(223,207,167) average) instead of
     inheriting the dark-mode values. */
  .br-journal-entry-card .hard-part {
    background: rgba(255,255,255,0.35);
    border-color: rgba(42,31,15,0.15);
    border-left-color: #a05a1e;
    color: rgba(42,31,15,0.88);
  }
  .br-journal-entry-card .hard-part-label { color: #8a4a10; }
  .br-journal-entry-card .entry-why {
    background: rgba(255,255,255,0.35);
    border-color: rgba(42,31,15,0.15);
    border-left-color: #1a6e78;
    color: rgba(42,31,15,0.88);
  }
  .br-journal-entry-card .entry-why-label { color: #0f5a63; }
  .br-journal-entry-card .agent-row-label { color: rgba(42,31,15,0.55); }
  .br-journal-entry-card .agent-tag {
    color: rgba(42,31,15,0.75);
    background: rgba(255,255,255,0.4);
    border-color: rgba(42,31,15,0.18);
  }
  /* Category tags (.entry-tag) carry their own inline per-tag color/border/background
     style attributes (set per entry for the colored-pill look) -- those inline styles
     win the cascade over any class rule here, so this only backstops entries whose tag
     has no inline style at all. The real, inline-styled tag colors were tuned for the
     dark background too; fixing those requires updating each entry's inline style
     attribute individually, tracked as a follow-up rather than solved by this CSS pass. */
  .br-journal-entry-card .entry-tag:not([style]) {
    color: rgba(42,31,15,0.75);
    border-color: rgba(42,31,15,0.2);
    background: rgba(255,255,255,0.3);
  }
  .br-journal-entry-body-full { display: none; }
  .br-journal-entry-card.is-expanded .br-journal-entry-body-full { display: block; }
  .br-journal-entry-card.is-expanded .br-journal-read-more { display: none; }

  /* ── BASILICA RIOT: .br-mission-hero / .br-mission-value-grid / .br-mission-value-card (Mission page) ── */
  .br-mission-hero {
    position: relative; min-height: 90vh; display:flex; flex-direction:column;
    align-items:center; justify-content:flex-end; padding: 0 24px 64px; overflow:hidden;
  }
  .br-mission-hero-photo { position:absolute; inset:0; z-index:0; }
  .br-mission-hero-photo img { width:100%; height:100%; object-fit:cover; object-position:center 25%; }
  .br-mission-hero-photo::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(4,8,20,0.15) 0%, rgba(4,8,20,0.55) 65%, rgba(4,8,20,0.92) 100%);
  }
  .br-mission-value-grid {
    position:relative; z-index:1; display:grid; grid-template-columns:repeat(3,1fr);
    gap:20px; max-width:900px; width:100%;
  }
  @media (max-width:700px){ .br-mission-value-grid{ grid-template-columns:1fr; } }
  .br-mission-value-card {
    border-radius: 12px; padding: 26px 22px; text-align:center;
    background: rgba(4,8,20,0.5); backdrop-filter: blur(6px);
    border: 1px solid var(--value-color, var(--gold));
    box-shadow: 0 0 24px var(--value-glow, rgba(240,185,46,0.2)) inset;
  }
  .br-mission-value-card svg { filter: drop-shadow(0 0 8px var(--value-color, var(--gold))); margin-bottom: 12px; }

  /* ─── WHY THIS EXISTS ──────────────────────────────────────── */
  #why {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,57,96,0.05), transparent 65%), var(--surface);
    padding: 72px 24px;
  }
  .why-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .why-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ruby);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .why-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 28px;
  }
  .why-text {
    font-size: 1.02rem;
    color: var(--dim);
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: left;
  }
  .why-text em {
    color: var(--text);
    font-style: normal;
    font-weight: 500;
  }
  .why-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    margin: 28px auto;
  }
  .why-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(230,57,96,0.4);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 0.85rem;
    color: var(--amber);
    text-decoration: none;
    letter-spacing: 0.04em;
    margin-top: 12px;
    transition: background 0.2s, border-color 0.2s;
  }
  .why-cta:hover {
    background: rgba(245,158,11,0.08);
    border-color: rgba(245,158,11,0.6);
  }

  /* ─── RESPONSIBLE AI ────────────────────────────────────────── */
  #responsible-ai {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59,130,246,0.08), transparent 65%), var(--bg);
    padding: 72px 24px;
    border-bottom: 1px solid rgba(240,185,46,0.14);
  }
  .rai-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  .rai-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sapphire);
    margin-bottom: 16px;
    font-weight: 600;
    text-align: center;
  }
  .rai-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 14px;
    text-align: center;
  }
  .rai-sub {
    font-size: 0.92rem;
    color: var(--dim);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.75;
    text-align: center;
  }
  .rai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  .rai-principle {
    background: var(--surface);
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: var(--radius);
    padding: 26px 24px;
    transition: border-color 0.2s;
  }
  .rai-principle:hover { border-color: rgba(59,130,246,0.4); }
  .rai-principle-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sapphire);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .rai-principle-text {
    font-size: 0.83rem;
    color: var(--dim);
    line-height: 1.72;
  }
  .rai-note {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(148,163,184,0.5);
    line-height: 1.75;
    font-style: italic;
  }

  /* ─── START HERE BAND (Basilica Riot: "Join the Celebration" treatment) ── */
  #start-here-band {
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 70% 90% at 50% 100%, rgba(240,185,46,0.10), transparent 65%),
      linear-gradient(135deg, rgba(230,57,96,0.06) 0%, rgba(34,197,94,0.05) 50%, rgba(59,130,246,0.05) 100%);
    border-top: 1px solid rgba(240,185,46,0.18);
    border-bottom: 1px solid rgba(240,185,46,0.18);
    padding: 56px 24px;
    text-align: center;
  }
  .start-band-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
  }
  .start-band-heading {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
  }
  .start-band-sub {
    font-size: 0.92rem;
    color: var(--dim);
    max-width: 460px;
    margin: 0 auto 28px;
    line-height: 1.72;
  }
  .start-band-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold), #d99a1f);
    color: #1a0f00;
    font-family: var(--br-serif);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 34px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(240,185,46,0.35);
    transition: opacity 0.2s, transform 0.2s;
  }
  .start-band-btn:hover { opacity: 0.88; transform: translateY(-1px); }

  /* ─── ACTION CARDS ────────────────────────────────────────────── */
  .action-card {
    background: var(--surface2);
    border: 1px solid rgba(6,182,212,0.18);
    border-radius: var(--radius);
    padding: 0 0 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
  }
  .action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(6,182,212,0.13);
    border-color: rgba(6,182,212,0.4);
  }
  .action-card-accent { height: 3px; width: 100%; flex-shrink: 0; }
  .action-card-body {
    padding: 28px 28px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .action-card-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .action-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
  }
  .action-card-text {
    font-size: 0.87rem;
    color: var(--dim);
    line-height: 1.72;
    flex: 1;
    margin-bottom: 16px;
  }
  .action-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 0.04em;
    opacity: 0.65;
    transition: opacity 0.2s;
    align-self: flex-start;
  }
  .action-card:hover .action-card-arrow { opacity: 1; }

  /* ─── 3-PANEL FEATURED SECTION ─────────────────────────────── */
  /* #featured-panels — now inline inside hero, no standalone padding needed */
  #featured-panels {
    background: transparent;
    padding: 0;
    position: relative;
    z-index: 1;
  }
  .featured-panels-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .featured-panels-eyebrow {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dim);
    font-weight: 600;
    margin-bottom: 36px;
    opacity: 0.55;
  }
  .featured-panels-grid {
    display: grid;
    grid-template-columns: 30% 40% 30%;
    gap: 20px;
    align-items: stretch;
  }
  /* ─── CENTER PANEL: Rafiki gift ─── */
  .fp-center {
    background: linear-gradient(160deg, rgba(240,185,46,0.09) 0%, rgba(230,57,96,0.05) 100%);
    border: 1px solid rgba(240,185,46,0.3);
    border-radius: 90px 90px 16px 16px;
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .fp-center::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ruby), var(--gold), var(--emerald), var(--sapphire));
  }
  .fp-center:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6,182,212,0.16);
  }
  .fp-gift-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6,182,212,0.12);
    border: 1px solid rgba(6,182,212,0.35);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 22px;
  }
  .fp-gift-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
  }
  .fp-book-cover {
    width: clamp(130px, 18vw, 200px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(6,182,212,0.2), 0 2px 12px rgba(0,0,0,0.5);
    margin-bottom: 22px;
    transition: transform 0.2s;
  }
  .fp-book-cover:hover { transform: scale(1.03); }
  .fp-center-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .fp-center-sub {
    font-size: 0.82rem;
    color: var(--dim);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 260px;
  }
  .fp-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: #040814;
    font-weight: 800;
    font-size: 0.88rem;
    padding: 13px 26px;
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(6,182,212,0.3);
  }
  .fp-dl-btn:hover { opacity: 0.88; transform: translateY(-1px); }
  .fp-center-zero {
    margin-top: 14px;
    font-size: 0.7rem;
    color: rgba(148,163,184,0.4);
    letter-spacing: 0.04em;
    font-style: italic;
  }

  /* ─── LEFT PANEL: Agentic Systems Library ─── */
  .fp-left {
    background: linear-gradient(160deg, rgba(230,57,96,0.08) 0%, rgba(139,92,246,0.05) 100%);
    border: 1px solid rgba(230,57,96,0.25);
    border-radius: 90px 90px 16px 16px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    color: inherit;
  }
  .fp-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ruby), var(--br-violet), var(--sapphire));
  }
  .fp-left:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.14);
  }
  .fp-constellation {
    position: relative;
    height: 120px;
    margin-bottom: 18px;
    flex-shrink: 0;
  }
  /* Frequency strand lines */
  .fp-strand {
    position: absolute;
    left: 10%;
    width: 80%;
    height: 1px;
    border-radius: 1px;
    opacity: 0.45;
  }
  .fp-strand-1 { top: 20%; background: linear-gradient(90deg, transparent, #06B6D4, transparent); animation: strand-pulse 3.2s ease-in-out infinite; }
  .fp-strand-2 { top: 35%; background: linear-gradient(90deg, transparent, #8B5CF6, transparent); animation: strand-pulse 4.1s ease-in-out infinite 0.5s; }
  .fp-strand-3 { top: 50%; background: linear-gradient(90deg, transparent, #3B82F6, transparent); animation: strand-pulse 3.7s ease-in-out infinite 1.0s; }
  .fp-strand-4 { top: 65%; background: linear-gradient(90deg, transparent, #F59E0B, transparent); animation: strand-pulse 4.4s ease-in-out infinite 0.3s; }
  .fp-strand-5 { top: 80%; background: linear-gradient(90deg, transparent, #06B6D4, transparent); animation: strand-pulse 3.5s ease-in-out infinite 0.8s; }
  /* Constellation dots */
  .fp-dot {
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    animation: twinkle 4s ease-in-out infinite;
  }
  @keyframes strand-pulse {
    0%,100% { opacity: 0.2; transform: scaleX(0.85); }
    50% { opacity: 0.7; transform: scaleX(1); }
  }
  .fp-left-label {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--violet);
    font-weight: 700;
    margin-bottom: 10px;
  }
  .fp-left-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  .fp-left-sub {
    font-size: 0.8rem;
    color: var(--dim);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }
  .fp-library-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(139,92,246,0.35);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #a78bfa;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, border-color 0.2s;
  }
  .fp-left:hover .fp-library-btn {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.55);
  }

  /* ─── RIGHT PANEL: Music ─── */
  .fp-right {
    background: #000;
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 90px 90px 16px 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .fp-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.25);
  }
  /* Full-panel video — fills the entire right panel */
  .fp-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  .fp-video-bg iframe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78%; /* 16:9 fill: wider than panel */
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw;
    border: none;
    pointer-events: none;
    opacity: 1;         /* ← FULL opacity, no blur */
    filter: none;
  }
  /* Overlay: just enough darkness at bottom for text legibility, not a blanket */
  .fp-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.0) 0%,
      rgba(0,0,0,0.0) 40%,
      rgba(0,0,0,0.55) 75%,
      rgba(0,0,0,0.80) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px;
    z-index: 1;
  }
  .fp-album-thumb {
    width: 56px; height: 56px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
    background: var(--surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    overflow: hidden;
  }
  /* Body floats above the video — z-index above overlay */
  .fp-right-body {
    position: relative;
    z-index: 2;
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* min height so panel is tall enough for video to show */
    min-height: 320px;
  }
  .fp-right-label {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }
  .fp-music-item {
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid transparent;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: border-color 0.2s, background 0.2s;
  }
  .fp-music-item:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.4);
  }
  .fp-music-band {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  }
  .fp-music-single {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
  }
  .fp-music-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    font-weight: 700;
    border-radius: 6px;
    padding: 5px 11px;
    text-decoration: none;
    margin-top: 4px;
    transition: opacity 0.2s;
    align-self: flex-start;
    letter-spacing: 0.03em;
  }
  .fp-music-link:hover { opacity: 0.8; }
  .fp-aura-link {
    background: rgba(0,229,200,0.1);
    border: 1px solid rgba(0,229,200,0.3);
    color: #00E5C8;
  }
  .fp-nt-link {
    background: rgba(245,158,11,0.1);
    border: 1px solid rgba(245,158,11,0.3);
    color: var(--amber);
  }
  .fp-right-footer {
    position: relative;
    z-index: 2;
    padding: 8px 20px 16px;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* ─── RESPONSIVE ────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .featured-panels-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin: 0 auto;
    }
    .fp-center { order: 1; }
    .fp-left  { order: 2; }
    .fp-right { order: 3; }
  }
  @media (max-width: 600px) {
    #hero { padding: 80px 20px; }
    .mission-card { padding: 32px 24px; }
    .cards-grid { grid-template-columns: 1fr; }
    /* #featured-panels now inline in hero — padding handled by hero */
  }

  /* ── T1 CROSS-LINK SNIPPET ── */
  #lang-crosslink {
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  #lang-crosslink a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
  }
  #lang-crosslink a:hover,
  #lang-crosslink a:focus-visible {
    text-decoration: underline;
  }

  /* ── BASILICA RIOT: transparent overlay nav directly on the hero photo,
       matching page-02 mockup (sun/rose-window mark + light serif wordmark +
       light nav links + cart/menu icons, no solid dark bar) ── */
  .site-nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 20;
    padding: 28px clamp(24px, 4vw, 56px) 0;
    display: flex;
    align-items: center;
    gap: 0;
  }
  .site-nav-logo {
    font-family: var(--br-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.01em;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  }
  .site-nav-logo img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(240,185,46,0.5));
  }
  .site-nav-logo:hover { opacity: 0.85; }
  .site-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .site-nav-links::-webkit-scrollbar { display: none; }
  .site-nav-link {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.15s;
    white-space: nowrap;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }
  .site-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  .site-nav-link.active {
    color: var(--gold);
  }
  .site-nav-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 18px;
    color: rgba(255,255,255,0.9);
  }
  .site-nav-icons svg { filter: drop-shadow(0 1px 6px rgba(0,0,0,0.4)); }
  @media (max-width: 900px) {
    .site-nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .site-nav { padding: 20px 18px 0; }
    .site-nav-logo { font-size: 1.15rem; }
    .site-nav-logo img { width: 28px; height: 28px; }
  }

  /* =====================================================================
     BASILICA RIOT -- REMAINING HOMEPAGE SECTIONS REBUILD (2026-07-20)
     Per HOMEPAGE-REMAINING-SECTIONS-REBUILD-DIRECTION-20260719.md.
     Wires up the two previously-unused classes (.cathedral-beams,
     .arch-window) into the legacy sections below the hero, plus targeted
     photo backdrops reusing already-approved assets and 2 newly generated
     ones (why-detail-candle.png, galaxy-film-when-children-rise-tile.png).
     No content copy changed here -- visual treatment only.
  ===================================================================== */

  /* ── Bug fix while touching Video + Patterns sections: var(--accent) is
       referenced 4x in this file but never declared in :root -- those rules
       were silently falling back to inherited/default color. Using --gold,
       the jewel-tone equivalent already used for eyebrow/accent text
       elsewhere on the page. ── */
  .video-yt-link a:hover { color: var(--gold); border-color: var(--gold); }
  .patterns-eyebrow { color: var(--gold); }
  .patterns-cta { color: var(--gold); }

  /* ── MISSION: activate the unused .cathedral-beams overlay + a heavily
       darkened reuse of the cathedral hero photo behind the card ── */
  #mission { position: relative; overflow: hidden; }
  #mission .cathedral-beams { height: 100%; }
  .mission-photo-backdrop { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
  .mission-photo-backdrop img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 65%;
    opacity: 0.22; filter: saturate(1.05);
  }
  .mission-photo-backdrop::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 85% 80% at 50% 50%, transparent 0%, var(--surface) 88%);
  }
  .mission-card { position: relative; z-index: 1; }

  /* ── WHY THIS EXISTS: real card containment + one quiet detail photo ── */
  .why-card {
    position: relative;
    overflow: hidden;
    border-radius: 90px 90px 16px 16px;
    background: radial-gradient(ellipse 120% 100% at 50% -10%, rgba(230,57,96,0.06), transparent 65%), var(--surface2);
    border: 1px solid rgba(230,57,96,0.16);
    padding: clamp(48px, 7vw, 64px) clamp(28px, 6vw, 56px) 48px;
  }
  .why-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--ruby), var(--gold));
  }
  .why-detail-photo {
    position: absolute;
    right: -6%; bottom: -8%;
    width: clamp(160px, 26vw, 280px);
    height: clamp(160px, 26vw, 280px);
    object-fit: cover;
    opacity: 0.4;
    -webkit-mask-image: radial-gradient(ellipse 65% 65% at 55% 55%, #000 0%, transparent 78%);
            mask-image: radial-gradient(ellipse 65% 65% at 55% 55%, #000 0%, transparent 78%);
    pointer-events: none;
  }
  .why-inner { position: relative; z-index: 1; }

  /* ── START HERE BAND: reuse the "Join the Celebration" photo-band pattern
       instead of an invented flat gradient wash ── */
  #start-here-band {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid rgba(240,185,46,0.18);
    border-bottom: 1px solid rgba(240,185,46,0.18);
    padding: 0;
    text-align: center;
  }
  .br-starthere-photo-band { position: relative; width: 100%; }
  .br-starthere-photo-band img { width: 100%; display: block; max-height: 48vh; object-fit: cover; object-position: center 65%; }
  .br-starthere-photo-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: clamp(28px, 6vw, 56px) 24px;
    background: linear-gradient(180deg, rgba(4,8,20,0.35) 0%, rgba(4,8,20,0.6) 55%, rgba(4,8,20,0.88) 100%);
  }

  /* ── RESPONSIBLE AI: apply the arch-window shape + rotate a jewel-tone
       accent bar through all 6 principle cards instead of one flat sapphire
       border on every card ── */
  .rai-principle.arch-window { padding-top: 42px; }
  .rai-principle.arch-window::before {
    content: '';
    position: absolute; top: 0; left: 18%; right: 18%; height: 3px; border-radius: 3px;
  }
  .rai-grid .rai-principle:nth-child(6n+1) { border-color: rgba(230,57,96,0.3); }
  .rai-grid .rai-principle:nth-child(6n+1)::before { background: var(--ruby); }
  .rai-grid .rai-principle:nth-child(6n+2) { border-color: rgba(240,185,46,0.3); }
  .rai-grid .rai-principle:nth-child(6n+2)::before { background: var(--gold); }
  .rai-grid .rai-principle:nth-child(6n+3) { border-color: rgba(34,197,94,0.3); }
  .rai-grid .rai-principle:nth-child(6n+3)::before { background: var(--emerald); }
  .rai-grid .rai-principle:nth-child(6n+4) { border-color: rgba(59,130,246,0.3); }
  .rai-grid .rai-principle:nth-child(6n+4)::before { background: var(--sapphire); }
  .rai-grid .rai-principle:nth-child(6n+5) { border-color: rgba(180,130,255,0.3); }
  .rai-grid .rai-principle:nth-child(6n+5)::before { background: var(--br-violet); }
  .rai-grid .rai-principle:nth-child(6n+6) { border-color: rgba(6,182,212,0.3); }
  .rai-grid .rai-principle:nth-child(6n+6)::before { background: var(--cyan); }

  /* ── WELLNESS CALLOUT: same arch-card language as Mission, previewing
       the Wellness Squadron section it links to ── */
  .wellness-callout-card.arch-window { padding-top: 52px; }

  /* ── VIDEO: stone-and-gold jewel-tone frame instead of generic cyan
       embed-glow styling ── */
  .video-wrapper {
    position: relative;
    border: 1px solid rgba(240,185,46,0.32);
    box-shadow: 0 0 40px rgba(240,185,46,0.13), 0 0 90px rgba(230,57,96,0.06);
  }
  .video-wrapper::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
    background: repeating-linear-gradient(110deg,
      var(--ruby) 0 20%, var(--gold) 20% 40%, var(--emerald) 40% 60%,
      var(--sapphire) 60% 80%, var(--br-violet) 80% 100%);
  }

  /* ── WELLNESS SQUADRON: arch shape on all 3 cards + line-art SVG icons
       in the jewel-tone palette, replacing raw emoji glyphs ── */
  .wellness-card.arch-window { padding-top: 8px; }
  .wellness-card.arch-window .wellness-card-body { padding-top: 34px; }
  .wellness-card-icon svg { display: block; filter: drop-shadow(0 0 6px rgba(255,255,255,0.08)); }

  /* ── WHAT ("Where do you want to go?"): arch shape on the 3 action cards.
       CSS-only -- no new photography was generated for this section in this
       pass; see direction doc §8 re: possible merge with Patterns/Galaxy. ── */
  .action-card.arch-window { padding-top: 8px; }
  .action-card.arch-window .action-card-body { padding-top: 34px; }

  /* ── PATTERNS: jewel-tone pill glow + gold-bookend top divider, matching
       the footer's repeating-gradient technique, in place of the old
       generic amber/cyan/purple dot colors ── */
  .patterns-top-divider {
    height: 3px; width: 140px; margin: 0 auto 32px; border-radius: 3px; opacity: 0.85;
    background: repeating-linear-gradient(110deg,
      var(--ruby) 0 20%, var(--gold) 20% 40%, var(--emerald) 40% 60%,
      var(--sapphire) 60% 80%, var(--br-violet) 80% 100%);
  }
  .pattern-pill {
    border-color: var(--pill-color, rgba(240,185,46,0.25));
    box-shadow: 0 0 18px var(--pill-glow, transparent);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .pattern-pill:hover { box-shadow: 0 0 22px var(--pill-glow, rgba(240,185,46,0.2)); }
  .pill-dot.dot-ruby     { background: var(--ruby); }
  .pill-dot.dot-gold     { background: var(--gold); }
  .pill-dot.dot-sapphire { background: var(--sapphire); }

  /* ── GALAXY: real photographic tiles for Music + Film & Video (the two
       tiles representing finished creative work) instead of plain emoji.
       Games/Software/Services stay icon-based -- they are "Coming"/"In
       Development" placeholders with no finished work yet to show. ── */
  .galaxy-tile-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .galaxy-tile.has-photo::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(4,8,20,0.05) 0%, rgba(4,8,20,0.62) 60%, rgba(4,8,20,0.95) 100%);
  }
  .galaxy-tile.has-photo .galaxy-tile-icon { display: none; }
  .galaxy-tile.has-photo > *:not(.galaxy-tile-photo-img) { position: relative; z-index: 2; }
  .galaxy-tile.has-photo .galaxy-tile-name { color: #fff; }
  .galaxy-tile.has-photo .galaxy-tile-desc { color: rgba(226,232,240,0.82); opacity: 1; }

