.newsletter {
    position: relative;
    padding: 46px 0 48px;
    background: var(--brand);
}

.newsletter__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: clamp(38px, 6vw, 86px);
}

.newsletter__copy h2 {
    margin: 0 0 5px;
    font-size: clamp(34px, 3.7vw, 48px);
    line-height: .95;
}

.newsletter__copy p {
    max-width: 430px;
    margin: 0;
    color: rgba(17,17,17,.66);
    font-size: 13px;
}

.newsletter__form-wrap,
.newsletter-form { width: 100%; }

.newsletter-form__control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: 66px;
    padding: 6px;
    border: 1px solid rgba(17,17,17,.14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17,17,17,.08);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s var(--ease);
}

.newsletter-form__control:focus-within {
    border-color: rgba(17,17,17,.34);
    box-shadow: 0 16px 38px rgba(17,17,17,.12);
    transform: translateY(-1px);
}

.newsletter-form__submit svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newsletter-form__control input {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 20px;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 14px;
}

.newsletter-form__control input::placeholder { color: #77776f; }

.newsletter-form__submit {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--ink);
    font-family: var(--font-display);
    font-weight: 800;
    cursor: pointer;
    transition: background-color .25s ease, transform .25s var(--ease);
}

.newsletter-form__submit:hover {
    background: #2b2b2b;
    transform: translateX(2px);
}

.newsletter-consent {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin: 13px 0 0 5px;
    color: rgba(17,17,17,.72);
    font-size: 12px;
    line-height: 1.45;
    cursor: pointer;
    user-select: none;
}

.newsletter-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.newsletter-consent__box {
    display: grid;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    place-items: center;
    border: 2px solid rgba(17,17,17,.72);
    border-radius: 8px;
    background: rgba(255,255,255,.42);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
    transition: border-color .22s ease, background-color .22s ease, transform .22s var(--ease), box-shadow .22s ease;
}

.newsletter-consent__box svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: var(--brand);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.55);
    transition: opacity .18s ease, transform .22s var(--ease);
}

.newsletter-consent__text { transition: color .22s ease; }
.newsletter-consent:hover .newsletter-consent__text { color: var(--ink); }
.newsletter-consent:hover .newsletter-consent__box {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(17,17,17,.07);
    transform: translateY(-1px);
}
.newsletter-consent input:focus-visible + .newsletter-consent__box { outline: 3px solid rgba(17,17,17,.18); outline-offset: 2px; }
.newsletter-consent input:checked + .newsletter-consent__box { border-color: var(--ink); background: var(--ink); box-shadow: 0 0 0 4px rgba(17,17,17,.1); }
.newsletter-consent input:checked + .newsletter-consent__box svg { opacity: 1; transform: scale(1); }

.footer-main {
    padding: 82px 0 70px;
    color: #fff;
    background: #111;
}

.footer-main__grid {
    display: grid;
    grid-template-columns: 1.35fr .72fr .72fr 1.2fr;
    gap: clamp(30px, 5vw, 70px);
}

.footer-brand img { width: 220px; margin-bottom: 22px; }
.footer-brand > p { max-width: 390px; margin-bottom: 0; color: rgba(255,255,255,.62); font-size: 14px; }

.footer-column h3,
.footer-contact h3 { margin-bottom: 21px; color: var(--brand); font-size: 20px; }

.footer-column { display: grid; align-content: start; gap: 10px; }

.footer-column a {
    position: relative;
    width: fit-content;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    transition: color .22s ease;
}

.footer-column a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 1px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .26s var(--ease);
}

.footer-column a:hover { color: #fff; }
.footer-column a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer-contact ul {
    display: grid;
    gap: 14px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
}

.footer-contact li svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--brand);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact a { transition: color .2s ease; }
.footer-contact a:hover { color: #fff; }
.social-links { display: flex; gap: 9px; }

.social-links a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 11px;
    color: #fff;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s var(--ease);
}

.social-links a:hover { color: var(--ink); border-color: var(--brand); background: var(--brand); transform: translateY(-3px); }
.social-links svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-links .fill-dark { fill: currentColor; stroke: none; }

.footer-bottom {
    padding: 18px 0;
    color: rgba(255,255,255,.54);
    border-top: 1px solid rgba(255,255,255,.07);
    background: #0a0a0a;
}

.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; font-size: 11px; }
.developed-by { display: inline-flex; align-items: center; gap: 12px; font-size: 10px; }
.developed-by img { width: 180px; height: 48px; object-fit: contain; object-position: center right; }

.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-menu li { margin: 0; padding: 0; }
