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

body {
    font-family: 'Archivo', sans-serif;
    background-color: #f2f0eb;
    color: #1a1a1a;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ── HEADER ── */
header {
    padding: 50px 36px 0;
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
    margin-bottom: 70px;
}

nav a {
    text-decoration: none;
    color: inherit;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.45;
}

nav a[aria-current="page"] {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.header-secondary nav a[aria-current="page"] {
    text-decoration: none;
}

nav .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.identity {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    width: 100%;
}

.identity span {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.identity span:first-child {
    hyphens: none;
}

/* ── HERO ── */
main {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.hero-wrapper {
    position: absolute;
    right: 36px;
    bottom: 36px;
    width: 60%;
    height: calc(55vh + 40px);
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── HAMBURGER ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── HEADER SECONDAIRE ── */
.header-secondary {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 50px 36px 0;
}

.header-secondary nav {
    position: static;
    margin-bottom: 0;
    justify-content: flex-end;
    gap: clamp(14px, 2.5vw, 36px);
    flex-wrap: nowrap;
}

.identity-secondary {
    text-decoration: none;
    color: inherit;
    font-size: clamp(13px, 2.5vw, 30px);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.header-secondary nav a {
    font-size: clamp(13px, 2.5vw, 30px);
    white-space: nowrap;
}

.identity-secondary:hover {
    opacity: 0.45;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .header-secondary {
        padding: 28px 5% 0;
        align-items: center;
        position: relative;
        z-index: 200;
    }

    .hamburger {
        display: flex;
    }

    .header-secondary nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #f2f0eb;
        z-index: 150;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 100px;
        margin-bottom: 0;
        padding-bottom: 20vh;
        -webkit-overflow-scrolling: touch;
    }

    .header-secondary nav.is-open {
        display: flex;
    }

    .header-secondary nav.is-open a {
        font-size: 30px;
    }

    .hamburger.is-open {
        position: fixed;
        top: 28px;
        right: 5%;
        z-index: 200;
    }
}

@media (max-width: 768px) {
    header {
        padding: 28px 5% 0;
    }

    nav {
        margin-bottom: 40px;
    }

    nav a,
    .identity span {
        font-size: 18px;
    }

    .identity {
        grid-template-columns: min-content min-content;
        justify-content: space-between;
    }

    .identity span:last-child {
        text-align: right;
    }

    .hero-wrapper {
        right: 5%;
        bottom: 5%;
        width: 80%;
    }
}

@media (max-width: 480px) {
    header {
        padding: 20px 5% 0;
    }

    nav {
        margin-bottom: 28px;
    }

    nav a,
    .identity span {
        font-size: 13px;
    }

    .identity {
        grid-template-columns: min-content min-content;
        justify-content: space-between;
    }

    .identity span:last-child {
        text-align: right;
    }

    .hero-wrapper {
        right: 5%;
        bottom: 5%;
        width: 90%;
    }
}