/*
-----------
Design
-----------
*/
:root {
    --red: #D82C2E;
    --white: #FFFFFF;
    --footer-bg: #111111;
    --nav-h: 78px;
    --ease: 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    --font-condensed: 'Barlow Condensed', sans-serif;
}
/*
-----------
Global
-----------
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { min-height: 100%; } body { min-height: 100%; background: #0a0a0a; color: var(--white); font-family: 'Barlow', sans-serif; overflow-x: hidden; }
/*
-----------
Skip Link
-----------
*/

/*
-----------
Navigation
-----------
*/
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-h);
    z-index: 20;
    padding: 18px 28px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease;
}
.site-nav.nav--scrolled {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__logo { display: inline-block; transition: opacity 0.2s; }
.nav__logo:hover { opacity: 0.8; }
.nav__logo img { height: 42px; width: auto; }
/*
-----------
Hero
-----------
*/
.hero { position: relative; width: 100%; height: 100vh; min-height: 560px; overflow: hidden; --split: 50%; }
.hero__left { left: 0; width: var(--split); background: url('../homepage_images/left_side_background.webp') center / cover no-repeat; }
.hero__left::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); pointer-events: none; z-index: 0; }
.hero__right { right: 0; width: calc(100% - var(--split)); background: url('../homepage_images/profile_image.webp') center / cover no-repeat; }
/*
-----------
Hero — Hover States
-----------
*/
.hero.hover-left { --split: 65%; }
.hero.hover-left .hero__right { filter: blur(3px) brightness(0.45); }
.hero.hover-left .hero__right-content { opacity: 0.15; }
.hero.hover-right { --split: 35%; }
.hero.hover-right .hero__left { filter: blur(3px) brightness(0.45); }
.hero.hover-right .hero__left-content { opacity: 0.15; }
/*
-----------
Hero — Content
-----------
*/
.hero__left,
.hero__right { position: absolute; top: 0; bottom: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: width var(--ease), filter var(--ease); }
.hero__left-content,
.hero__right-content { position: relative; z-index: 1; width: 78%; max-width: 460px; min-height: 420px; padding-bottom: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; transition: opacity 0.4s ease; }
.hero__right-content { padding-top: 8vh; align-items: center; }
.hero__right-content .hero__tagline { align-self: center; white-space: nowrap; font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.hero__right-content .btn-outline { align-self: center; margin-top: auto; }
.hero__label { font-family: var(--font-condensed); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 6px; opacity: 0.9; color: var(--white); }
.hero__label span { font-weight: 900; margin-right: 2px; color: var(--red); }
.hero__sub { font-size: 1.1rem; font-weight: 300; color: var(--white); margin-bottom: 28px; letter-spacing: 0.02em; }
.hero__statement { font-family: var(--font-condensed); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 700; line-height: 1.1; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 40px; color: var(--white); }
.hero__statement strong { color: var(--red); font-weight: 900; }
.hero__tagline { font-family: var(--font-condensed); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; margin-bottom: 40px; white-space: nowrap; }
.hero__tagline .arrow { color: rgba(255,255,255,0.6); font-weight: 300; margin: 0 6px; }
/*
-----------
Button
-----------
*/
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1.5px solid var(--white); border-bottom-color: var(--red); background: transparent; color: var(--white); font-family: var(--font-condensed); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s; }
.btn-outline::after { content: '›'; font-size: 1.15em; transition: transform 0.2s; }
.btn-outline:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-outline:hover::after { transform: translateX(3px); }
/*
-----------
Footer
-----------
*/
.site-footer { background: var(--footer-bg); padding: 52px 0 28px; }
.footer__col h2 { font-family: var(--font-condensed); font-size: 0.88rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.16); }
.footer__col nav { display: flex; flex-direction: column; gap: 30px; margin-top: 16px; }
.footer__col a { font-size: 0.95rem; font-weight: 300; color: var(--white); text-decoration: none; display: inline-block; transition: color 0.2s, transform 0.2s; }
.footer__col a:hover { color: var(--red); transform: translateY(-2px); }
.footer__col--contact { text-align: left; }
.footer__contact-label { font-family: var(--font-condensed); font-size: 1.4rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 8px; white-space: nowrap; margin-bottom: 10px; }
.footer__email { font-size: 0.95rem; font-weight: 400; color: var(--white); text-decoration: none; position: relative; display: inline-block; }
.footer__email::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--white); transform: scaleX(0); transform-origin: left; transition: transform 0.25s; }
.footer__email:hover::after { transform: scaleX(1); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 0 0 20px; }
.footer__copy { text-align: center; font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; max-width: 760px; margin: 0 auto; padding: 0 24px; line-height: 1.5; }