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

html,
body {
    margin: 0;
    padding: 0;
}

/* Typography */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: #fff;
    background: #000;
}

/* Language switch */
.lang-switch {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

a:hover {
    opacity: 1;
}

.lang-switch a {
    margin-left: 0.5rem;
}

.lang-switch a[aria-current="page"] {
    opacity: 1;
    text-decoration: underline;
}

/* Hero sections */
.hero {
    position: relative;
    min-height: 100vh;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    padding: 20vh 2rem;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0));
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 1rem;
}
.hero h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 1rem;
}

.hero p {
    font-size: 1.125rem;
    margin: 0 0 10px 0;
}

.address a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    text-decoration: none;
}

.icon-pin {
    display: inline-flex;
    line-height: 1;
    color: currentColor;
}