@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

html, body {
    margin: 0;
    padding: 0;
    background: #03080f;
    overflow-x: hidden;
}

/* ---- Contact ---- */

.ContactWrapper {
    position: fixed;
    top: calc(50% - 37.5vh - 37px);
    left: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    z-index: 200;
}

.ContactText {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(190, 228, 251, 0.75);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.ContactLine {
    height: 1.5px;
    width: 32px;
    background: rgba(190, 228, 251, 0.35);
    transition: width 0.35s ease, background 0.3s ease;
}

.ContactWrapper:hover .ContactText {
    color: rgba(190, 228, 251, 1);
    text-shadow:
        0 0 24px rgba(190, 228, 251, 0.5),
        0 0 60px rgba(34, 211, 238, 0.2);
}

.ContactWrapper:hover .ContactLine {
    width: 95px;
    background: rgba(190, 228, 251, 0.65);
}

/* ---- Menu ---- */

.MenuContainer {
    position: fixed;
    top: calc(50% - 37.5vh - 37px);
    right: 28px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    z-index: 200;
}

.MenuWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    cursor: pointer;
}

.MenuText {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(190, 228, 251, 0.75);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.MenuLine {
    height: 1.5px;
    width: 32px;
    background: rgba(190, 228, 251, 0.35);
    transition: width 0.35s ease, background 0.3s ease;
}

.MenuWrapper:hover .MenuText {
    color: rgba(190, 228, 251, 1);
    text-shadow:
        0 0 24px rgba(190, 228, 251, 0.5),
        0 0 60px rgba(34, 211, 238, 0.2);
}

.MenuWrapper:hover .MenuLine {
    width: 65px;
    background: rgba(190, 228, 251, 0.65);
}

.MenuDropdown {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    white-space: nowrap;
    transition: max-width 0.35s ease, opacity 0.3s ease;
    padding-right: 24px;
}

.MenuDropdown.open {
    max-width: 400px;
    opacity: 1;
}

.MenuNavItem {
    font-family: "Google Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(190, 228, 251, 0.60);
    text-decoration: none;
    padding: 0 16px;
    border-left: 1px solid rgba(190, 228, 251, 0.12);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.MenuNavItem:first-child { border-left: none; }

.MenuNavItem:hover {
    color: rgba(190, 228, 251, 1);
    text-shadow: 0 0 20px rgba(190, 228, 251, 0.4);
}

/* ---- Aurora Hero ---- */

.AuroraHero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#auroraCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.AuroraOverlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ---- Hero Phases ---- */

.HeroPhase {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* ---- Phase 1: Typewriter ---- */

.TypewriterContainer {
    display: flex;
    align-items: center;
    max-width: 700px;
    padding: 0 40px;
    text-align: center;
}

.TypewriterText {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    letter-spacing: 0.04em;
    color: rgba(190, 228, 251, 0.85);
    line-height: 1.6;
}

.TypewriterCursor {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: rgba(34, 211, 238, 0.9);
    animation: cursorBlink 1s step-end infinite;
    margin-left: 1px;
    user-select: none;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ---- Phase 2: Rotating Text ---- */

.RotatingLine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.RotatingStatic {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(0.65rem, 1.4vw, 0.9rem);
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(190, 228, 251, 0.45);
}

.RotatingWrapper {
    position: relative;
    /* match the word's font-size so em resolves correctly */
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    height: 1.25em;
    overflow: hidden;
    width: 95vw;
    max-width: 1000px;
    /* soft fade at top and bottom instead of hard clip */
    -webkit-mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
    mask-image: linear-gradient(to bottom,
        transparent 0%,
        black 18%,
        black 82%,
        transparent 100%
    );
}

.RotatingWord {
    position: absolute;
    left: 50%;
    font-family: "Berkshire Swash", serif;
    font-size: 1em; /* inherits from .RotatingWrapper */
    color: #bee4fb;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 40px rgba(190, 228, 251, 0.55),
        0 0 100px rgba(34, 211, 238, 0.22);
    opacity: 0;
    white-space: nowrap;
    transform: translateX(-50%) translateY(110%);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.RotatingWord.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.RotatingWord.exit {
    opacity: 0;
    transform: translateX(-50%) translateY(-110%);
}

/* ---- Phase 3: Profile Card ---- */

/* ---- Profile Card Wrapper — rotating border glow lives here ---- */
.ProfileCardWrapper {
    position: relative;
    padding: 2px;           /* this gap is where the beam travels */
    overflow: hidden;
    background: rgba(190, 228, 251, 0.08); /* faint resting border */
    pointer-events: all;
}

/* The spinning conic beam */
.ProfileCardWrapper::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        rgba(190, 228, 251, 0.04),
        rgba(34,  211, 238, 0.95) 50deg,
        rgba(190, 228, 251, 0.55) 80deg,
        rgba(190, 228, 251, 0.04) 110deg,
        rgba(190, 228, 251, 0.04)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotateBorderGlow 3s linear infinite;
    animation-play-state: paused;
    z-index: 0;
}

.ProfileCardWrapper:hover::before {
    opacity: 1;
    animation-play-state: running;
}

@keyframes rotateBorderGlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ProfileCard {
    position: relative;
    z-index: 1;
    width: clamp(260px, 26vw, 340px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Image area can be slightly glassy — body section is solid below */
    background: rgba(4, 12, 22, 0.82);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 80px rgba(34, 211, 238, 0.07),
        0 40px 100px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    cursor: default;
    transition: box-shadow 0.4s ease;
}

.ProfileCardWrapper:hover .ProfileCard {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0 60px rgba(34, 211, 238, 0.2),
        0 40px 100px rgba(0, 0, 0, 0.55);
}

.ProfileCardSheen {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.02) 55%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
}

.ProfileImage {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    padding: 24px 16px 0;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 -4px 18px rgba(34, 211, 238, 0.1));
}

.ProfileCardBody {
    width: 100%;
    padding: 20px 26px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    /* Fully opaque — glow can never bleed through the text area */
    background: rgb(3, 9, 18);
    border-top: 1px solid rgba(190, 228, 251, 0.1);
}

.ProfileName {
    font-family: "Berkshire Swash", serif;
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    color: #bee4fb;
    margin: 0;
    font-weight: normal;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 20px rgba(190, 228, 251, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.9);
}

.ProfileDivider {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(190, 228, 251, 0.28),
        transparent
    );
    margin: 2px 0;
}

.ProfileBioLines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.ProfileBio {
    font-family: "Google Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 0.3px;
    color: rgba(190, 228, 251, 0.65);
    margin: 0;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95);
}

.ProfileResumeLink {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    padding: 11px 32px;
    font-family: "Google Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(34, 211, 238, 0.90);
    text-decoration: none;
    border: 1px solid rgba(34, 211, 238, 0.40);
    background: rgba(34, 211, 238, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 0 18px rgba(34, 211, 238, 0.12),
        0 0 40px rgba(34, 211, 238, 0.06);
    transition:
        color        0.3s ease,
        border-color 0.3s ease,
        background   0.3s ease,
        text-shadow  0.3s ease,
        box-shadow   0.3s ease;
}

.ProfileResumeLink:hover {
    color: rgba(34, 211, 238, 1);
    border-color: rgba(34, 211, 238, 0.70);
    background: rgba(34, 211, 238, 0.10);
    text-shadow: 0 0 22px rgba(34, 211, 238, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 28px rgba(34, 211, 238, 0.22),
        0 0 60px rgba(34, 211, 238, 0.10);
}

/* ---- Scroll Hint ---- */

@keyframes scrollHintGlow {
    0%, 100% { opacity: 0.35; filter: drop-shadow(0 0 0px rgba(96, 165, 250, 0)); }
    50%       { opacity: 1.00; filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.70)); }
}

.ScrollHint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: all;
    cursor: pointer;
    animation: scrollHintGlow 2.6s ease-in-out infinite;
}

