  * {
    box-sizing: border-box;
  }

  .hairtoque-cta {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* Replace with your own boutique image */
    background:
      linear-gradient(
        90deg,
        rgba(34, 23, 20, 0.88) 0%,
        rgba(34, 23, 20, 0.62) 45%,
        rgba(34, 23, 20, 0.28) 100%
      ),
      url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=2000&q=85")
      center / cover no-repeat;
  }

  .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(20, 14, 12, 0.35),
      rgba(122, 83, 62, 0.15)
    );
  }

  .cta-content {
    position: relative;
    z-index: 2;
    width: min(900px, 90%);
    text-align: center;
    color: #fff;
    padding: 70px 20px;
  }

  .cta-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: #e6c7a8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
  }

  .cta-content h2 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 400;
  }

  .cta-content p {
    max-width: 620px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.88);
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 175px;
    padding: 15px 28px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .cta-btn-primary {
    color: #2a1b17;
    background: #e6c7a8;
    border: 1px solid #e6c7a8;
  }

  .cta-btn-primary:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
  }

  .cta-btn-outline {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.75);
  }

  .cta-btn-outline:hover {
    color: #2a1b17;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
  }

  @media (max-width: 600px) {
    .hairtoque-cta {
      min-height: 600px;
    }

    .cta-content {
      padding: 60px 20px;
    }

    .cta-content h2 {
      font-size: 42px;
    }

    .cta-content p {
      font-size: 15px;
    }

    .cta-buttons {
      flex-direction: column;
      width: 100%;
    }

    .cta-btn {
      width: 100%;
      max-width: 280px;
    }
  }