@font-face {
    font-family: "Pensum";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("https://maisoncrivelli.com/cdn/shop/t/57/assets/fonts-PensumProLight.55f3b6eeb90a19a159de.woff2") format("woff2");
}

@font-face {
    font-family: "Pensum";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://maisoncrivelli.com/cdn/shop/t/57/assets/fonts-PensumProRegular.20769be79ffc153ef771.woff2") format("woff2");
}

@font-face {
    font-family: "Pensum";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("https://maisoncrivelli.com/cdn/shop/t/57/assets/fonts-PensumProRegularItalic.bc3779322ab3a9976a4f.woff2") format("woff2");
}

@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://maisoncrivelli.com/cdn/shop/t/57/assets/fonts-Gotham-Book.9712e6dff241e5df0f6e.woff2") format("woff2");
}

@font-face {
    font-family: "Gotham";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("https://maisoncrivelli.com/cdn/shop/t/57/assets/fonts-Gotham-Bold.19d2d72e9c1ea13089a0.woff2") format("woff2");
}

:root {
    --announcement-height: 38px;
    --header-height: 78px;
    --container: min(100% - 2rem, 1480px);
    --ink: #222;
    --muted: #5f5f5f;
    --line: rgba(34, 34, 34, 0.18);
    --line-light: rgba(255, 255, 255, 0.2);
    --soft: #fafafa;
    --accent: #c93825;
    --white: #fff;
    --black: #000;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
    --ease: cubic-bezier(.25, .46, .45, .94);
}

body.announcement-hidden {
    --announcement-height: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Gotham", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: var(--announcement-height);
    color: var(--white);
    background: var(--accent);
}

.announcement-bar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.announcement-bar__close {
    position: absolute;
    right: 1rem;
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar__close svg {
    width: 0.875rem;
    height: 0.875rem;
}

.announcement-bar__close:hover {
    opacity: 0.8;
}

.site-header {
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    z-index: 80;
    width: 100%;
    color: var(--white);
    border-bottom: 1px solid var(--line-light);
    transition:
        background-color 0.45s var(--ease),
        color 0.45s var(--ease),
        border-color 0.45s var(--ease),
        transform 0.45s var(--ease);
}

.site-header.is-solid {
    color: var(--ink);
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    width: auto;
}

.brand__name {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.55vw, 1.35rem);
    line-height: 1;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.brand__image {
    max-height: 2rem;
    width: auto;
}

.desktop-nav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1.65rem;
}

.nav-item {
    position: relative;
}

.nav-item__trigger {
    padding: 1.9rem 0 1.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease);
}

.nav-item:hover .nav-item__trigger,
.nav-item:focus-within .nav-item__trigger {
    color: var(--accent);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: min(78vw, 1040px);
    padding: 2.5rem;
    background: rgba(250, 250, 250, 0.985);
    color: var(--ink);
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 34, 34, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition:
        opacity 0.35s var(--ease),
        transform 0.35s var(--ease),
        visibility 0.35s var(--ease);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
}

