body {
    width: 100vw;
    height: 100vh;

    margin: 0;
    display: flex;

    background-color: white;
}

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

@font-face {
    font-family: "Wremena";
    src:
        url("font/Wremena\ Regular.otf") format("otf"),
        url("font/Wremena\ Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Wremena";
    src:
        url("font/Wremena\ Light.otf") format("otf"),
        url("font/Wremena\ Light.woff") format("woff");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Wremena";
    src:
        url("font/Wremena\ Bold.otf") format("otf"),
        url("font/Wremena\ Bold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

a,
p,
h1,
h3 {
    padding: 0;
    text-box: trim-both cap alphabetic;

    font-size: 1.4rem;
    line-height: 120%;
    font-family: Spectral;
    font-weight: 200;
    text-decoration: none;
    font-variant-numeric: lining-nums;

    max-width: 55rem;

    color: black;
}

h1,
h3,
footer a {
    text-align: center;
}

h3 {
    margin-block: 0;
    letter-spacing: 2%;
    line-height: 140%;
    font-size: 1rem;
}

a:hover {
    text-decoration: underline 6px;
}

nav {
    width: 100%;
    height: 100%;

    display: flex;
}

nav section {
    display: flex;

    width: 100%;
    height: 100%;
    padding-top: 2rem;

    justify-content: center;
    align-items: flex-start;
}

.body__otherside,
#nav__column--otherside:has(a:hover) {
    background-color: #123d2f;
    background-image:
        linear-gradient(rgba(210, 255, 220, 0.233) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 255, 220, 0.283) 1px, transparent 1px),
        linear-gradient(rgba(210, 255, 220, 0.2) 0.5px, transparent 0.5px),
        linear-gradient(90deg, rgba(210, 255, 220, 0.2) 0.5px, transparent 0.5px);
    background-size: 5rem 5rem, 5rem 5rem, 1rem 1rem, 1rem 1rem;
    background-position: -1px -1px, -1px -1px, -0.5px -0.5px, -0.5px -0.5px;
}

.body__otherside a,
.body__otherside p,
.body__otherside h1,
.body__otherside h3 {
    color: #fff;
}

.body__otherside a:hover {
    color: #fff;
    text-decoration: underline 6px;
}

.body__otherside hr {
    border-top-color: #f2fff0;
}

.body__luminescent,
#nav__column--luminescent:has(a:hover) {
    background-color: #B1ECBE;
}

.body__europe,
#nav__column--europe:has(a:hover) {
    background-color: #003399;
}

.body__europe a,
.body__europe p,
.body__europe h1,
.body__europe h3 {
    color: white;
}

.body__europe a:hover {
    color: #fff;
    text-decoration: underline 6px;
}

.body__europe hr {
    border-top-color: white;
}

.body__europe {
    isolation: isolate;
}

.europe-star {
    --europe-star-rotation: 0deg;

    position: fixed;
    left: 50%;
    top: 50%;
    z-index: -10;

    width: 50vmin;
    aspect-ratio: 1;

    background-color: #FFCC00;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(var(--europe-star-rotation));
    transform-origin: center;
    will-change: transform;
}

img {
    width: 100%;
    height: auto;
}

.image-pair {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.image-pair img {
    display: block;
}

.image-pair--vertical img {
    aspect-ratio: 1186 / 1606;
    object-fit: cover;
}

.main {
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 1rem;
    padding: 1.6rem;
    margin-bottom: 2rem;
}

.main__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.main__grid--shop {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.main__grid--shop img,
.product-image {
    aspect-ratio: 1 / 1;
}

.main__grid--shop img {
    display: block;
    object-fit: cover;
}

.product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
}

.product-image__hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.product-image--swap:hover .product-image__hover {
    opacity: 1;
}

.main__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 950px) {

    .main__grid--shop,
    .main__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main__grid--shop {
        grid-template-rows: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .main__grid--shop,
    .main__grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .image-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

hr {
    width: 100%;
    height: 0;

    margin: 0;
    padding: 0;

    border: 0;
    border-top: 6px solid #000;

    flex: 0 0 auto;
    align-self: stretch;
}

footer,
article {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

article {
    gap: 1rem;
    margin-bottom: 1rem;
}

article h3 {
    text-align: start;
}