    /* ── Section header (matches .as-header) ── */
    #contact {
      padding: 4rem 2rem 5rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .as-header {
      text-align: center;
      margin-bottom: 2.5rem;
    }

    .as-header h2 {
      font-size: 2.4rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #1a1a1a;
      margin: 0 0 0.5rem;
    }

    .as-gold-rule {
      width: 80px;
      height: 4px;
      background: #D4900A;
      margin: 0.5rem auto 0.75rem;
      border-radius: 2px;
    }

    .as-tagline {
      font-size: 1.15rem;
      font-weight: 700;
      color: #1a1a1a;
      margin: 0 0 0.75rem;
    }

    .as-intro {
      font-size: 0.95rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ── Emergency bar ── */
    .emergency-bar {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .emergency-bar a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #1a1a1a;
      color: #fff;
      text-decoration: none;
      padding: 0.65rem 1.25rem;
      border-radius: 3px;
      font-size: 0.88rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }

    .emergency-bar a:hover { background: #333; }

    .emergency-bar i { color: #D4900A; font-size: 1rem; }

    /* ── Setup notice ── */
    .config-notice {
      max-width: 600px;
      margin: 0 auto 1.5rem;
      background: #fffbeb;
      border: 1px solid #f0c040;
      border-radius: 3px;
      padding: 0.85rem 1rem;
      font-size: 12.5px;
      color: #7a5c00;
      line-height: 1.6;
    }

    .config-notice code {
      background: rgba(0,0,0,0.08);
      padding: 1px 4px;
      border-radius: 2px;
      font-family: monospace;
    }

    /* ── Form (matches site's #contact form) ── */
    #contactForm {
      display: flex;
      flex-direction: column;
      max-width: 600px;
      margin: 0 auto;
      width: 100%;
    }

    .field-wrap {
      display: flex;
      flex-direction: column;
      margin-bottom: 4px;
    }

    label {
      display: block;
      margin-bottom: 4px;
      font-weight: 600;
      font-size: 1rem;
    }

    input, textarea, select {
      margin-bottom: 4px;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 3px;
      font-size: 1rem;
      font-family: Helvetica, Arial, sans-serif;
      width: 100%;
      transition: border-color 0.2s;
      outline: none;
    }

    input:focus, textarea:focus, select:focus {
      border-color: #D4900A;
    }

    input.error, textarea.error, select.error {
      border-color: #e31b23;
    }

    textarea {
      resize: vertical;
      min-height: 130px;
    }

    .field-hint {
      font-size: 12px;
      color: #e31b23;
      min-height: 18px;
      margin-bottom: 12px;
    }

    /* Submit button matches site's button style */
    #submitBtn {
      margin-bottom: 0;
      padding: 15px;
      background-color: #e31b23;
      color: #fff;
      border: none;
      border-radius: 3px;
      font-size: 1rem;
      font-family: Helvetica, Arial, sans-serif;
      font-weight: 600;
      text-transform: uppercase;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-top: 6px;
    }

    #submitBtn:hover { background-color: #c41820; }
    #submitBtn:disabled { opacity: 0.55; cursor: not-allowed; }

    .spinner {
      width: 16px; height: 16px;
      border: 2px solid rgba(255,255,255,0.35);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      display: none;
      flex-shrink: 0;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* Status messages */
    .status-box {
      display: none;
      padding: 1rem;
      border-radius: 3px;
      font-size: 0.9rem;
      margin-top: 1rem;
      line-height: 1.5;
    }

    .status-box.success {
      background: #edf7f0;
      border: 1px solid #8ecba3;
      color: #1e6e3a;
    }

    .status-box.error-msg {
      background: #fdf0ef;
      border: 1px solid #e8a09a;
      color: #8c1f18;
    }

    /* ── Gold divider ── */
    .as-gold-rule-fullpage {
      width: 100%;
      height: 2px;
      background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(212,144,10,0.75), rgba(0,0,0,0));
      margin: 2rem 0;
    }

    /* ── Contact info strip ── */
    .contact-info-strip {
      background: #1a1a1a;
      border-radius: 10px;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1.5rem 2rem;
      max-width: 600px;
      margin: 2.5rem auto 0;
    }

    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 0.85rem;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.2s;
    }

    .contact-info-item:hover { color: #D4900A; }
    .contact-info-item i { color: #D4900A; font-size: 1.1rem; width: 18px; text-align: center; }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .as-header h2 { font-size: 1.8rem; }
      .nav-links { display: none; }
      .emergency-bar { flex-direction: column; align-items: center; }
      .contact-info-strip { flex-direction: column; align-items: flex-start; }
    }