.mega-menu__links {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.mega-menu__links a,
.footer-column a,
.mobile-nav-group a {
    position: relative;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mega-menu__links a::after,
.footer-column a::after,
.mobile-nav-group a::after,
.text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.mega-menu__links a:hover::after,
.footer-column a:hover::after,
.mobile-nav-group a:hover::after,
.text-link:hover::after,
.text-link:focus-visible::after {
    transform: scaleX(1);
}

.mega-menu__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.mini-card {
    display: grid;
    gap: 0.9rem;
}

.mini-card img {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.mini-card span {
    font-family: "Pensum", serif;
    font-size: 1.1rem;
    line-height: 0.95;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 0.45rem;
}

.icon-button,
.bag-pill {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.icon-button:hover,
.bag-pill:hover {
    color: var(--accent);
}

.icon-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.bag-pill {
    width: 2.75rem;
    height: 2.75rem;
}

.bag-pill svg {
    width: 1.4rem;
    height: 1.4rem;
}

.bag-pill {
    position: relative;
}

.bag-pill__count {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
}

.flash-banner {
    position: relative;
    z-index: 30;
    padding: 0.85rem 0;
    background: rgba(204, 67, 42, 0.1);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.flash-banner--error {
    background: rgba(161, 42, 42, 0.13);
}

.flash-banner--success {
    background: rgba(13, 122, 95, 0.12);
}

.desktop-language {
    display: none;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s var(--ease);
}

.desktop-language:hover {
    color: var(--accent);
}

.mobile-only {
    display: inline-flex;
}

.desktop-only {
    display: none;
}

[data-menu-open] {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.27rem;
}

[data-menu-open] span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: currentColor;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}

body.menu-open .overlay,
body.search-open .overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer,
.search-modal {
    position: fixed;
    top: 0;
    z-index: 70;
    width: min(92vw, 460px);
    height: 100vh;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
    transition: transform 0.45s var(--ease);
}

.mobile-drawer {
    left: 0;
    transform: translateX(-100%);
    padding: calc(var(--announcement-height) + 1.2rem) 1.25rem 2rem;
}

.search-modal {
    right: 0;
    transform: translateX(100%);
    width: min(100vw, 520px);
    padding: calc(var(--announcement-height) + 1.2rem) 1.25rem 2rem;
}

body.menu-open .mobile-drawer,
body.search-open .search-modal {
    transform: translateX(0);
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

.mobile-drawer__header,
.search-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.mobile-drawer__header span,
.search-modal__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-drawer__nav {
    display: grid;
    gap: 2rem;
    padding-top: 1.5rem;
}

.mobile-nav-group {
    display: grid;
    gap: 0.9rem;
}

.mobile-nav-group h2 {
    margin: 0;
    font-family: "Pensum", serif;
    font-size: 1.55rem;
    line-height: 0.95;
}

.search-modal__body {
    display: grid;
    gap: 1.35rem;
    padding-top: 1.5rem;
}

.search-field input,
.newsletter-form input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 1rem 0;
    outline: none;
}

.search-field input {
    font-family: "Pensum", serif;
    font-size: 1.8rem;
    line-height: 1;
}

.search-grid {
    display: grid;
    gap: 0.9rem;
}

.search-card {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 1rem;
    align-items: center;
}

.search-card img {
    aspect-ratio: 3 / 4;
    object-fit: contain;
    background: var(--soft);
}

.search-card h3 {
    margin: 0 0 0.35rem;
    font-family: "Pensum", serif;
    font-size: 1.15rem;
    line-height: 0.95;
}

.search-card h3 em {
    font-style: italic;
}

.search-card p {
    margin: 0;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: end center;
    overflow: hidden;
}

.hero__media,
.hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media img {
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: calc(var(--announcement-height) + var(--header-height) + 3rem);
    padding-bottom: 3.25rem;
    display: flex;
    justify-content: center;
}

.hero__copy {
    color: var(--white);
    text-align: center;
}

.eyebrow {
    margin: 0 0 1rem;
    font-size: 1.8rem;
    line-height: 0.95;
    font-family: "Pensum", serif;
}

.eyebrow--dark {
    color: var(--accent);
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "Gotham", system-ui, sans-serif;
    font-weight: 700;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0.95rem 1.95rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        background-color 0.3s var(--ease),
        border-color 0.3s var(--ease),
        color 0.3s var(--ease),
        transform 0.3s var(--ease);
}

.text-link {
    position: relative;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.button:hover {
    transform: translateY(-1px);
}

.button--outline {
    border: 1px solid var(--accent);
    color: var(--white);
}

.button--outline:hover {
    background: var(--accent);
}

.button--dark {
    color: var(--ink);
}

.button--dark:hover {
    color: var(--white);
}

.button--solid {
    background: var(--accent);
    color: var(--white);
}

.button--solid:hover {
    background: #b23120;
}

.section {
    padding: 4rem 0;
}

.section--soft {
    background: var(--soft);
}

.section--flush {
    padding-inline: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.display-title {
    margin: 0;
    font-family: "Pensum", serif;
    font-size: clamp(1.95rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.display-title em,
.product-card__title em {
    font-style: italic;
}

.display-title--sm {
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.slider-arrows {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.slider-arrow {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--white);
    transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.slider-arrow:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.slider-arrow svg {
    width: 1rem;
    height: 1rem;
}

.product-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(72vw, 1fr);
    gap: 1rem;
    overflow-x: auto;
    padding: 0.25rem 0.1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    scroll-snap-align: start;
}

.product-card__inner {
    position: relative;
    aspect-ratio: 332 / 470;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
    padding: 1.35rem;
    background: var(--white);
    overflow: hidden;
}

.product-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.product-card__title {
    margin: 0;
    font-family: "Pensum", serif;
    font-size: 1.25rem;
    line-height: 0.95;
}

.product-card__badge {
    flex-shrink: 0;
    align-self: start;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.45rem 0.7rem;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.product-card__media {
    position: relative;
    flex: 1;
    min-height: 0;
}

.product-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition:
        opacity 0.6s var(--ease),
        transform 0.8s var(--ease);
}

.product-card__image--primary {
    object-fit: contain;
}

.product-card__image--hover {
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
}

.product-card__bottom {
    position: relative;
    z-index: 2;
}

.product-card__prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-card__prices a,
.product-card__prices span {
    color: var(--accent);
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-card__prices strong {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
}

.product-card__form {
    display: grid;
    gap: 0.7rem;
}

.product-card__variant-select {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    min-height: 2.9rem;
    padding: 0 0.9rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card:hover .product-card__image--hover {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover .product-card__image--primary {
    opacity: 0;
    transform: scale(1.03);
}

.product-card:hover .product-card__badge {
    color: var(--white);
    background: var(--accent);
}

.collections-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(94vw - 8px);
    gap: 0.5rem;
    overflow-x: auto;
    margin-right: -1rem;
    padding-right: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.collections-grid::-webkit-scrollbar {
    display: none;
}

.collection-card {
    position: relative;
    display: grid;
    scroll-snap-align: start;
    min-height: 540px;
    overflow: hidden;
    color: var(--white);
}

.collection-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.collection-card:hover img {
    transform: scale(1.04);
}

.collection-card__content {
    position: relative;
    z-index: 1;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.875rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.04));
}

.collection-card h3 {
    margin: 0;
    font-family: "Pensum", serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 0.95;
}

.feature-banner {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
}

.feature-banner > picture,
.feature-banner > picture img,
.feature-banner__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.feature-banner > picture img {
    object-fit: cover;
}

.feature-banner__overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.45));
}

.feature-banner__content {
    position: relative;
    z-index: 1;
    min-height: 72vh;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 1.5rem;
    text-align: center;
    color: var(--white);
}

.split-section {
    display: grid;
    gap: 2rem;
}

.split-section__media img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.split-section__content {
    display: grid;
    align-content: center;
    gap: 1.5rem;
    padding: 0 1rem;
}

.split-section__content p,
.instagram-header__text p,
.service-card p,
.footer-column p,
.site-footer__bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.instagram-header {
    display: grid;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2rem;
}

.instagram-header__avatar {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.instagram-grid__item {
    overflow: hidden;
    background: var(--soft);
}

.instagram-grid__item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.instagram-grid__item:hover img {
    transform: scale(1.06);
}

.services-section__heading {
    text-align: center;
    margin-bottom: 2.75rem;
}

.services-grid {
    display: grid;
    gap: 2rem 1.25rem;
}

.service-card {
    text-align: center;
}

.service-card img {
    width: min(100%, 128px);
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.service-card h3 {
    margin: 0 0 0.7rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-form {
    display: grid;
    gap: 1rem;
}

.newsletter-form input::placeholder,
.search-field input::placeholder {
    color: rgba(34, 34, 34, 0.45);
}

.site-footer {
    padding: 0 0 2.5rem;
    border-top: 1px solid var(--line);
}

.footer-accordion-row {
    display: grid;
    border-bottom: 1px solid var(--line);
}

.footer-accordion {
    border-bottom: 1px solid var(--line);
}

.footer-accordion summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-accordion__icon {
    position: relative;
    width: 0.875rem;
    height: 0.875rem;
}

.footer-accordion__icon::before,
.footer-accordion__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.875rem;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.footer-accordion__icon::after {
    width: 1px;
    height: 0.875rem;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.footer-accordion[open] .footer-accordion__icon::after {
    opacity: 0;
}

.footer-accordion__content {
    padding: 0 0 1.25rem;
}

.footer-column {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.footer-column h2 {
    margin: 0 0 0.3rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1rem;
    margin-top: 0.6rem;
}

.socials a {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s var(--ease);
}

.socials a:hover {
    color: var(--accent);
}

.socials svg {
    width: 1.5rem;
    height: 1.5rem;
}

.site-footer__middle {
    display: grid;
    gap: 2rem;
    padding: 2rem 0;
}

.footer-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.footer-panel h2 {
    margin: 0;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-panel .button {
    width: fit-content;
}

.site-footer__bottom {
    display: grid;
    gap: 0.35rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--ease),
        transform 0.9s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    :root {
        --announcement-height: 40px;
        --header-height: 82px;
    }

    .announcement-bar__inner {
        font-size: 0.71rem;
    }

    .instagram-header {
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter-form {
        grid-template-columns: 1fr auto;
        align-items: end;
    }

    .footer-accordion-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .footer-accordion {
        border-bottom: 0;
    }

    .footer-accordion summary {
        padding: 0 0 1rem;
        pointer-events: none;
    }

    .footer-accordion__icon {
        display: none;
    }

    .footer-accordion__content {
        padding: 0;
        display: block;
    }

    .site-footer__middle {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
        padding: 2rem 0;
    }
}

@media (min-width: 1024px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: inline-flex;
    }

    .desktop-language {
        display: inline-flex;
        align-items: center;
    }

    .desktop-nav {
        display: flex;
    }

    .hero__content {
        padding-bottom: 4.75rem;
    }

    .slider-arrows {
        display: flex;
    }

    .product-slider {
        grid-auto-columns: minmax(0, calc((100% - 3rem) / 4));
    }

    .collections-grid {
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
        overflow: visible;
        margin-right: 0;
        padding-right: 0;
        scroll-snap-type: none;
    }

    .split-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }

    .split-section__content {
        padding: 4rem 4.5rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .services-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .site-footer__middle {
        gap: 4rem;
    }
}
