:root {
    --ink: #151719;
    --ink-soft: #24282a;
    --paper: #f4f2ed;
    --white: #ffffff;
    --burgundy: #8c2638;
    --burgundy-bright: #b33a50;
    --silver: #b8c3c5;
    --muted: #677174;
    --line: rgba(21, 23, 25, .12);
    --radius: 28px;
    --sans: Inter, "Segoe UI", Arial, sans-serif;
    --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    min-width: 320px;
    min-height: 100svh;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 8% 0%, rgba(140, 38, 56, .12), transparent 27rem),
        var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell {
    width: min(100%, 1440px);
    min-height: 100svh;
    margin: 0 auto;
    padding: 0 clamp(22px, 4vw, 68px);
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.site-header {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(21, 23, 25, .13));
}

.brand strong,
.brand small { display: block; }

.brand strong {
    font-size: 16px;
    letter-spacing: -.03em;
}

.brand small {
    margin-top: 2px;
    color: var(--burgundy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
}

.header-meta strong { color: var(--ink); }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3d9b62;
    box-shadow: 0 0 0 5px rgba(61, 155, 98, .12);
}

.hero {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
    gap: clamp(44px, 7vw, 110px);
    padding: clamp(22px, 4vh, 50px) 0;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 670px;
    animation: rise .7s both cubic-bezier(.2, .8, .2, 1);
}

.eyebrow {
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--burgundy);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--burgundy);
}

.hero h1 {
    margin: 0;
    font: 500 clamp(56px, 6.1vw, 92px)/.91 var(--serif);
    letter-spacing: -.065em;
}

.hero h1 em {
    color: var(--burgundy);
    font-weight: 500;
}

.hero-description {
    max-width: 560px;
    margin: 30px 0 0;
    color: var(--muted);
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
    min-width: 194px;
    background: var(--burgundy);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(112, 24, 40, .24);
}

.button-primary:hover { background: #741d2d; }

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, .58);
    color: var(--ink-soft);
}

.button-secondary:hover { background: var(--white); }

.quick-facts {
    margin: clamp(30px, 4vh, 52px) 0 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.quick-facts li {
    min-width: 112px;
    padding: 0 26px;
    border-left: 1px solid var(--line);
}

.quick-facts li:first-child { padding-left: 0; border-left: 0; }
.quick-facts strong,
.quick-facts span { display: block; }
.quick-facts strong { font: 600 19px var(--serif); }
.quick-facts span { margin-top: 5px; color: var(--muted); font-size: 9px; }

.hero-visual {
    position: relative;
    width: min(100%, 530px);
    aspect-ratio: 1 / .94;
    justify-self: end;
    display: grid;
    place-items: center;
    animation: rise .85s .1s both cubic-bezier(.2, .8, .2, 1);
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(140, 38, 56, .16);
    border-radius: 50%;
}

.orbit-one { inset: 2%; }
.orbit-two { inset: 12%; border-color: rgba(21, 23, 25, .11); }

.court-card {
    position: relative;
    width: 82%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: var(--ink);
    color: white;
    box-shadow: 0 32px 70px rgba(21, 23, 25, .24);
    transform: rotate(4deg);
}

.court-card::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 17, 18, .52) 0%, transparent 38%, rgba(13, 17, 18, .08) 58%, rgba(13, 17, 18, .58) 100%);
    pointer-events: none;
}

.court-card::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: auto -20% -30% 20%;
    height: 62%;
    border-radius: 50%;
    background: rgba(140, 38, 56, .24);
    filter: blur(35px);
    pointer-events: none;
}

.court-label {
    position: absolute;
    z-index: 3;
    top: 22px;
    left: 24px;
    color: white;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    text-transform: uppercase;
}

.court-card img {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.92) contrast(1.04);
}

.next-slot {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 20px;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    text-align: right;
}

.next-slot span,
.next-slot strong { display: block; }
.next-slot span { color: var(--silver); font-size: 8px; }
.next-slot strong { margin-top: 3px; font: 500 15px var(--serif); }

