  /* ══════════════════════════════════════════
     static.css — shared styles for contact,
     user-agreement, and privacy pages.
     Requires main.css to be loaded first
     (for CSS variables and base resets).
  ══════════════════════════════════════════ */

  /* ── LAYOUT ── */
  .static-layout {
    max-width: 780px;
    margin: 0 auto;
    padding: 36px 20px 48px;
    position: relative;
    z-index: 1;
  }

  @media (max-width: 600px) {
    .static-layout { padding: 24px 16px 40px; }
  }

  /* ── PAGE HERO ── */
  .static-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .static-badge {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(176,122,16,0.2);
  }

  .static-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.4px;
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .static-sub {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ── CONTENT BODY ── */
  .static-body {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  [data-theme="dark"] .static-body {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }

  /* ── SECTIONS ── */
  .static-section {
    padding: 28px 36px;
    border-bottom: 1px solid var(--border);
  }

  .static-section:last-child {
    border-bottom: none;
  }

  @media (max-width: 600px) {
    .static-section { padding: 22px 20px; }
  }

  .static-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .static-section h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1em;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
  }

  .static-p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.75;
  }

  .static-p.lead {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
  }

  .static-p strong { color: var(--text); font-weight: 600; }

  .static-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(176,122,16,0.3);
    transition: border-color 0.15s;
  }
  .static-link:hover { border-color: var(--gold); }

  /* ── CONTACT GRID (contact.html) ── */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
  }

  @media (max-width: 560px) {
    .contact-grid { grid-template-columns: 1fr; }
  }

  .contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.15s, background 0.15s;
  }

  .contact-card:hover {
    border-color: var(--gold);
    background: rgba(176,122,16,0.04);
  }

  .cc-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .cc-label {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 3px;
  }

  .cc-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
    word-break: break-all;
  }

  .cc-desc {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
  }

  /* ── LINK-TO-US (contact.html) ── */
  .link-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
  }

  .link-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
  }

  .link-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
  }

  .code-block {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    color: var(--text);
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px 12px;
    line-height: 1.6;
    word-break: break-all;
    white-space: pre-wrap;
  }

  .link-preview {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 8px;
  }

  .preview-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
  }
  .preview-link:hover { text-decoration: underline; }

  /* ── FOOTER LINKS ── */
  .static-footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 36px;
    flex-wrap: wrap;
  }

  @media (max-width: 600px) {
    .static-footer-links { padding: 18px 20px; }
  }

  .static-footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
  }

  .static-footer-links a:first-child {
    color: var(--gold);
    font-weight: 600;
  }

  .static-footer-links a:hover { color: var(--gold); }
