  /* ---------- CREATOR PAGE COMPONENTS ---------- */
  /* Builds on the design tokens, fonts, and base components in site.css
     (nav, hero, statement, fans-section/split, final-cta, footer, img-slot). */

  .hero-image.square{ aspect-ratio:1/1; background:var(--cream-2); }
  .hero-image.square img{ object-fit:cover; }

  /* ---------- LOGO COLLAB LOCKUP ---------- */
  .logo-lockup{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
  }
  .collab-text{
    display:inline-flex;
    align-items:center;
    gap:11px;
    white-space:nowrap;
  }
  .collab-x{
    position:relative;
    display:inline-block;
    width:13px;
    height:13px;
    flex-shrink:0;
  }
  .collab-x::before,
  .collab-x::after{
    content:"";
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:1px;
    background:var(--ink);
  }
  .collab-x::before{ transform:translate(-50%,-50%) rotate(45deg); }
  .collab-x::after{ transform:translate(-50%,-50%) rotate(-45deg); }
  .collab-name{
    font-family:'Archivo Black', 'Inter', sans-serif;
    font-weight:400;
    font-size:17px;
    letter-spacing:-0.01em;
    text-transform:uppercase;
    color:var(--ink);
    transform:skewX(-6deg);
    display:inline-block;
  }
  .logo-lockup-sm .collab-x{ width:11px; height:11px; }
  .logo-lockup-sm .collab-name{ font-size:14px; }
  @media (max-width: 480px){
    .collab-x{ width:11px; height:11px; }
    .collab-name{ font-size:13px; }
  }

  /* ---------- STATEMENT HEADING (collab font pairing) ---------- */
  .statement-heading .label{
    font-family:'Archivo Black', 'Inter', sans-serif;
    font-weight:400;
    font-size:27px;
    letter-spacing:-0.01em;
    text-transform:uppercase;
    transform:skewX(-6deg);
    display:inline-block;
  }

  /* ---------- FPO BADGE ---------- */
  .fpo-badge{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:rgba(30,23,17,0.78);
    color:var(--cream);
    font-family:'Inter', sans-serif;
    font-weight:800;
    font-size:15px;
    letter-spacing:0.12em;
    padding:10px 22px;
    border-radius:6px;
    border:1.5px dashed rgba(255,255,255,0.6);
    pointer-events:none;
  }

  /* ---------- ON-BRAND COLOR OVERRIDES (Travis Knight) ---------- */
  .fans-section{ background:#6BA693; padding-bottom:72px; overflow:visible; }
  .rust-section{ background:#E8B4CB; }
  .rust-section h2{ color:#3A2620; }
  .rust-section.final-cta p{ color:#5A4038; }

  /* ---------- WTF DO I GET (2x2 photo grid) ---------- */
  .fans-section .split{
    grid-template-columns:460px 1fr;
    gap:64px;
  }
  .fans-section .check-item{
    font-weight:600;
    color:var(--cream);
  }
  .fans-section .check-item:nth-child(3) .mark{
    margin-top:0;
  }
  .fans-figure.fans-figure-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    width:100%;
    max-width:440px;
    align-self:center;
  }
  .fans-figure-grid .img-slot{
    aspect-ratio:1/1;
    border-radius:8px;
  }
  .fans-figure-grid img{
    width:100%;
    height:100%;
    max-width:none;
    transform:none;
  }
  @media (max-width:860px){
    .fans-figure-grid{ max-width:420px; gap:10px; margin:0 auto; }
    .fans-section .split{ grid-template-columns:1fr; gap:32px; }
  }

  /* ---------- BIO SPLIT (portrait + copy) ---------- */
  .bio-split{
    display:grid;
    grid-template-columns:0.8fr 1.2fr;
    gap:56px;
    align-items:start;
  }
  .bio-portrait{
    aspect-ratio:1.02/1;
  }
  .bio-copy p{
    font-size:16px;
    line-height:1.7;
    color:var(--gray);
    margin-bottom:16px;
  }
  .bio-copy p:last-child{ margin-bottom:0; }

  @media (max-width: 860px){
    .bio-split{ grid-template-columns:1fr; gap:24px; }
    .hero-ctas{ flex-wrap:wrap; }
  }