.ScrollHint:hover {
    animation-play-state: paused;
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.70));
}

.ScrollHintLine {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(96, 165, 250, 0.85), transparent);
    transition: height 0.3s ease;
}

.ScrollHint:hover .ScrollHintLine {
    height: 60px;
}

.ScrollHintText {
    font-family: "Google Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: rgba(147, 197, 253, 1);
    text-transform: uppercase;
}

/* ---- About Strip ---- */

.AboutStrip {
    background: #091520;
}

/* Full-bleed hero image */
.StripHero {
    position: relative;
    width: 100%;
    height: clamp(420px, 68vh, 740px);
    overflow: hidden;
}

.StripHero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: brightness(0.72) contrast(1.08);
}

.StripHeroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 21, 31, 0.20) 0%,
        transparent 28%,
        rgba(9, 21, 31, 0.50) 62%,
        #091520 100%
    );
}

/* Flowing identity content */
.StripContent {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 48px) clamp(40px, 10vw, 120px) clamp(72px, 9vw, 110px);
}

/* Two-column row: label | content */
.StripIdentity {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 clamp(32px, 5vw, 64px);
    padding: clamp(38px, 5vw, 58px) 0;
    align-items: start;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.StripIdentity + .StripIdentity {
    border-top: 1px solid rgba(34, 211, 238, 0.07);
}

.StripIdentity.revealed {
    opacity: 1;
    transform: none;
}

.StripIdentityLabel {
    font-family: "Google Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(34, 211, 238, 0.6);
    padding-top: 7px;
    position: sticky;
    top: 60px;
}

.StripIdentityHeadline {
    font-family: "Berkshire Swash", serif;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    color: rgba(190, 228, 251, 0.92);
    font-weight: normal;
    margin: 0 0 20px;
    line-height: 1.35;
}

.StripIdentityBody {
    font-family: "Google Sans", sans-serif;
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    line-height: 1.95;
    color: rgba(190, 228, 251, 0.55);
    margin: 0 0 14px;
}

.StripIdentityBody strong {
    color: rgba(190, 228, 251, 0.85);
    font-weight: 500;
}

/* Skill pills — underline style */
.SkillPills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 26px;
}

