/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER STRIP  (above footer)
═══════════════════════════════════════════════════════════════ */
.footer-newsletter-strip {
    background: linear-gradient(135deg, #0d2f3f 0%, #174f5c 100%);
    border-top: 3px solid var(--color-primary);
    padding: var(--spacing-2xl) var(--spacing-2xl);
}

.footer-newsletter-strip__inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.footer-newsletter-strip__text {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-shrink: 0;
}

.footer-newsletter-strip__icon {
    font-size: 28px;
    color: var(--color-secondary);
    line-height: 1;
    flex-shrink: 0;
}

.footer-newsletter-strip__title {
    font-family: 'DM Serif Display', serif;
    font-size: 17px;
    color: var(--color-white);
    margin-bottom: 3px;
}

.footer-newsletter-strip__sub {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.footer-newsletter-strip__form {
    display: flex;
    gap: var(--spacing-md);
    flex: 1;
    max-width: 400px;
    min-width: 260px;
}

.footer-newsletter-strip__input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-size: var(--font-size-xl);
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast) ease, background var(--transition-fast) ease;
}

.footer-newsletter-strip__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-strip__input:focus {
    border-color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-strip__btn {
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--radius-full);
    background: var(--color-secondary);
    color: #000;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.footer-newsletter-strip__btn:hover {
    background: var(--color-secondary-dark);
    box-shadow: 0 4px 14px rgba(253, 184, 19, 0.4);
}

