@font-face {
    font-family: "PorscheNext";
    src: url("assets/font/911porschav3.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
:root {
    --black: #050505;
    --panel: #0c0c0e;
    --panel-2: #121214;
    --ink: #f5f5f3;
    --dim: #97979e;
    --hairline: rgba(255, 255, 255, 0.12);
    --champagne: #f5f5f5;
    --radius: 18px;
    --max: 1200px;
    --font: "Cormorant Garamond", "Georgia", "Times New Roman", serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--black);
    color: var(--ink);
    font-family: var(--font);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 30px;
}
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rv.in {
    opacity: 1;
    transform: none;
}

/* nav */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition:
        background 0.45s,
        border-color 0.45s,
        backdrop-filter 0.45s;
}
nav.scrolled {
    background: rgba(5, 5, 5, 0.68);
    backdrop-filter: saturate(160%) blur(22px);
    border-bottom-color: var(--hairline);
}
.navin {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height 0.45s;
    position: relative;
}
nav.scrolled .navin {
    height: 58px;
}
.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: auto;
    width: 16.666vw;
    max-width: 240px;
    min-width: 120px;
    display: block;
}
.nav-back {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dim);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
}
.nav-back:hover {
    color: var(--champagne);
}
.nav-back::before {
    content: "←";
    font-size: 14px;
}
.nav-back,
.fineprint {
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

/* page hero — deep ocean teal gradient */
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            1000px 480px at 50% -10%,
            rgba(80, 120, 180, 0.14),
            transparent 65%
        ),
        radial-gradient(
            700px 400px at 90% 100%,
            rgba(80, 120, 180, 0.08),
            transparent 60%
        ),
        linear-gradient(180deg, #08090d 0%, #050505 80%);
}

.page-hero .bgmage {
    position: absolute;
    inset: 0;
    background: url("../assets/division/IMG_0905.jpeg") center/cover no-repeat;
}

.page-hero .content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 30px 96px;
    transition:
        opacity 0.5s,
        transform 0.5s;
}

.page-hero .p-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

/* bottom-left CTA */
.protocols {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 30px 96px;
}
.proto a {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    background: var(--champagne);
    color: #000;
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.proto a:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 50px rgba(200, 165, 88, 0.35);
}

/* footer */
footer {
    border-top: 1px solid var(--hairline);
    padding: 80px 0 44px;
    font-size: 13px;
    color: var(--dim);
    text-align: center;
}
.foot-logo {
    display: inline-block;
    margin-bottom: 18px;
}
.foot-logo img {
    height: auto;
    width: 14vw;
    max-width: 200px;
    min-width: 100px;
    display: block;
}
.foot-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 44px;
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5c5c63;
}
.foot-powered img {
    height: auto;
    width: 7vw;
    max-width: 90px;
    min-width: 56px;
    opacity: 0.55;
    display: block;
}
.foot-powered span {
    color: #5c5c63;
}
.foot-address {
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 13px;
    color: var(--dim);
    line-height: 1.8;
    margin-bottom: 36px;
}
.foot-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 48px;
}
.foot-socials a {
    color: var(--dim);
    font-size: 18px;
    line-height: 1;
    transition: color 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}
.foot-socials a:hover {
    color: var(--champagne);
}
.foot-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.fineprint {
    border-top: 1px solid var(--hairline);
    padding-top: 26px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11.5px;
    color: #5c5c63;
    letter-spacing: 0.04em;
    font-family:
        "SF Pro Display", "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

@media (max-width: 940px) {
    .protocols {
        text-align: center;
    }
    .page-hero {
        min-height: auto;
        padding-bottom: 60px;
    }
}

/* Custom cursor — fine-pointer only */
@media (pointer: fine) {
    body {
        cursor: none;
    }
}
.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--champagne);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition:
        opacity 0.3s,
        width 0.25s,
        height 0.25s;
    top: 0;
    left: 0;
    display: none;
}
.cursor-ring {
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(200, 165, 88, 0.32);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.35s ease,
        height 0.35s ease,
        border-color 0.35s,
        opacity 0.3s;
    top: 0;
    left: 0;
    display: none;
}
@media (pointer: fine) {
    .cursor-dot,
    .cursor-ring {
        display: block;
    }
}
