/* ---------------------------------------------------------
   Réassurance
   --------------------------------------------------------- */
.reassurance-band {
    background-color: white;
    padding: 0 4px 4px;
}

.reassurance-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 8rem 3rem;
    background-color: var(--light-pink);
    flex-direction: column;
    text-align: center;
}

.reassurance-icon {
    flex-shrink: 0;
    width: auto;
    height: 4.5rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.reassurance-band .reassurance-item:first-child .reassurance-icon img,
.reassurance-band .reassurance-item:last-child .reassurance-icon img {
    height: 85%;
}

.reassurance-band .reassurance-icon img {
    max-width: none;
    height: 100%;
}

.reassurance-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reassurance-text strong {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.reassurance-text span {
    font-size: 1.3rem;
    line-height: 1.5;
}

/* ---------------------------------------------------------
   Instagram
   --------------------------------------------------------- */
.instagram-feed {
    padding: 0 4px 4px;
    text-align: center;
    background-color: white;
    position: relative;
}

.section-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.instagram-feed .section-header a {
    color: white;
    transition: color var(--transition);
    font-size: 20rem;
    font-weight: 600;
    text-transform: uppercase;
}

.instagram-feed:hover a {
    animation: name-summer 2.5s ease-in-out infinite;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: opacity var(--transition);
    display: block;
}

.instagram-grid .instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-grid .instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
}

.instagram-placeholder svg {
    width: 32px;
    height: 32px;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer {
    /* background: linear-gradient(to bottom, #0d4a73 0%, var(--blue) 40%, #4a9eca 100%); */
    background-color: var(--blue);
    color: white;
    position: relative;
}

.footer-pinetree {
    position: absolute;
    bottom: -40px;
    width: auto;
    will-change: transform;
}

.site-footer .footer-pinetree--left {
    left: 0;
    height: 100%;
    z-index: 1;
}

.site-footer .footer-pinetree--right {
    right: 0;
    height: 90%;
    z-index: 1;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.footer-brand {
    max-width: 18rem;
    margin-bottom: 6rem;
}

.footer-brand svg {
    width: 100%;
    height: auto;
    display: block;
}

.footer-top {
    background: white;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    width: 100%;
    padding: 0 4px 4px;
    gap: 4px;
}

.footer-nav ul {
    display: flex;
    gap: 1.4rem 4rem;
    padding: 5rem;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--blue);
}

.footer-nav ul > li:first-child {
    width: 100%;
}

.footer-nav ul > li {
    position: relative;
    z-index: 2;
}

.footer-nav-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 4rem;
}

.footer-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color var(--transition);
}

.footer-based {
    font-size: 1.2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
}

.footer-based::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 1px;
    background-color: white;
    transform: translateX(-50%);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26rem 0 3rem;
    position: relative;
    border: 4px solid white;
    border-top: none;
}

.footer-lang ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.4rem;
    list-style: none;
}

.footer-lang li {
    display: flex;
    align-items: center;
    position: relative;
}

.footer-lang li + li::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    left: -19px;
    top: 9px;
}

.footer-lang a {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color var(--transition);
    color: white;
}

.footer-lang a[aria-current="true"] {
    text-decoration: none;
}

.footer-lang a[aria-current="true"].link-underline::after {
    transform: scaleX(1);
    transition: none;
}

.footer-copyright {
    font-size: 1rem;
    margin-top: 7rem;
}
