/* Contact page (cp-*) */

/* ============================================================
       CONTACT PAGE — dual-track secure access
       ============================================================ */
    body.body {
      background-color: #f5f5f7;
      color: #111111;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .cp-page {
      width: 100%;
      padding-top: calc(1vw + 4rem);
      padding-bottom: 4rem;
    }

    .cp-banner-wrap {
      max-width: 75rem;
      margin: 2.5rem auto 0;
      padding: 0 1.5rem;
    }

    .cp-banner-inner {
      position: relative;
      width: 100%;
      height: 20rem;
      border-radius: 1.5rem;
      overflow: hidden;
      background-color: #0a0a0c;
    }

    .cp-banner {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cp-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.52) 0%,
        rgba(0, 0, 0, 0.38) 100%
      );
      pointer-events: none;
    }

    .cp-banner-copy {
      position: absolute;
      inset: 0;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1.5rem 2rem;
    }

    .cp-banner-title {
      margin: 0;
      color: #ffffff;
      font-family: inherit;
      font-size: calc(1.2vw + 1.75rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .cp-banner-sub {
      margin: 0.65rem 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-family: inherit;
      font-size: 1.15rem;
      font-weight: 400;
      line-height: 1.5;
    }

    .cp-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 75rem;
      margin: 4rem auto 0;
      padding: 0 1.5rem;
      align-items: start;
    }

    .cp-col {
      min-width: 0;
    }

    .cp-label {
      display: block;
      font-family: monospace;
      font-size: 0.6875rem;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #66666e;
      margin-bottom: 1rem;
    }

    .cp-heading {
      margin: 0;
      color: #111111;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.2;
      text-align: left;
    }

    .cp-sub {
      margin: 0.75rem 0 2.5rem;
      color: #444446;
      font-size: 20px;
      font-weight: 400;
      line-height: 1.6;
      max-width: 28rem;
    }

    .cp-form {
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
    }

    .cp-input {
      width: 100%;
      border: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.15);
      background: transparent;
      padding: 0.875rem 0;
      font-size: 0.875rem;
      color: #111111;
      outline: none;
      transition: border-color 0.25s ease;
    }

    .cp-input::placeholder {
      color: rgba(0, 0, 0, 0.38);
    }

    .cp-input:focus {
      border-bottom-color: rgba(0, 0, 0, 0.45);
    }

    .cp-textarea {
      resize: vertical;
      min-height: 4.5rem;
      margin-top: 1.75rem;
      line-height: 1.5;
    }

    .cp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 2rem;
      padding: 1rem 2rem;
      width: max-content;
      background-color: #111111;
      color: #ffffff;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      border: none;
      border-radius: 0;
      cursor: pointer;
      transition: background-color 0.25s ease, opacity 0.25s ease;
    }

    .cp-btn:hover {
      background-color: #000000;
    }

    .cp-btn:active {
      opacity: 0.88;
    }

    .cp-calendly-box {
      background-color: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      border-radius: 0.5rem;
      min-height: 28.125rem;
      width: 100%;
      margin-top: 1rem;
      overflow: hidden;
      box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.02);
    }

    .cp-calendly-iframe {
      display: block;
      width: 100%;
      min-height: 28.125rem;
      height: 43.75rem;
      border: none;
    }

    @media screen and (max-width: 768px) {
      .cp-page {
        padding-bottom: 3rem;
      }

      .cp-banner-wrap {
        margin-top: 1.5rem;
        padding: 0 1.25rem;
      }

      .cp-banner-inner {
        height: 11.25rem;
      }

      .cp-banner-title {
        font-size: 1.65rem;
      }

      .cp-banner-sub {
        font-size: 1rem;
      }

      .cp-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-top: 2.5rem;
        padding: 0 1.25rem;
      }

      .cp-heading {
        font-size: 1.65rem;
      }

      .cp-calendly-iframe {
        height: 40rem;
      }
    }

    @media screen and (max-width: 479px) {
      .cp-heading {
        font-size: 1.45rem;
      }

      .cp-btn {
        width: 100%;
      }

      .cp-calendly-iframe {
        height: 36rem;
      }
    }
