.atg-newsletter,
.atg-newsletter * {
    box-sizing: border-box;
}

.atg-newsletter {
    width: 100%;
    color: var(--atg-cream);
    background: var(--atg-black);
}

.atg-newsletter__inner {
    width: min(100% - 48px, var(--atg-container, 1450px));
    margin: 0 auto;
}

.atg-newsletter--block {
    padding: 56px 0;
    border-top: 1px solid var(--atg-gold-line, rgba(180, 138, 67, .28));
}

.atg-newsletter--bar {
    padding: 22px 0 18px;
    border-top: 1px solid rgba(244, 239, 230, .12);
    background: #050505;
}

.atg-newsletter__copy {
    margin: 0 0 14px;
    color: var(--atg-cream);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.atg-newsletter--bar .atg-newsletter__copy {
    font-size: 14px;
}

.atg-newsletter__form {
    margin: 0;
    max-width: 640px;
}

.atg-newsletter__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
}

.atg-newsletter__field {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: var(--atg-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.atg-newsletter__optional {
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    opacity: .7;
}

.atg-newsletter__field input {
    width: 100%;
    max-width: 100%;
    min-height: 38px;
    height: 38px;
    padding: 8px 10px;
    border: 1px solid rgba(244, 239, 230, .16);
    border-radius: 8px;
    background: #0d0d0d;
    color: var(--atg-cream);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.atg-newsletter__field input:focus {
    outline: none;
    border-color: var(--atg-gold);
}

.atg-newsletter__button {
    position: relative;
    z-index: 1;
    flex: none;
    float: none;
    width: auto;
    min-width: 7.5rem;
    min-height: 38px;
    height: 38px;
    padding: 0 16px;
    border: 1px solid var(--atg-gold);
    border-radius: 8px;
    background: transparent;
    color: var(--atg-cream);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.atg-newsletter__button:hover,
.atg-newsletter__button:focus-visible {
    background: rgba(180, 138, 67, .14);
    outline: none;
}

.atg-newsletter__honeypot {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.atg-newsletter__notice {
    margin: 0 0 12px;
    font-size: 13px;
}

.atg-newsletter__notice--success {
    color: #9ee2b7;
}

.atg-newsletter__notice--error {
    color: #ff9b9b;
}

.atg-contact__newsletter {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 22px 0 0;
    color: #bbb4aa;
    font-size: 13px;
    line-height: 1.45;
    cursor: pointer;
}

.atg-contact__newsletter input {
    margin-top: 3px;
    flex: 0 0 auto;
    accent-color: var(--atg-gold, #b48a43);
}

@media (max-width: 650px) {
    .atg-newsletter__inner {
        width: min(100% - 28px, var(--atg-container, 1450px));
    }

    .atg-newsletter--block {
        padding: 40px 0;
    }

    .atg-newsletter__form {
        max-width: none;
    }

    .atg-newsletter__fields {
        grid-template-columns: 1fr;
    }

    .atg-newsletter__button {
        width: 100%;
    }
}
