/* HIDDEN CONTENT ///////////////////////////////////////////////////////////////// */

.visually-hidden:not(:focus):not(:active) {
    clip-path: inset(50%);
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 0;
    height: 0;
}

.focusable:focus {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
    white-space: normal;
}

.hidden-input {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.hidden-fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.close-on-click {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 1;
    pointer-events: none;
}

/* MOBILE-FIRST /////////////////////////////////////////////////////////////////// */

/* header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 3%;
    position: relative;
    font-family: 'HelveticaNeueLTStd', sans-serif;
    text-transform: uppercase;
    z-index: 2000;
}

.home-logo {
    width: 136px;
    margin-bottom: -28px;
}

.desktop-nav {
    display: none;
}

.header__actions {
    display: flex;
    gap: 3.2rem;
}

.burger {
    width: 36px;
    margin: auto;
}

.link-to-site {
    width: 48px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-beige);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition-duration: 0.2s;
    transition-property: opacity, visibility;
    transition-timing-function: ease;
}

.menu-toggle:checked ~ .mobile-menu {
    visibility: visible;
    opacity: 100;
}

.close-menu {
    position: fixed;
    width: 24px;
    top: 24px;
    left: 24px;
}

.mobile-menu__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0;
    text-align: center;
}

.mobile-menu__logo {
    width: 164px;
}

.mobile-menu__tampon {
    width: 128px;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 2.8rem;
    margin-bottom: 4.4rem;
}

.mobile-menu__nav li {
    position: relative;
}

.mobile-menu__nav li.has-submenu > .close-on-click {
    display: none;
}

.mobile-menu__nav .submenu li {
    margin-top: 1.6rem;
}

.mobile-menu__nav .submenu li a, .mobile-menu__nav .submenu li i {
    color: var(--color-brown);
}

.mobile-menu__nav .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu-checkbox:checked ~ .submenu {
    max-height: 500px;
}

.mobile-menu__nav .submenu-toggle {
    display: inline-flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.mobile-menu__nav .submenu-toggle::after {
    display: block;
    content: '';
    background-image: url("../../assets/svg/arrow-down.svg");
    width: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

.mobile-menu .submenu-checkbox:checked + .mobile-menu .submenu-toggle::after {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
}

.mobile-menu__nav a {
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* hero */

.hero__carousel {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero__track {
    position: relative;
    min-height: 100vh;
}

.hero__slide {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    height: 100vh;
    overflow: hidden;
    position: absolute;
    inset: 0;
    opacity: 0;
}

@keyframes hero {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    35% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero__slide--1 {
    animation: hero 18s infinite;
}

.hero__slide--2 {
    animation: hero 18s infinite;
    animation-delay: 6s;
}

.hero__slide--3 {
    animation: hero 18s infinite;
    animation-delay: 12s;
}

.hero__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.hero__image-wrapper--1 {
    background-image: url("../../assets/svg/bg-hero-1.svg");
}

.hero__image-wrapper--2 {
    background-image: url("../../assets/svg/bg-hero-2.svg");
}

.hero__image-wrapper--3 {
    background-image: url("../../assets/svg/bg-hero-3.svg");
}

.hero__figure--1, .hero__figure--3 {
    width: 64%;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.hero__figure--1 {
    mask-image: url("../../assets/svg/masque-hero-1.svg");
}

.hero__figure--2 {
    width: 100%;
}

.hero__figure--3 {
    mask-image: url("../../assets/svg/masque-hero-3.svg");
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4.8rem 1.6rem;
    gap: 1.6rem;
    background: var(--color-pale-red);
}

.hero__title {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 5rem;
    line-height: 0.9;
    letter-spacing: 2px;
    margin-bottom: 0.5em;
    color: var(--color-red);
}

.hero__text, .hero__text i, .hero__slide-number {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--color-red);
}

.hero__text {
    line-height: 1.2;
    margin-bottom: 0.5em;
    max-width: 400px;
}

.hero__text b {
    font-weight: 700;
    color: var(--color-red);
}

.hero__slide-number {
    line-height: 1.4;
    margin-bottom: 1.6rem;
}

.hero__cta {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 8px;
    background: var(--color-red);
    color: var(--color-pale-red);
    padding: 1.4rem 2rem 1rem;
    position: relative;
}

.hero__cta::after {
    position: absolute;
    display: block;
    content: '';
    background-image: url("../../assets/svg/deco-cta-hero.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
    top: 0;
    right: 0;
}

.hero__nav {
    position: absolute;
    top: 33%;
    width: 50px;
    z-index: 1000;
}

.hero__nav--previous {
    left: 1.6rem;
}

.hero__nav--next {
    right: 1.6rem;
}

.hero__slide.is-active {
    animation: none !important;
    opacity: 1 !important;
    z-index: 2;
}

.hero__slide:not(.is-active) {
    z-index: 1;
}

/* ticker */

.ticker {
    position: relative;
    background: var(--color-red);
}

.ticker__viewport {
    width: 100%;
    overflow: hidden;
    transform: translateX(0);
    transition: transform 0.4s ease;
}

.ticker__inner {
    transform: translateX(0);
    transition: transform 0.4s ease;
    will-change: transform;
}

.ticker__track {
    display: flex;
    gap: 4rem;
    width: max-content;
    padding: 1.4rem 0;
    animation: ticker 20s linear infinite;
    will-change: transform;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ticker__item {
    font-size: 3.2rem;
    line-height: 1;
    display: flex;
    gap: 4rem;
    flex: 0 0 auto;
    align-items: center;
}

.ticker__item:last-child {
    margin-right: 4rem;
}

.ticker__word {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-pale-red);
}

.ticker__figure img {
    height: 0.8em;
}

.ticker__nav {
    position: absolute;
    width: 9px;
    min-height: 100%;
    top: 0;
    cursor: pointer;
}

.ticker__nav--previous {
    left: 2rem;
}

.ticker__nav--next {
    right: 2rem;
}

/* integration + about card */

.integration, .about {
    margin-top: 3.6rem;
}

.integration__grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

.about {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}

.integration__card--simple, .integration__face, .about__card {
    display: flex;
    padding: 3.2rem 1.6rem;
    border-radius: 50px;
    text-align: center;
    gap: 2rem;
}

.integration__card--simple, .integration__face, .about__card--decouvrir, .about__card--savoir {
    flex-direction: column;
    align-items: center;
}

.about__card--histoire, .about__card--sound {
    justify-content: space-evenly;
    align-items: center;
}

.about__card--decouvrir, .about__card--savoir {
    justify-content: center;
}

.integration__card--simple {
    background: var(--color-dark-orange);
}

.integration__face, .about__card--decouvrir {
    background: var(--color-yellow);
}

.about__card--histoire {
    background: var(--color-red);
}

.about__card--savoir {
    background: var(--color-orange);
}

.about__card--sound {
    background: var(--color-blue);
}

.integration__title, .about__title {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 700;
    font-size: 4.5rem;
    line-height: 0.85;
    text-transform: uppercase;
}

.about__title--left, .about__title--right {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.about__title--left {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.about__title--right {
    writing-mode: vertical-lr;
    transform: rotate(0deg);
}

.integration__text, .about__text, .integration__caption {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.5em;
}

.integration__personnage {
    display: flex;
    flex-direction: column;
    width: 90%;
}

.integration__personnage--body {
    width: 100%;
    margin-top: -27.8%;
}

.integration__personnage--face {
    width: 36%;
    align-self: flex-end;
    z-index: 1000;
    margin-right: 15%;
}

.integration__figure {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: center;
}

.integration__figure img {
    width: 64%;
}

.integration__face {
    overflow: hidden;
}

.integration__deco {
    height: 1rem;
    overflow: visible;
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
    margin-right: -1.6rem;
}

.integration__deco--biscuit {
    background-image: url("../../assets/svg/deco-separation-biscuit.svg");
}

.integration__deco--musique, .body__deco {
    background-image: url("../../assets/svg/deco-separation-musique.svg");
}

.body__deco {
    height: 3.5rem;
    overflow: visible;
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 100%;
    width: 100%;
    margin: 3rem 0;
}

.about__figure--histoire, .about__image-wrapper--sound {
    display: inline-block;
    height: fit-content;
    width: auto;
}

.about__figure--histoire {
    mask-image: url("../../assets/svg/masque-mon-histoire.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    max-width: 440px;
}

.about__image-wrapper--sound {
    display: grid;
    width: 100%;
    max-width: 360px;
}

.about__figure--vinyle {
    grid-area: 1 / 1;
    width: 52%;
    z-index: 1000;
    justify-self: center;
    margin-top: 20%;
    filter: drop-shadow(0 1vh 1vh rgba(0, 0, 0, 0.4));
}

.about__figure--sound {
    grid-area: 1 / 1;
    width: 100%;
}

.cta-text {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.integration__cta, .integration__toggle, .about__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.integration__cta, .integration__toggle {
    cursor: pointer;
}

.cta-icon {
    width: 81px;
}

.cta-text__normal {
    margin-top: 7px;
}

.cta-text__reversed {
    display: block;
    transform: rotate(180deg);
}

.integration__card--flip {
    perspective: 1000px;
}

.integration__flip-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.integration__flip-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.6s ease;
}

.integration__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    justify-content: space-between;
}

.integration__face--front {
    transform: rotateY(0deg);
}

.integration__face--back {
    transform: rotateY(180deg);
}

.integration__card--flip:has(#flip-back:checked) .integration__flip-inner {
    transform: rotateY(180deg);
}

.integration__card--flip:has(#flip-front:checked) .integration__flip-inner {
    transform: rotateY(0deg);
}

.integration__cta .cta-icon, .integration__toggle .cta-icon, .about__cta .cta-icon {
    transition: transform 1.5s ease;
}

.integration__cta:hover .cta-icon, .integration__toggle:hover .cta-icon, .about__card--decouvrir:hover .cta-icon, .about__card--savoir:hover .cta-icon {
    transform: rotate(290deg);
}

.about__figure {
    transition: transform 0.3s ease-in-out;
}

.about__card--histoire:hover .about__figure, .about__card--sound:hover .about__figure {
    transform: scale(1.03);
}

/* presentation */

.presentation {
    padding: 2rem 3% 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
}

.presentation__image {
    width: 258px;
}

.presentation__text {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 400;
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: center;
    max-width: 922px;
}

.presentation__link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.presentation__link--text {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
}

.presentation__link--text:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.presentation__link--icon {
    width: 14px;
}

/* products */

.products {
    padding: 2.5rem 3% 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.products__carousel {
    overflow: hidden;
    position: relative;
}

.products__track {
    display: flex;
    transition: transform 400ms cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(0);
}

/* 1 colonne */
.product__card {
    margin-right: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: center;
}

/* 2 colonnes */
@media (min-width: 478px) {
    .product__card {
        margin-right: 2rem;
        width: calc((100% + 2rem) / 2 - 2rem);
    }
}

/* 3 colonnes */
@media (min-width: 768px) {
    .product__card {
        margin-right: 3rem;
        width: calc((100% + 3rem) / 3 - 3rem);
    }
}

/* 4 colonnes */
@media (min-width: 992px) {
    .product__card {
        margin-right: 4rem;
        width: calc((100% + 4rem) / 4 - 4rem);
    }
}

.product__image-wrapper img {
    border-radius: 2.6rem;
}

.product__image-wrapper {
    position: relative;
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 0% 50%, 0% 0%);
    transition: clip-path 0.2s ease;
}

.product__card:hover .product__image-wrapper {
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
}

.products__filters {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.filter-label {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 400;
    font-size: 5rem;
    line-height: 1;
    letter-spacing: 1.1px;
}

.filter--instruments:checked + .filter-label--instruments, .filter--accessoires:checked + .filter-label--accessoires {
    text-decoration: underline;
    text-underline-offset: 9px;
    text-decoration-thickness: 6px;
}

.products:has(#filter-instruments:checked) .product__card--accessoire {
    display: none;
}

.products:has(#filter-accessoires:checked) .product__card--instrument {
    display: none;
}

.product__mood {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 1.6rem;
}

.product__name {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.product__tone {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0.8rem 0;
    padding: 12px 1.3rem 8px;
    border: 2px solid var(--color-black);
    border-radius: 50px;
}

.product__cta {
    position: relative;
    background: var(--color-red);
    color: var(--color-pale-red);
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 14px 20px 10px;
}

.product__cta::after {
    position: absolute;
    display: block;
    content: '';
    background-image: url("../../assets/svg/deco-cta-produit.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
    top: 0;
    right: 0;
}

.product__badge {
    position: absolute;
    top: 24px;
    right: 24px;
}

.product__badge--incontournable {
    width: 40%;
}

.product__badge--wow {
    width: 32%;
}

.products__nav {
    position: absolute;
    top: 40%;
    width: 50px;
    z-index: 1000;
}

.products__nav--previous {
    left: 0.8rem;
}

.products__nav--next {
    right: 0.8rem;
}

/* ingredients */

.ingredients {
    margin-bottom: 3rem;
    padding: 0 3%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 20px;
}

.ingredient__figure {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ingredient__image {
    height: 68px;
    width: auto;
}

.ingredient__caption {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* footer ticker */

@keyframes footer-ticker {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

.footer-ticker {
    overflow: hidden;
    width: 100%;
}

.footer-ticker__track {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: footer-ticker 20s linear infinite;
    padding: 4rem 0;
    gap: 4rem;
    width: max-content;
}

.footer-ticker__link {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 12px 1.3rem 8px;
    border: 2px solid var(--color-black);
    border-radius: 50px;
    text-align: center;
    display: flex;
}

.footer-ticker__cta {
    min-width: 200px;
}

.footer-ticker__item, .footer-ticker__cta {
    flex: 0 0 auto;
}

.footer-ticker__item:last-child {
    margin-right: 4rem;
}

.footer-ticker__figure {
    width: 128px;
}

.rotate-minus {
    transform: rotate(-15deg);
}

.rotate-plus {
    transform: rotate(15deg);
}

.footer-ticker:hover .footer-ticker__track {
    animation-play-state: paused;
}

/* footer contact */

.contact-cards {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

.contact-card {
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem;
    min-height: 50vh;
    justify-content: space-between;
}

.contact-card--email {
    background: var(--color-pink);
}

.contact-card--listen {
    background: var(--color-dark-orange);
}

.contact__intro {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact__title {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    line-height: 0.85;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact__text {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
}

.contact__text, .contact__email {
    max-width: 500px;
}

.contact__email {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 18.5px;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--color-black);
    text-align: left;
}

.contact__cta, .contact__email.copied {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 17.5px;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    padding: 12px 20px;
    background: var(--color-black);
    display: block;
    width: fit-content;
}

.contact-card--email .contact__cta {
    color: var(--color-pink);
}

.contact-card--listen .contact__cta {
    color: var(--color-dark-orange);
}

.contact-card__top, .contact-card__bottom {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.contact__email.copied {
    background: var(--color-black);
    color: var(--color-pink);
    transition: background .3s ease, color .3s ease;
}

/* footer sections */

.footer__info {
    display: flex;
    flex-direction: column;
    padding: 3rem 2.5rem 0;
    margin-bottom: 1.4rem;
}

.footer__text {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 0.5em;
}

.text-and-socials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.socials {
    display: flex;
    gap: 1.3rem;
    justify-content: center;
    align-items: center;
}

.socials__text {
    font-family: 'FKScreamer', sans-serif;
    font-weight: 800;
    font-size: 2.3rem;
    line-height: 1.4;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.socials__link--instagram {
    width: 28px;
}

.socials__link--facebook {
    width: 13px;
}

.socials__link:hover img {
    transform: rotate(45deg);
    transition: all 0.2s;
}

.footer__logos {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    gap: 1.6rem;
    align-items: center;
}

.footer__logo {
    width: 235px;
}

.footer__signature {
    width: 162px;
}

.footer__nav {
    margin-top: 3rem;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer__nav-link {
    font-family: 'HelveticaNeueLTStd', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__nav-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.footer__links {
    padding: 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
}

.copyright-and-address, .address__link {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
}

.copyright, .address__text {
    font-family: 'BricolageGrotesque', sans-serif;
    font-weight: 100;
    font-size: 1.3rem;
    line-height: 1.4;
}

.address:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.github {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.github__link {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    align-items: center;
}

.github__link-text {
    width: 144px;
}

.github__link-text img {
    transform: rotate(-2deg);
}

.github__link-icon {
    width: 50px;
    transition: all 0.6s ease;
}

.github__link:hover .github__link-text::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 11px;
    background-image: url("../../assets/svg/deco-footer-link-hover.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    margin-top: 4px;
}

.github__link:hover .github__link-icon {
    transform: rotateY(180deg);
}

.footer__deco {
    margin-top: 1.6rem;
    background-image: url("../../assets/svg/deco-footer.svg");
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
    height: 32px;
}

/* TABLET ///////////////////////////////////////////////////////////////////////// */

@media (min-width: 680px) {

    /* header */
    .home-logo {
        width: 164px;
        margin-bottom: -34px;
    }

    .mobile-menu__nav {
        font-size: 2rem;
        margin-top: 4.3rem;
        margin-bottom: 5.9rem;
    }

    .mobile-menu__nav .submenu-toggle::after {
        width: 17px;
    }

    /* hero */
    .hero__content {
        padding: 10.3rem 2.2rem;
        gap: 2.2rem;
    }

    .hero__title {
        font-size: 7rem;
    }

    .hero__text, .hero__slide-number {
        font-size: 1.55rem;
    }

    .hero__slide-number {
        margin-bottom: 2.2rem;
    }

    /* integration + about card */
    .integration, .about {
        margin-top: 5.8rem;
    }

    .integration__grid {
        display: grid;
        grid-template-rows: none;
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }

    .integration__card--simple, .integration__face, .about__card {
        padding: 5.6rem 2.2rem;
        gap: 3rem;
    }

    .integration__title, .about__title {
        font-size: 5.25rem;
    }

    .about__title--left, .about__title--right {
        font-size: 1.75rem;
    }

    .integration__text, .about__text {
        font-size: 1.55rem;
        width: 70%;
    }

    .integration__figure {
        gap: 3rem;
    }

    .integration__deco {
        width: calc(100% + 4.4rem);
        margin-left: -2.2rem;
        margin-right: -2.2rem;
    }

    .body__deco {
        margin: 5.5rem 0;
    }

    .integration__caption {
        font-size: 1.55rem;
    }

    .integration__cta, .integration__toggle, .about__cta {
        gap: 3rem;
    }

    /* presentation */
    .presentation {
        padding-top: 3rem;
        gap: 2.2rem;
    }

    .presentation__text {
        font-size: 2.45rem;
    }

    /* products */
    .products {
        padding-top: 4.05rem;
        gap: 4.05rem;
    }

    .product__image-wrapper img {
        border-radius: 2.9rem;
    }

    .products__filters {
        gap: 5.5rem;
    }

    .filter-label {
        font-size: 7.5rem;
    }

    .product__mood {
        margin-top: 2.2rem;
    }

    .product__name {
        font-size: 2.45rem;
    }

    .product__tone {
        margin: 0.9rem 0;
        padding: 12px 1.65rem 8px;
    }

    /* ingredients */
    .ingredients {
        margin-bottom: 1.55rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-gap: 16px;
    }

    .ingredient__figure {
        gap: 1.2rem;
    }

    .ingredient__caption {
        font-size: 1.55rem;
    }

    /* footer ticker */
    .footer-ticker__link {
        padding: 12px 1.65rem 8px;
    }

    /* footer contact */
    .contact__intro {
        font-size: 1.35rem;
    }

    .contact__title {
        font-size: 5.25rem;
    }

    .contact__text {
        font-size: 1.55rem;
    }

    .contact-card__top, .contact-card__bottom {
        gap: 2.2rem;
    }

    .contact-cards {
        grid-template-rows: 1fr;
        grid-template-columns: repeat(2, 1fr);
    }

    /* footer sections */
    .footer__info {
        flex-direction: row;
        padding: 5.5rem 4.05rem 0;
        margin-bottom: 0;
    }

    .footer__text {
        font-size: 1.55rem;
        text-align: left;
    }

    .text-and-socials {
        gap: 3rem;
        width: 32%;
    }

    .socials {
        gap: 1.65rem;
        justify-content: left;
    }

    .socials__text {
        font-size: 2.75rem;
    }

    .footer__logos {
        margin-top: 0;
        gap: 2.2rem;
        width: 36%;
    }

    .footer__nav {
        margin-top: 0;
        width: 32%;
    }

    .footer__nav-list {
        gap: 1.2rem;
    }

    .footer__nav-link {
        font-size: 1.35rem;
    }

    .footer__links {
        padding: 4.05rem 4.05rem 0;
        flex-direction: row;
        justify-content: space-between;
    }

    .copyright-and-address {
        flex-direction: row;
        gap: 2.2rem;
    }

    .address__link {
        gap: 0;
        align-items: flex-start;
        width: max-content;
    }

    .copyright, .address__text {
        font-size: 1.35rem;
    }

    .github {
        margin-top: 0;
        flex-direction: row;
    }

    .github__link {
        gap: 1.65rem;
    }

    .footer__deco {
        margin-top: 2.2rem;
    }
}

/* DESKTOP //////////////////////////////////////////////////////////////////////// */

@media (min-width: 990px) {

    /* header */
    .desktop-nav {
        display: block;
        font-size: 1.6rem;
        line-height: 1.4;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .home-logo {
        width: 208px;
        margin-bottom: -44px;
    }

    .burger {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .desktop-nav .nav-links {
        display: flex;
        align-items: center;
        gap: 4.4rem;
        position: relative;
    }

    .desktop-nav .nav-links > li {
        display: inline-flex;
        gap: 1rem;
        margin: 1rem 0;
    }

    .desktop-nav .nav-links li:hover .submenu-toggle {
        text-decoration: underline;
        text-decoration-thickness: 3px;
        text-underline-offset: 4px;
        cursor: pointer;
    }

    .desktop-nav .nav-links > li::after {
        display: block;
        content: '';
        background-image: url("../../assets/svg/arrow-nav.svg");
        width: 6px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .desktop-nav .submenu {
        background: var(--color-beige);
        border: 2px solid var(--color-black);
        padding: 1.6rem 2.4rem;
        border-radius: 1.2rem;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        position: absolute;
        top: 100%;
        opacity: 0;
        visibility: hidden;
        transition-duration: 0.2s;
        transition-property: opacity, visibility, transform;
        transition-timing-function: ease;
    }

    .desktop-nav .submenu li:hover {
        text-decoration: underline;
        text-decoration-thickness: 3px;
        text-underline-offset: 4px;
    }

    .desktop-nav .nav-links li:hover .submenu {
        opacity: 100;
        visibility: visible;
    }

    .desktop-nav .nav-links > li:hover::after {
        transform: rotate(90deg);
        transition: transform 0.2s ease;
    }

    /* hero */
    .hero__slide {
        grid-template-rows: none;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-content: stretch;
    }

    .hero__content {
        padding: 15.8rem 2.8rem;
        gap: 2.8rem;
    }

    .hero__title {
        font-size: 9rem;
    }

    .hero__text, .hero__slide-number {
        font-size: 1.6rem;
    }

    .hero__slide-number {
        margin-bottom: 2.8rem;
    }

    .hero__nav {
        top: 50%;
    }

    /* integration + about card */
    .integration, .about {
        margin-top: 8rem;
    }

    .integration__card--simple, .integration__face, .about__card {
        padding: 8rem 2.8rem;
        gap: 4rem;
    }

    .integration__title, .about__title {
        font-size: 6rem;
    }

    .about__title--left, .about__title--right {
        font-size: 1.9rem;
    }

    .integration__text, .about__text {
        font-size: 1.6rem;
    }

    .integration__figure {
        gap: 4rem;
    }

    .integration__deco {
        height: 2rem;
        width: calc(100% + 5.6rem);
        margin-left: -2.8rem;
        margin-right: -2.8rem;
    }

    .body__deco {
        margin: 8rem 0;
    }

    .integration__caption {
        font-size: 1.6rem;
    }

    .integration__cta, .integration__toggle, .about__cta {
        flex-direction: row;
        gap: 4rem;
    }

    /* presentation */
    .presentation {
        padding-top: 4rem;
        gap: 2.8rem;
    }

    .presentation__text {
        font-size: 2.7rem;
    }

    /* products */
    .products {
        padding-top: 5.6rem;
        gap: 5.6rem;
    }

    .product__image-wrapper img {
        border-radius: 3.2rem;
    }

    .products__filters {
        gap: 8rem;
    }

    .filter-label {
        font-size: 10rem;
    }

    .product__mood {
        margin-top: 2.8rem;
    }

    .product__name {
        font-size: 2.7rem;
    }

    .product__tone {
        margin: 1rem 0;
        padding: 12px 2rem 8px;
    }

    /* ingredients */
    .ingredients {
        margin-bottom: 8rem;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 1fr;
    }

    .ingredient__figure {
        gap: 1.4rem;
    }

    .ingredient__caption {
        font-size: 1.6rem;
    }

    /* footer ticker */
    .footer-ticker__link {
        padding: 12px 2rem 8px;
    }

    /* footer contact */
    .contact-card {
        min-height: 70vh;
    }

    .contact__intro {
        font-size: 1.4rem;
    }

    .contact__title {
        font-size: 6rem;
    }

    .contact__text {
        font-size: 1.6rem;
    }

    .contact-card__top, .contact-card__bottom {
        gap: 2.8rem;
    }

    /* footer sections */
    .footer__info {
        padding: 8rem 5.6rem 0;
    }

    .footer__text {
        font-size: 1.6rem;
    }

    .text-and-socials {
        gap: 4rem;
    }

    .socials {
        gap: 2rem;
    }

    .socials__text {
        font-size: 3.2rem;
    }

    .footer__logos {
        gap: 2.8rem;
    }

    .footer__nav-list {
        gap: 1.4rem;
    }

    .footer__nav-link {
        font-size: 1.4rem;
    }

    .footer__links {
        padding: 5.6rem 5.6rem 0;
    }

    .copyright-and-address {
        gap: 2.8rem;
    }

    .address__link {
        gap: 0;
    }

    .copyright, .address__text {
        font-size: 1.4rem;
    }

    .github__link {
        gap: 2rem;
        flex-direction: row;
    }

    .footer__deco {
        margin-top: 2.8rem;
    }
}