body {
    margin: 0;
}

:root {
    --logo-height: clamp(50px, 4vw, 80px);
}

*, *::before, *::after {
    box-sizing: border-box;
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    background-image: url("../assets/images/hero/hero-2560x1440.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: clamp(15px, 1.5vw, 30px);
    box-sizing: border-box;
}

.logo {
    display: block;
    height: var(--logo-height);
    width: auto;
}

.nav {
    display: inline-block;
    margin-left: clamp(60px, 8vw, 180px);
    transform: translateY(clamp(0px, 0.2vw, 3px));
}
.nav-separator {
    display: inline-block;
    width: 1px;
    height: clamp(12px, calc(var(--logo-height) * 0.22), 18px);
    background-color: #000000;
    margin: 0 5px;
    vertical-align: middle;
}
.nav-link {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(12px, calc(var(--logo-height) * 0.25), 20px);
    line-height: 1.1;
    color: #000000;
    text-decoration: none;
}
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom);
}
.footer-text {
    padding-right: 10px;
    padding-bottom: 10px;
    text-align: right;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(11px, calc(var(--logo-height) * 0.18), 16px);
    line-height: 1.3;
    color: #000000;
}
/* ABOUT Scene */
.nav-link-current {
    pointer-events: none;
    cursor: default;
    display: inline-block;
    padding-bottom: 1px;
    opacity: 0.25;
}
.about-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    background-image: url("../assets/images/hero/hero-2560x1440.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* opacity about-hero */
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, 0.70);
    pointer-events: none;
}
.about-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(150px, 18vh, 220px) clamp(18px, 4vw, 40px) clamp(120px, 20vh, 180px);
    color: #111111;
}
.about-content h1 {
    margin: 0 0 12px;
    padding-left: 0;
    transform: translateX(-0.8rem);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 4vw, 32px);
    line-height: 1.1;
    text-indent: 0;
}
.about-content p {
    margin: 0;
    max-width: 70ch;
    padding-top: 4px;
    text-indent: 1.5em;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.1vw, 20px);
    line-height: 1.6;
}