@font-face {
    font-family: 'BerlinGrotesk';
    src: url('fonts/BerliGroLig.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BerlinGrotesk';
    src: url('fonts/BerliGroMed.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
}

body { position: relative; }

/* Bird animation — fills the viewport, whole bird visible on white */
.bird {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 62% 50%;
    z-index: 0;
}

/* Intro text — top-left, red */
.intro {
    position: fixed;
    top: 1.9rem;
    left: 1.6rem;
    z-index: 2;
    width: 26em;
    max-width: 40vw;
    color: #ED1C24;
    font-family: 'BerlinGrotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(15.6px, 0.66vw + 8.4px, 19.2px);
    line-height: 1.1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.intro strong { font-weight: 700; }

/* Logo — bottom-right */
.logo {
    position: fixed;
    right: 1.8rem;
    bottom: 1.8rem;
    z-index: 2;
    width: clamp(99px, 9.9vw, 148.5px);
    height: auto;
}

/* Portrait / mobile layout */
@media (orientation: portrait) {
    .bird {
        object-position: center 50%;
    }
    .intro {
        top: 3.5vh;
        left: 5vw;
        right: 5vw;
        width: auto;
        max-width: none;
        font-size: clamp(17.2px, 4.54vw, 22.1px);
        line-height: 1.1;
    }
    .logo {
        right: 8vw;
        bottom: 8vw;
        width: clamp(95px, 28vw, 135px);
    }
}
