.hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    transition: background .4s var(--ease, cubic-bezier(.22, 1, .36, 1)), border-color .4s var(--ease, cubic-bezier(.22, 1, .36, 1)), backdrop-filter .4s var(--ease, cubic-bezier(.22, 1, .36, 1));
    border-bottom: 1px solid transparent;
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.hdr.is-stuck {
    background: rgba(4, 21, 15, .88);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-bottom-color: rgba(232, 239, 233, .16);
}

.hdr-in {
    width: min(var(--maxw, 1180px), 100% - (var(--gut, 24px) * 2));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.hdr-logo img {
    display: block;
    height: 40px;
    width: auto;
}

.hdr .nav {
    display: none;
    align-items: center;
    gap: 30px;
}

.hdr .nav a {
    position: relative;
    padding: 6px 0;
    color: var(--pearl-mut, rgba(232, 239, 233, .64));
    font: 500 .7rem/1 var(--f-label, 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif);
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .25s ease;
}

.hdr .nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--lime, #7CCF5A);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .4s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.hdr .nav a:hover,
.hdr .nav a:focus-visible {
    color: var(--pearl, #E8EFE9);
    outline: 0;
}

.hdr .nav a:hover::after,
.hdr .nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hdr-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hdr-tel {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--pearl, #E8EFE9);
    font: 500 .78rem/1 var(--f-label, 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif);
    letter-spacing: .06em;
    transition: color .25s ease;
}

.hdr-tel:hover,
.hdr-tel:focus-visible {
    color: var(--lime, #7CCF5A);
    outline: 0;
}

.hdr .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 26px;
    border: 1px solid transparent;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font: 500 .72rem/1 var(--f-label, 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif);
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .35s var(--ease, cubic-bezier(.22, 1, .36, 1)), border-color .35s var(--ease, cubic-bezier(.22, 1, .36, 1)), background .35s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.hdr .btn > * {
    position: relative;
    z-index: 1;
}

.hdr .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--lime, #7CCF5A);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .45s var(--ease, cubic-bezier(.22, 1, .36, 1));
}

.hdr .btn:hover::before,
.hdr .btn:focus-visible::before {
    transform: scaleY(1);
}

.hdr .btn--solid {
    border-color: var(--lime, #7CCF5A);
    background: var(--lime, #7CCF5A);
    color: var(--pine-950, #04150F);
}

.hdr .btn--solid::before {
    background: var(--pearl, #E8EFE9);
}

.hdr .btn--solid:hover,
.hdr .btn--solid:focus-visible {
    color: var(--pine-950, #04150F);
}

.hdr .btn--sm {
    padding: 11px 18px;
    font-size: .66rem;
}

.lbl-sm {
    display: none;
}

.burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 11px;
    border: 1px solid rgba(232, 239, 233, .16);
    background: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--pearl, #E8EFE9);
}

.mnav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 300;
    display: flex;
    flex-direction: column;
    width: min(360px, 88vw);
    padding: 84px 30px 34px;
    border-left: 1px solid rgba(232, 239, 233, .16);
    background: var(--pine-950, #04150F);
    transform: translateX(102%);
    visibility: hidden;
    transition: transform .5s var(--ease, cubic-bezier(.22, 1, .36, 1)), visibility 0s linear .5s;
}

.mnav.open {
    transform: none;
    visibility: visible;
    transition: transform .5s var(--ease, cubic-bezier(.22, 1, .36, 1)), visibility 0s;
}

.mnav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(232, 239, 233, .16);
    color: var(--pearl, #E8EFE9);
    font-family: var(--f-display, 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif);
    font-size: 1.5rem;
    font-stretch: 90%;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.mnav-tel {
    margin-top: auto;
    padding-top: 26px;
}

.mnav-tel span {
    display: block;
    margin-bottom: 10px;
    color: var(--pearl-mut, rgba(232, 239, 233, .64));
    font: 400 .62rem/1 var(--f-label, 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mnav-tel a {
    padding: 0;
    border: 0;
    color: var(--lime, #7CCF5A);
    font-size: 1.6rem;
}

.mnav-x {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(232, 239, 233, .16);
    background: none;
    color: var(--pearl, #E8EFE9);
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
}

.scrim {
    position: fixed;
    inset: 0;
    z-index: 280;
    background: rgba(4, 21, 15, .6);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.scrim.open {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 760px) {
    .hdr-tel {
        display: inline-flex;
    }
}

@media (min-width: 1000px) {
    .hdr .nav {
        display: flex;
    }

    .burger {
        display: none;
    }
}

@media (max-width: 999px) {
    .burger {
        position: fixed;
        top: 16px;
        right: 24px;
        z-index: 170;
        background: rgba(4, 21, 15, .18);
    }
}

@media (max-width: 600px) {
    .lbl-lg {
        display: none;
    }

    .lbl-sm {
        display: inline;
    }

    .hdr .btn--sm {
        padding: 11px 14px;
        font-size: .62rem;
    }
}

@media (max-width: 520px) {
    .hdr-in {
        width: calc(100% - 48px);
        gap: 12px;
    }

    .hdr-right .btn--sm {
        display: none;
    }
}

.cookie-consent {
    position: fixed;
    right: clamp(16px, 3vw, 30px);
    bottom: clamp(16px, 3vw, 30px);
    z-index: 500;
    width: min(420px, calc(100vw - 32px));
    padding: 20px;
    border: 1px solid rgba(232, 239, 233, .20);
    background: rgba(4, 21, 15, .96);
    color: #E8EFE9;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
    backdrop-filter: blur(14px);
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__title {
    margin: 0 0 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.cookie-consent__text {
    margin: 0;
    color: rgba(232, 239, 233, .72);
    font-size: .9rem;
    line-height: 1.55;
}

.cookie-consent__text a {
    color: #7CCF5A;
    text-decoration: none;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cookie-consent__btn {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(232, 239, 233, .36);
    background: transparent;
    color: #E8EFE9;
    cursor: pointer;
    font: 700 .68rem/1 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cookie-consent__btn--accept {
    border-color: #7CCF5A;
    background: #7CCF5A;
    color: #04150F;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible {
    border-color: #E8EFE9;
    background: #E8EFE9;
    color: #04150F;
}

.developer-credit a {
    color: inherit;
    text-decoration: none;
}

.developer-credit a:hover,
.developer-credit a:focus-visible {
    color: #7CCF5A;
}

.site-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(46px, 6vw, 74px) 0 28px;
    border-top: 1px solid rgba(232, 239, 233, .14);
    background: #04150F;
    color: rgba(232, 239, 233, .72);
    font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer__wrap {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1.35fr .85fr .85fr 1fr;
    gap: clamp(26px, 5vw, 54px);
    padding-bottom: 34px;
}

.site-footer__logo {
    width: 176px;
    height: auto;
    margin-bottom: 18px;
}

.site-footer__text {
    max-width: 32ch;
    color: rgba(232, 239, 233, .66);
    font-size: .95rem;
    line-height: 1.75;
}

.site-footer__title {
    margin-bottom: 16px;
    color: #E8EFE9;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.site-footer__nav {
    display: grid;
    gap: 9px;
}

.site-footer__nav a,
.site-footer__contact a {
    transition: color .2s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__contact a:hover,
.site-footer__contact a:focus-visible {
    color: #7CCF5A;
    outline: 0;
}

.site-footer__contact {
    display: grid;
    gap: 12px;
    font-size: .95rem;
    line-height: 1.6;
}

.site-footer__phone {
    color: #E8EFE9;
    font-size: 1.32rem;
    font-weight: 850;
}

.site-footer__badge {
    display: inline-flex;
    width: fit-content;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(124, 207, 90, .44);
    color: #7CCF5A;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(232, 239, 233, .14);
    color: rgba(232, 239, 233, .56);
    font-size: .82rem;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #7CCF5A;
    outline: 0;
}

@media (max-width: 520px) {
    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}