.SkillPills span {
    font-family: "Google Sans", sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(34, 211, 238, 0.75);
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
    cursor: default;
}

.SkillPills span:hover {
    color: rgba(34, 211, 238, 1);
    border-color: rgba(34, 211, 238, 0.65);
}

/* Country list */
.CountryList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.CountryList span {
    font-family: "Google Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(190, 228, 251, 0.6);
    border: 1px solid rgba(190, 228, 251, 0.12);
    padding: 5px 13px;
    transition: border-color 0.2s ease, color 0.2s ease;
    cursor: default;
}

.CountryList span:hover {
    color: rgba(190, 228, 251, 0.9);
    border-color: rgba(190, 228, 251, 0.3);
}

/* ---- Footer ---- */

.AboutFooter {
    background: #06111a;
    padding: 28px clamp(40px, 10vw, 160px);
    display: flex;
    justify-content: flex-end;
}

.Copyright {
    font-family: "Google Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(190, 228, 251, 0.28);
}

/* ================================================================
   MOBILE — Both orientations
   ================================================================ */
@media (max-width: 900px) {

    /* Use small viewport height so the hero never extends behind the
       iOS Safari toolbar. Falls back to 100vh on older browsers. */
    .AuroraHero {
        height: 100svh;
    }

    /* Push scroll hint above the iOS home-indicator / browser toolbar */
    .ScrollHint {
        bottom: calc(36px + env(safe-area-inset-bottom, 0px));
    }

    /* Nav: fixed to top, smaller text */
    .ContactWrapper {
        top: 20px;
        left: 16px;
    }
    .ContactText { font-size: 11px; letter-spacing: 3px; }
    .ContactLine { width: 22px; }

    .MenuContainer {
        top: 20px;
        right: 16px;
    }
    .MenuText { font-size: 11px; letter-spacing: 3px; }
    .MenuLine { width: 22px; }

    /* Cap dropdown to avoid overlapping Contact */
    .MenuDropdown.open { max-width: 175px; }
    .MenuNavItem {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 0 9px;
    }

    /* Strip: tighter side padding on mobile */
    .StripContent {
        padding-left: clamp(20px, 5vw, 60px);
        padding-right: clamp(20px, 5vw, 60px);
    }

    /* StripIdentity: collapse to single column (label above content) */
    .StripIdentity {
        grid-template-columns: 1fr;
        gap: 10px 0;
        padding: clamp(28px, 4vw, 44px) 0;
    }

    .StripIdentityLabel {
        position: static; /* remove sticky on mobile */
        padding-top: 0;
        font-size: 9px;
        letter-spacing: 4px;
    }

    .StripIdentityHeadline {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        margin-bottom: 14px;
    }

    .StripIdentityBody {
        font-size: clamp(0.85rem, 3vw, 0.97rem);
        line-height: 1.85;
    }
}

/* ================================================================
   MOBILE — Portrait: hide canvas, static gradient on hero
   ================================================================ */