.shuttle {
    position: absolute;
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--burgundy);
    font-size: 28px;
    box-shadow: 0 13px 30px rgba(21, 23, 25, .14);
}

.shuttle-one { top: 11%; right: 1%; transform: rotate(-25deg); }
.shuttle-two { left: 4%; bottom: 15%; transform: rotate(145deg) scale(.72); opacity: .7; }

.site-footer {
    min-height: 74px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
    font-size: 10px;
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.site-footer a:hover { color: var(--burgundy); }
.site-footer svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.site-footer p { margin: 0; color: var(--burgundy); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .site-shell { padding-inline: 24px; }
    .site-header { min-height: 76px; }
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
        gap: 28px;
    }
    .hero h1 { font-size: clamp(48px, 7.5vw, 68px); }
    .hero-visual { max-width: 390px; }
    .court-card { width: 86%; }
}

@media (max-width: 700px) {
    .site-shell { padding-inline: 18px; }
    .site-header { min-height: 70px; }
    .brand img { width: 46px; height: 46px; }
    .brand strong { font-size: 14px; }
    .header-meta span:not(.status-dot) { display: none; }
    .header-meta { font-size: 10px; }
    .hero {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 18px;
        padding: 16px 0 20px;
    }
    .hero-copy { text-align: center; }
    .eyebrow { margin-bottom: 14px; justify-content: center; font-size: 8px; }
    .eyebrow::before { width: 24px; }
    .hero h1 { font-size: clamp(43px, 13vw, 61px); line-height: .94; }
    .hero-description { max-width: 480px; margin: 16px auto 0; font-size: 12px; line-height: 1.55; }
    .hero-actions { margin-top: 20px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 8px; }
    .button { min-width: 0; min-height: 49px; padding: 0 12px; font-size: 10px; }
    .button svg { width: 16px; height: 16px; }
    .quick-facts { margin-top: 20px; justify-content: center; }
    .quick-facts li { min-width: 0; flex: 1; padding: 0 12px; }
    .quick-facts strong { font-size: 15px; }
    .quick-facts span { font-size: 8px; }
    .hero-visual { order: -1; width: 100%; max-width: 280px; aspect-ratio: 1/.7; justify-self: center; }
    .orbit-one { inset: -7% 2%; }
    .orbit-two { inset: 3% 12%; }
    .court-card { width: 84%; border-radius: 20px; }
    .court-label { top: 13px; left: 15px; font-size: 6px; }
    .next-slot { right: 11px; bottom: 11px; padding: 7px 9px; }
    .next-slot span { font-size: 6px; }
    .next-slot strong { font-size: 11px; }
    .shuttle { width: 36px; height: 36px; font-size: 20px; }
    .shuttle-one { top: -1%; right: 10%; }
    .shuttle-two { left: 11%; bottom: 2%; }
    .site-footer { min-height: 58px; justify-content: center; text-align: center; }
    .site-footer p { display: none; }
}

@media (max-width: 390px), (max-height: 720px) and (max-width: 700px) {
    .site-header { min-height: 62px; }
    .hero { gap: 11px; padding: 8px 0 12px; }
    .hero-visual { max-width: 225px; }
    .hero h1 { font-size: clamp(39px, 12vw, 49px); }
    .hero-description { margin-top: 12px; }
    .hero-actions { margin-top: 14px; }
    .quick-facts { margin-top: 14px; }
    .site-footer { min-height: 48px; }
}

@media (max-width: 350px) and (max-height: 600px) {
    .site-header { min-height: 58px; }
    .hero { gap: 7px; padding-block: 5px 8px; }
    .hero-visual { max-width: 198px; }
    .hero h1 { font-size: 38px; }
    .hero-description { margin-top: 9px; font-size: 10.5px; line-height: 1.4; }
    .hero-actions { margin-top: 10px; }
    .button { min-height: 45px; }
    .quick-facts { margin-top: 10px; }
    .site-footer { min-height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
