/* =========================
   CONTACT PAGE ONLY
========================= */

body.contact-page {
    background: #fff;
    color: #111;
  }
  
  .contact-main {
    min-height: calc(100vh - 80px);
    padding: 80px 24px 64px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-hero {
    max-width: 850px;
    text-align: center;
  }
  
  .eyebrow {
    color: #ff6a00;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 18px;
  }
  
  .contact-hero h1 {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    margin-bottom: 28px;
  }
  
  .contact-description {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    color: #555;
  }
  
  .contact-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
    min-width: 140px;
    padding: 14px 24px;
  
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
  
    transition:
      transform 0.25s ease,
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease;
  }
  
  .contact-button.primary {
    background: #111;
    color: #fff;
    border: 1px solid #111;
  }
  
  .contact-button.secondary {
    background: transparent;
    color: #111;
    border: 1px solid #111;
  }
  
  .contact-button:hover {
    transform: translateY(-4px) scale(1.04);
    background: #ff6a00;
    color: #fff;
    border-color: #ff6a00;
  }
  
  /* =========================
     CONTACT MOBILE
  ========================= */
  
  @media (max-width: 768px) {
    .contact-main {
      padding: 90px 22px 48px;
      align-items: flex-start;
    }
  
    .contact-hero {
      padding-top: 42px;
    }
  
    .contact-actions {
      flex-direction: column;
      align-items: center;
    }
  
    .contact-button {
      width: 100%;
      max-width: 280px;
    }
  }
