.nmt-contact-shell {
    --nmt-bg: #050505;
    --nmt-panel: #090909;
    --nmt-field: #0f0f0f;
    --nmt-field-focus: #121212;
    --nmt-border: #242424;
    --nmt-border-soft: #1b1b1b;
    --nmt-border-focus: #a88202;
    --nmt-text: #eeeeee;
    --nmt-muted: #737373;
    --nmt-accent: #a88202;
    --nmt-accent-hot: #ffc400;
    width: min(820px, 100%);
    margin: 0 auto;
    padding: 34px 0;
    color: var(--nmt-text);
    font-family: "Chakra Petch", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nmt-contact-shell *,
.nmt-contact-shell *::before,
.nmt-contact-shell *::after {
    box-sizing: border-box;
}

.nmt-contact-intro {
    margin: 0 0 26px;
    padding: 0 0 23px;
    border-bottom: 1px solid var(--nmt-border);
}

.nmt-contact-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--nmt-accent);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.nmt-contact-intro h2 {
    margin: 0 0 9px;
    color: var(--nmt-text);
    font-size: clamp(30px, 5vw, 43px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.025em;
}

.nmt-contact-intro p {
    max-width: 650px;
    margin: 0;
    color: #858585;
    font-size: 14px;
    line-height: 1.72;
}

.nmt-contact-form {
    position: relative;
    padding: 28px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,0) 160px),
        var(--nmt-panel);
    border: 1px solid var(--nmt-border);
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0,0,0,.3);
}

.nmt-contact-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168,130,2,.55), transparent);
    pointer-events: none;
}

.nmt-contact-section-label {
    margin: 0 0 16px;
    padding: 0 0 10px;
    color: #5f5f5f;
    border-bottom: 1px solid var(--nmt-border-soft);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.nmt-contact-section-label--spaced {
    margin-top: 8px;
}

.nmt-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.nmt-field {
    margin-bottom: 17px;
}

.nmt-field label,
.nmt-label-row > span {
    color: #969696;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.nmt-field label {
    display: inline-block;
    margin-bottom: 8px;
}

.nmt-required {
    color: var(--nmt-accent-hot);
}

.nmt-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.nmt-contact-form input[type="text"],
.nmt-contact-form input[type="email"],
.nmt-contact-form textarea,
.nmt-contact-form select {
    display: block;
    width: 100%;
    margin: 0;
    padding: 13px 14px;
    color: var(--nmt-text);
    background: var(--nmt-field);
    border: 1px solid var(--nmt-border);
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    font: inherit;
    font-size: 13px;
    line-height: 1.45;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.nmt-contact-form select {
    min-height: 47px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.nmt-select-wrap {
    position: relative;
}

.nmt-select-wrap::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-56%);
    color: #737373;
    font-size: 15px;
    line-height: 1;
    pointer-events: none;
}

.nmt-contact-form textarea {
    min-height: 168px;
    resize: vertical;
}

.nmt-contact-form input::placeholder,
.nmt-contact-form textarea::placeholder {
    color: #4e4e4e;
    opacity: 1;
}

.nmt-contact-form input:focus,
.nmt-contact-form textarea:focus,
.nmt-contact-form select:focus {
    background: var(--nmt-field-focus);
    border-color: var(--nmt-border-focus);
    box-shadow: 0 0 0 3px rgba(168,130,2,.08);
}

.nmt-contact-form select:invalid {
    color: #555;
}

.nmt-contact-form option {
    color: #eee;
    background: #111;
}

.nmt-turnstile-wrap {
    margin: 3px 0 18px;
    min-height: 65px;
}

.nmt-privacy-note {
    margin: 1px 0 17px;
    color: #616161;
    font-size: 11px;
    line-height: 1.65;
}

.nmt-privacy-note a {
    color: #8e741d;
    text-decoration: none;
    border-bottom: 1px solid rgba(168,130,2,.35);
}

.nmt-privacy-note a:hover {
    color: var(--nmt-accent-hot);
}

.nmt-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 52px;
    padding: 0 17px;
    color: #080808;
    background: var(--nmt-accent);
    border: 1px solid var(--nmt-accent);
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease, opacity .18s ease;
}

.nmt-submit:hover:not(:disabled) {
    background: var(--nmt-accent-hot);
    border-color: var(--nmt-accent-hot);
}

.nmt-submit:active:not(:disabled) {
    transform: translateY(1px);
}

.nmt-submit:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.nmt-submit-arrow {
    font-size: 17px;
    font-weight: 400;
}

.nmt-submit.is-loading .nmt-submit-arrow {
    animation: nmtPulse 1s ease-in-out infinite;
}

.nmt-form-status {
    display: none;
    margin-top: 14px;
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.55;
}

.nmt-form-status.is-success {
    display: block;
    color: #d8c168;
    background: rgba(168,130,2,.08);
    border-color: rgba(168,130,2,.28);
}

.nmt-form-status.is-error {
    display: block;
    color: #e9a2a2;
    background: rgba(255,68,68,.06);
    border-color: rgba(255,68,68,.22);
}

.nmt-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@keyframes nmtPulse {
    0%, 100% { opacity: .35; }
    50% { opacity: 1; }
}

@media (max-width: 700px) {
    .nmt-contact-shell {
        padding: 22px 0;
    }

    .nmt-contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nmt-contact-form {
        padding: 19px;
        border-radius: 6px;
    }

    .nmt-contact-intro h2 {
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nmt-contact-shell * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
