.modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity .4s, visibility .4s;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 7, 6, .92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .modal-content {
      position: relative;
      width: 100%;
      max-width: 720px;
      max-height: 90vh;
      background: var(--charcoal);
      border: 1px solid rgba(201, 137, 46, .18);
      overflow-y: auto;
      transform: translateY(40px) scale(.96);
      opacity: 0;
      transition: transform .5s var(--ease-ex), opacity .4s;
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .modal-close {
      position: absolute;
      top: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid rgba(250, 248, 244, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: none;
      z-index: 10;
      transition: all .25s;
    }

    .modal-close:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    .modal-close svg {
      width: 18px;
      height: 18px;
      color: var(--cream);
    }

    .modal-close:hover svg {
      color: var(--onyx);
    }

    .modal-container {
      padding: 56px 48px;
    }

    .cf-intro {
      margin-bottom: 40px;
    }

    .cf-label {
      font-family: var(--fh);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cf-label::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .cf-title {
      font-family: var(--fd);
      font-size: clamp(32px, 4vw, 46px);
      font-weight: 400;
      line-height: 1.08;
      color: var(--cream);
      margin-bottom: 18px;
    }

    .cf-title em {
      font-style: italic;
      color: var(--gold-l);
    }

    .cf-desc {
      font-family: var(--fb);
      font-size: 15px;
      line-height: 1.75;
      color: var(--muted);
      max-width: 480px;
    }

    .cf-form {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-group label {
      font-family: var(--fh);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(250, 248, 244, .45);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--fb);
      font-size: 15px;
      color: var(--cream);
      background: rgba(15, 14, 12, .4);
      border: 1px solid rgba(250, 248, 244, .1);
      padding: 14px 18px;
      outline: none;
      transition: border-color .25s, background .25s;
    }

    .form-group select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9892e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      cursor: none;
    }

    .form-group select option {
      background: var(--charcoal);
      color: var(--cream);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(250, 248, 244, .25);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      background: rgba(15, 14, 12, .6);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 140px;
    }

    .form-footer {
      margin-top: 8px;
    }

    .submit-btn {
      font-family: var(--fh);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--onyx);
      background: var(--gold);
      border: none;
      padding: 16px 40px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      cursor: none;
      transition: all .25s;
      border-radius: 40px;
    }

    .submit-btn svg {
      width: 16px;
      height: 16px;
      transition: transform .25s;
    }

    .submit-btn:hover {
      background: var(--gold-l);
      transform: translateY(-2px);
    }

    .submit-btn:hover svg {
      transform: translateX(4px);
    }

    .cf-success {
      display: none;
      text-align: center;
      padding: 60px 20px;
    }

    .cf-success.active {
      display: block;
    }

    .cf-form.hidden {
      display: none;
    }

    .success-icon {
      width: 72px;
      height: 72px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .success-icon svg {
      width: 32px;
      height: 32px;
      color: var(--onyx);
    }

    .cf-success h3 {
      font-family: var(--fd);
      font-size: 28px;
      font-weight: 400;
      color: var(--cream);
      margin-bottom: 12px;
    }

    .cf-success p {
      font-family: var(--fb);
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 32px;
    }

    .cf-success .btn-o {
      display: inline-block;
    }

    .btn-o {
      font-family: var(--fh);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      background: transparent;
      border: 1.5px solid var(--gold);
      padding: 14px 38px;
      text-decoration: none;
      display: inline-block;
      transition: all .25s;
      border-radius: 40px;
      cursor: none;
    }

    .btn-o:hover {
      background: var(--gold);
      color: var(--onyx);
    }

    @media(max-width:600px) {
      .modal-container {
        padding: 40px 24px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }
    }