@media (max-width: 768px) and (orientation: portrait) {

    /* Hide the canvas; gradient goes on the section itself */
    #auroraCanvas { display: none; }

    .AuroraHero {
        background:
            radial-gradient(ellipse 160% 70% at 50% 22%, rgba(34, 211, 238, 0.22) 0%, transparent 65%),
            radial-gradient(ellipse 110% 55% at 15% 12%, rgba(52, 211, 153, 0.16) 0%, transparent 60%),
            radial-gradient(ellipse 90%  50% at 85% 32%, rgba(129, 140, 248, 0.14) 0%, transparent 58%),
            radial-gradient(ellipse 130% 40% at 50% 50%, rgba(13,  148, 136, 0.10) 0%, transparent 70%),
            linear-gradient(to bottom, #020709 0%, #050d16 50%, #09151f 100%);
    }

    /* Typewriter: switch to block so cursor flows inline after text */
    .TypewriterContainer {
        display: block;
        text-align: center;
        padding: 0 28px;
    }

    /* Scroll hint: ensure it sits above the phase overlays */
    .ScrollHint {
        z-index: 10;
    }

    /* Profile card: compact for narrow screens */
    .ProfileCard {
        width: clamp(220px, 72vw, 290px);
    }

    .ProfileImage {
        max-height: 180px;
        padding: 16px 12px 0;
    }

    .ProfileCardBody {
        padding: 14px 18px 20px;
        gap: 8px;
    }

    .ProfileBio {
        font-size: 11px;
    }

    .ProfileResumeLink {
        margin-top: 8px;
        padding: 9px 22px;
        font-size: 10px;
        letter-spacing: 4px;
    }

    /* Shorter hero image in the strip — saves vertical space */
    .StripHero {
        height: clamp(200px, 42vh, 360px);
    }
}

/* ================================================================
   MOBILE — Landscape: hide canvas, static gradient, tighter hero
   ================================================================ */
@media (max-width: 900px) and (orientation: landscape) {

    #auroraCanvas { display: none; }

    .AuroraHero {
        background:
            radial-gradient(ellipse 160% 70% at 50% 22%, rgba(34, 211, 238, 0.22) 0%, transparent 65%),
            radial-gradient(ellipse 110% 55% at 15% 12%, rgba(52, 211, 153, 0.16) 0%, transparent 60%),
            radial-gradient(ellipse 90%  50% at 85% 32%, rgba(129, 140, 248, 0.14) 0%, transparent 58%),
            radial-gradient(ellipse 130% 40% at 50% 50%, rgba(13,  148, 136, 0.10) 0%, transparent 70%),
            linear-gradient(to bottom, #020709 0%, #050d16 50%, #09151f 100%);
    }

    .MenuContainer {
        top: 14px;
        right: max(16px, env(safe-area-inset-right, 16px));
    }
    .ContactWrapper {
        top: 14px;
        left: max(16px, env(safe-area-inset-left, 16px));
    }

    /* Push all hero phase content away from the notch on both sides.
       max() ensures a minimum of 44px even if env() is 0 or unsupported. */
    .HeroPhase {
        padding-left:  max(env(safe-area-inset-left,  0px), 44px);
        padding-right: max(env(safe-area-inset-right, 0px), 44px);
    }

    /* Strip content (below hero) also needs notch clearance */
    .StripContent {
        padding-left:  max(env(safe-area-inset-left,  0px), clamp(20px, 5vw, 44px));
        padding-right: max(env(safe-area-inset-right, 0px), clamp(20px, 5vw, 44px));
    }

    /* Typewriter: block layout so cursor trails inline after text */
    .TypewriterContainer {
        display: block;
        text-align: center;
        padding: 0 28px;
    }

    /* Scroll hint: ensure it sits above the phase overlays */
    .ScrollHint {
        z-index: 10;
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    /* Hide the vertical line in landscape — saves space for the card */
    .ScrollHintLine {
        display: none;
    }

    /* Profile card: horizontal layout to fit the short landscape viewport */
    .ProfileCard {
        width: clamp(380px, 72vw, 520px);
        flex-direction: row;
        align-items: stretch;
    }

    .ProfileImage {
        width: clamp(90px, 20vw, 130px);
        max-height: none;
        height: auto;
        padding: 14px 10px 14px;
        object-fit: contain;
        object-position: center;
        flex-shrink: 0;
        align-self: center;
    }

    .ProfileCardBody {
        padding: 14px 18px 16px;
        gap: 5px;
        align-items: flex-start;
        border-top: none;
        border-left: 1px solid rgba(190, 228, 251, 0.10);
        justify-content: center;
    }

    .ProfileName {
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        text-align: left;
    }

    .ProfileTitle {
        text-align: left;
    }

    .ProfileDivider {
        align-self: flex-start;
    }

    .ProfileBioLines {
        gap: 3px;
    }

    .ProfileBio {
        font-size: 10px;
        text-align: left;
    }

    .ProfileResumeLink {
        margin-top: 6px;
        padding: 8px 18px;
        font-size: 9px;
        letter-spacing: 4px;
        align-self: flex-start;
    }

    /* Strip hero: shorter in landscape */
    .StripHero {
        height: clamp(180px, 55vw, 400px);
    }
}
