/* DG Newsletter — Frontend Form Styles */
/* Palette: bg #FAF7F2 / surface #F0EBE3 / text #1C150D / muted #8A7A6A / accent #C9A87C / border #E5DDD5 */

.dg-nl-wrap {
    max-width: 480px;
}

/* Success message */
.dg-nl-success {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 22px;
    background: #F0EBE3;
    border-left: 3px solid #C9A87C;
    font-family: Georgia, serif;
    font-size: 15px;
    color: #1C150D;
    line-height: 1.7;
    margin-bottom: 16px;
}

.dg-nl-success__icon {
    color: #C9A87C;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Error */
.dg-nl-error {
    font-family: Georgia, serif;
    font-size: 14px;
    color: #9B3A2A;
    margin: 0 0 12px;
    line-height: 1.5;
}

/* Form */
.dg-nl-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Fields */
.dg-nl-field {
    display: flex;
    flex-direction: column;
}

.dg-nl-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8A7A6A;
    margin-bottom: 8px;
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

.dg-nl-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5DDD5;
    background: #FFFFFF;
    color: #1C150D;
    font-size: 15px;
    font-family: Georgia, serif;
    line-height: 1.5;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.dg-nl-input:focus {
    border-color: #C9A87C;
}

.dg-nl-input::placeholder {
    color: #A89B8E;
}

/* Consent checkbox */
.dg-nl-check-label {
    display: flex;
    gap: 12px;
    cursor: pointer;
    align-items: flex-start;
}

.dg-nl-checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: #C9A87C;
    cursor: pointer;
}

.dg-nl-check-text {
    font-family: Georgia, serif;
    font-size: 13px;
    color: #8A7A6A;
    line-height: 1.7;
}

.dg-nl-link {
    color: #C9A87C;
    text-decoration: underline;
}

.dg-nl-link:hover {
    color: #1C150D;
}

/* Submit button */
.dg-nl-submit {
    align-self: flex-start;
    padding: 13px 36px;
    background: #C9A87C;
    color: #FAF7F2;
    border: none;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1;
    transition: background 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.dg-nl-submit:hover {
    background: #B89468;
}

.dg-nl-submit:focus-visible {
    outline: 2px solid #C9A87C;
    outline-offset: 3px;
}
