
    .placeholder-hero {
      min-height: calc(100vh - 130px - 240px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 24px;
      background: var(--banner-grad);
      color: #fff;
      text-align: center;
    }
    .placeholder-content {
      max-width: 620px;
    }
    .placeholder-glyph {
      font-size: 4rem;
      margin-bottom: 20px;
      opacity: 0.95;
      line-height: 1;
    }
    .placeholder-eyebrow {
      display: inline-block;
      background: var(--gold-tile);
      color: var(--prune);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      padding: 6px 16px;
      border-radius: 50px;
      font-weight: 700;
      margin-bottom: 22px;
    }
    .placeholder-hero h1 {
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 18px;
      color: #fff;
    }
    .placeholder-hero p {
      font-size: 1.08rem;
      line-height: 1.65;
      opacity: 0.94;
      margin-bottom: 14px;
    }
    .placeholder-actions {
      margin-top: 32px;
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-light {
      display: inline-block;
      background: #fff;
      color: var(--prune) !important;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      text-decoration: none !important;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-light:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    }
    .btn-ghost {
      display: inline-block;
      background: transparent;
      color: #fff !important;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.88rem;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      text-decoration: none !important;
      border: 1.5px solid rgba(255,255,255,0.45);
      transition: background 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.8);
    }
    @media (max-width: 640px) {
      .placeholder-hero h1 { font-size: 1.7rem; }
      .placeholder-hero p { font-size: 0.98rem; }
      .placeholder-glyph { font-size: 3rem; }
    }
  
