/* ==========================================================
   CEBU MOTOBASTERDS MC — fierce / strong / elegant
   ========================================================== */

:root {
    --bg-0: #08080a;
    --bg-1: #0d0d10;
    --bg-2: #15151a;
    --bg-3: #1d1d24;
    --line: rgba(255, 255, 255, 0.08);
    --ink: #f4f4f6;
    --ink-dim: #a8a8b3;
    --ink-mute: #6c6c78;
    --accent: #d4af37;          /* gold */
    --accent-2: #e63946;        /* crimson */
    --accent-fire: #ff6b1a;     /* ember */
    --shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.8);

    --f-display: 'Anton', 'Bebas Neue', 'Oswald', sans-serif;
    --f-head:    'Oswald', 'Bebas Neue', sans-serif;
    --f-body:    'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg-0);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: default;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }

::selection { background: var(--accent); color: #000; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.05; letter-spacing: .02em; }
.display { font-family: var(--f-display); letter-spacing: .04em; text-transform: uppercase; }

/* cursor glow for desktop */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,.10) 0%, transparent 65%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    mix-blend-mode: screen;
    transition: opacity .4s ease;
    opacity: 0;
}
@media (min-width: 992px) {
    .cursor-glow { opacity: 1; }
}

/* ============== NAV ============== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(8,8,10,.85), rgba(8,8,10,0));
    backdrop-filter: blur(0);
    transition: background .4s ease, padding .4s ease, backdrop-filter .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(8, 8, 10, 0.92);
    backdrop-filter: blur(14px);
    padding: 10px 0;
    border-bottom-color: var(--line);
}
.nav-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    display: flex; align-items: center; gap: 14px;
}
.brand-logo {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 24px rgba(212,175,55,.35);
    transition: transform .4s ease, box-shadow .4s ease;
}
.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.06); box-shadow: 0 0 30px rgba(212,175,55,.6); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--f-display); font-size: 19px; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.brand-sub  { font-size: 9px; letter-spacing: .38em; color: var(--ink-mute); margin-top: 4px; text-transform: uppercase; }
@media (max-width: 1180px) { .brand-name { font-size: 16px; letter-spacing: .06em; } }

.site-nav ul {
    display: flex; gap: 6px; list-style: none;
}
.site-nav a {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    font-family: var(--f-head);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-dim);
}
.site-nav a:hover, .site-nav a.is-active { color: var(--ink); }
.site-nav a.nav-cta {
    color: var(--accent);
    border: 1px solid var(--accent);
    margin-left: 8px;
    padding: 8px 16px;
    transition: background .25s ease, color .25s ease;
}
.site-nav a.nav-cta:hover, .site-nav a.nav-cta.is-active { background: var(--accent); color: #000; }
.site-nav a.nav-cta::after { display: none; }
.nav-cta-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent-2);
    border-radius: 50%;
    margin-left: 8px;
    vertical-align: middle;
    animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.7); } }
.site-nav a::after {
    content: '';
    position: absolute;
    left: 50%; bottom: 4px;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width .35s ease, left .35s ease;
}
.site-nav a:hover::after, .site-nav a.is-active::after { width: 60%; left: 20%; }

.nav-toggle {
    display: none;
    background: none; border: 0;
    width: 40px; height: 40px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--ink);
    margin: 6px auto;
    transition: transform .35s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 920px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 78%; max-width: 360px;
        height: 100vh;
        background: var(--bg-1);
        border-left: 1px solid var(--line);
        padding: 100px 32px 40px;
        transition: right .45s cubic-bezier(.7,.05,.25,1);
    }
    .site-nav.is-open { right: 0; }
    .site-nav ul { flex-direction: column; gap: 4px; }
    .site-nav a { font-size: 16px; padding: 14px 0; display: block; }
    .site-nav a::after { display: none; }
}

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.hero-video, .hero-poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.hero-video { filter: brightness(.55) contrast(1.05) saturate(.9); }
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(0,0,0,0) 0%, rgba(0,0,0,.85) 80%),
        linear-gradient(180deg, rgba(8,8,10,.5) 0%, rgba(8,8,10,.2) 50%, rgba(8,8,10,1) 100%);
    z-index: -1;
}
.hero-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 32px 80px;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}
.hero-eyebrow::before {
    content: '';
    width: 36px; height: 1px; background: var(--accent);
}
.hero h1 {
    font-family: var(--f-display);
    font-size: clamp(56px, 12vw, 180px);
    line-height: .85;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 .stroke {
    -webkit-text-stroke: 2px var(--ink);
    color: transparent;
    display: block;
}
.hero h1 .gold { color: var(--accent); display: block; }
.hero p.lead {
    max-width: 560px;
    font-size: 18px;
    color: var(--ink-dim);
    margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 32px;
    font-family: var(--f-head);
    font-size: 13px; font-weight: 600;
    letter-spacing: .28em; text-transform: uppercase;
    border: 1px solid var(--ink);
    background: var(--ink); color: var(--bg-0);
    cursor: pointer;
    transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
    position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(255,255,255,.4); }
.btn-ghost {
    background: transparent;
    border-color: var(--line); color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }
.btn-gold {
    background: var(--accent); border-color: var(--accent); color: #000;
}
.btn-gold:hover { box-shadow: 0 18px 40px -16px rgba(212,175,55,.7); }

.hero-meta {
    position: absolute;
    bottom: 36px; left: 0; right: 0;
    z-index: 2;
    display: flex; justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    color: var(--ink-mute);
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
}
.scroll-cue {
    display: inline-flex; align-items: center; gap: 12px;
}
.scroll-cue .line {
    display: inline-block;
    width: 60px; height: 1px;
    background: var(--accent);
    animation: lineSlide 2.4s ease-in-out infinite;
}
@keyframes lineSlide {
    0% { transform: scaleX(.2); transform-origin: left; }
    50%{ transform: scaleX(1); transform-origin: left; }
    50.01%{ transform: scaleX(1); transform-origin: right; }
    100%{ transform: scaleX(.2); transform-origin: right; }
}

/* ============== SECTIONS ============== */
.section {
    padding: 120px 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.section-tight { padding: 80px 32px; }
.section-head { margin-bottom: 64px; max-width: 800px; }
.section-eyebrow {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--f-display);
    font-size: clamp(40px, 6vw, 80px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: .01em;
}
.section-title .gold { color: var(--accent); }
.section-sub {
    color: var(--ink-dim);
    margin-top: 18px;
    font-size: 17px;
    max-width: 640px;
}

/* ============== STATS ============== */
.stats-strip {
    background: var(--bg-1);
    border-block: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 32px;
    gap: 32px;
}
.stat { text-align: left; border-left: 1px solid var(--line); padding-left: 24px; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
    font-family: var(--f-display);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
    color: var(--accent);
}
.stat-label {
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-top: 8px;
}
@media (max-width: 720px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
    .stat:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* ============== STORY / ABOUT BLOCKS ============== */
.split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 1px solid var(--line);
}
.split-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
    filter: grayscale(.2) contrast(1.05);
}
.split-img:hover img { transform: scale(1.06); }
.split-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6));
    pointer-events: none;
}
.split-img .badge {
    position: absolute;
    bottom: 24px; left: 24px;
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--accent);
    z-index: 2;
}
@media (max-width: 880px) {
    .split { grid-template-columns: 1fr; gap: 48px; }
}

/* ============== VALUES ============== */
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    padding: 40px 32px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
    transition: transform .4s ease, border-color .4s ease, background .4s ease;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.7,.05,.25,1);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 24px;
    transition: border-color .4s ease;
}
.value-card:hover .icon { border-color: var(--accent); }
.value-card h3 {
    font-family: var(--f-display);
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}
.value-card p { color: var(--ink-dim); }
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }

/* ============== CARD GRID (members / events) ============== */
.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.crew-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--line);
    background: var(--bg-1);
}
.crew-card .crew-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(.6) contrast(1.1);
    transition: filter .6s ease, transform 1s cubic-bezier(.2,.7,.2,1);
}
.crew-card:hover .crew-img { filter: grayscale(0) contrast(1.05); transform: scale(1.05); }
.crew-card .gradient {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(8,8,10,.95));
}
.crew-card .crew-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px;
    color: var(--ink);
}
.crew-card .role {
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}
.crew-card .name {
    font-family: var(--f-display);
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1;
}
.crew-card .bio {
    color: var(--ink-dim);
    font-size: 14px;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .5s ease, opacity .4s ease, margin-top .4s ease;
}
.crew-card:hover .bio { max-height: 80px; opacity: 1; }

@media (max-width: 880px) { .crew-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .crew-grid { grid-template-columns: 1fr; } }

/* ============== EVENTS ============== */
.event-list { display: flex; flex-direction: column; gap: 0; }
.event {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px 8px;
    border-top: 1px solid var(--line);
    transition: background .4s ease, padding .4s ease;
    position: relative;
}
.event:last-child { border-bottom: 1px solid var(--line); }
.event::before {
    content: '';
    position: absolute;
    left: 0; top: 0; height: 100%;
    width: 0;
    background: var(--accent);
    transition: width .4s ease;
}
.event:hover { background: var(--bg-1); padding-left: 24px; }
.event:hover::before { width: 4px; }
.event-date {
    font-family: var(--f-display);
    font-size: 38px;
    color: var(--accent);
    line-height: 1;
}
.event-date small {
    display: block;
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--ink-mute);
    margin-top: 6px;
}
.event-title {
    font-family: var(--f-display);
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.event-place {
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .35em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-top: 6px;
}
.event-desc { color: var(--ink-dim); margin-top: 8px; max-width: 460px; }
.event-link {
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
}
@media (max-width: 760px) {
    .event { grid-template-columns: 1fr; gap: 12px; }
    .event-date { font-size: 28px; }
}

/* ============== GALLERY ============== */
.gallery-grid {
    columns: 3;
    column-gap: 16px;
}
@media (max-width: 920px) { .gallery-grid { columns: 2; } }
@media (max-width: 540px) { .gallery-grid { columns: 1; } }

.g-item {
    break-inside: avoid;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    cursor: zoom-in;
}
.g-item img {
    width: 100%;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter .6s ease;
    filter: grayscale(.4) contrast(1.05);
}
.g-item:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1); }
.g-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 28px;
    background: rgba(8,8,10,.6);
    opacity: 0;
    transition: opacity .4s ease;
}
.g-item:hover::after { opacity: 1; }

/* lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    place-items: center;
    z-index: 1000;
    padding: 32px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 90vh; max-width: 90vw; box-shadow: var(--shadow); }
.lightbox-close {
    position: absolute; top: 28px; right: 32px;
    background: none; border: 0;
    color: var(--ink); font-size: 32px;
    cursor: pointer;
}

/* ============== SWIPER quotes ============== */
.quote-swiper { padding: 40px 0 80px; }
.quote-card {
    background: var(--bg-1);
    border: 1px solid var(--line);
    padding: 48px;
    text-align: center;
    height: 100%;
}
.quote-card .quote-mark {
    font-family: var(--f-display);
    font-size: 80px;
    color: var(--accent);
    line-height: .6;
}
.quote-card blockquote {
    font-family: var(--f-head);
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.4;
    margin: 16px 0 24px;
}
.quote-card cite {
    font-style: normal;
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--ink-mute);
    text-transform: uppercase;
}

.swiper-button-next, .swiper-button-prev { color: var(--accent); }
.swiper-pagination-bullet { background: var(--ink-mute); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--accent); }

/* ============== CTA RIBBON ============== */
.cta-ribbon {
    position: relative;
    padding: 120px 32px;
    text-align: center;
    overflow: hidden;
    background: var(--bg-1);
    border-block: 1px solid var(--line);
}
.cta-ribbon::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: .25;
    filter: grayscale(.6) contrast(1.1);
}
.cta-ribbon::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(8,8,10,.95));
}
.cta-ribbon > * { position: relative; z-index: 2; }
.cta-ribbon h2 {
    font-family: var(--f-display);
    font-size: clamp(40px, 7vw, 96px);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.cta-ribbon p { color: var(--ink-dim); margin: 16px 0 32px; max-width: 520px; margin-inline: auto; }

/* ============== PAGE HEADERS ============== */
.page-hero {
    padding: 200px 32px 100px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 120px; right: 32px;
    width: 200px; height: 200px;
    background-image: url('../img/logo.jpg');
    background-size: contain; background-position: center; background-repeat: no-repeat;
    opacity: .07;
    filter: grayscale(1);
    pointer-events: none;
}
.page-hero .crumbs {
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.page-hero h1 {
    font-family: var(--f-display);
    font-size: clamp(56px, 10vw, 140px);
    text-transform: uppercase;
    line-height: .9;
}
.page-hero .lead {
    color: var(--ink-dim);
    max-width: 640px;
    margin-top: 24px;
    font-size: 18px;
}

/* ============== CONTACT ============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
}
.contact-info p { margin-bottom: 16px; color: var(--ink-dim); }
.contact-info i { color: var(--accent); margin-right: 12px; width: 16px; }
form.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field {
    position: relative;
    border: 1px solid var(--line);
    background: var(--bg-1);
    transition: border-color .35s ease;
}
.field:focus-within { border-color: var(--accent); }
.field label {
    position: absolute;
    top: 14px; left: 18px;
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .35em;
    color: var(--ink-mute);
    text-transform: uppercase;
    pointer-events: none;
}
.field input,
.field textarea {
    width: 100%;
    background: transparent;
    border: 0; outline: 0;
    color: var(--ink);
    padding: 36px 18px 14px;
    font-family: var(--f-body);
    font-size: 15px;
    resize: vertical;
}
.flash {
    background: rgba(212,175,55,.1);
    border: 1px solid var(--accent);
    padding: 14px 18px;
    color: var(--accent);
    font-family: var(--f-head);
    letter-spacing: .25em;
    text-transform: uppercase;
    font-size: 12px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============== FOOTER ============== */
.site-footer {
    background: #050507;
    border-top: 1px solid var(--line);
    margin-top: 80px;
}
.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}
.foot-logo {
    width: 64px; height: 64px;
    border-radius: 50%; object-fit: cover;
    border: 2px solid var(--accent);
    margin-bottom: 18px;
}
.foot-brand h3 {
    font-family: var(--f-display);
    font-size: 24px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.foot-brand p { color: var(--ink-mute); max-width: 320px; }
.foot-col h4 {
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a, .foot-col p { color: var(--ink-dim); font-size: 14px; }
.foot-col a:hover { color: var(--ink); }
.foot-col i { color: var(--accent); margin-right: 8px; width: 14px; }

.socials { display: flex; gap: 12px; }
.socials a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--line);
    color: var(--ink-dim);
    transition: all .35s ease;
}
.socials a:hover { background: var(--accent); color: #000; border-color: var(--accent); transform: translateY(-3px); }

.foot-bar {
    border-top: 1px solid var(--line);
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ink-mute);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--f-head);
}
.foot-bar .moto { color: var(--accent); }
.foot-bar .credit { color: var(--ink-mute); }
.foot-bar .credit a {
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    transition: color .25s ease, border-color .25s ease;
}
.foot-bar .credit a:hover { color: var(--accent); border-bottom-color: var(--ink); }

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============== UTIL ============== */
.divider {
    width: 80px; height: 2px;
    background: var(--accent);
    margin: 32px 0;
}
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }

/* loading reveal */
[data-aos] { will-change: transform, opacity; }

/* ==========================================================
   INVITATION PAGE — fight poster vibe
   ========================================================== */
.invite-hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 32px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
}
.invite-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(.85) contrast(1.15) brightness(.45);
    z-index: -2;
    transform: scale(1.05);
    animation: invKenburns 28s ease-in-out infinite alternate;
}
@keyframes invKenburns {
    0%   { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.18) translate(-2%, -3%); }
}
.invite-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.92) 78%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.02) 0 1px, transparent 1px 4px);
    z-index: -1;
}

.invite-corner {
    position: absolute;
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--ink-mute);
    z-index: 2;
    pointer-events: none;
}
.invite-corner.top-left     { top: 110px;  left: 32px; }
.invite-corner.top-right    { top: 110px;  right: 32px; color: var(--accent); }
.invite-corner.bottom-left  { bottom: 24px; left: 32px; }
.invite-corner.bottom-right { bottom: 24px; right: 32px; color: var(--accent); }

.invite-inner {
    max-width: 1200px;
    text-align: center;
    width: 100%;
}
.invite-eyebrow {
    display: inline-block;
    font-family: var(--f-head);
    font-size: 12px;
    letter-spacing: .55em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}
.invite-title {
    font-family: var(--f-display);
    font-size: clamp(72px, 14vw, 220px);
    line-height: .82;
    text-transform: uppercase;
    letter-spacing: .01em;
    margin-bottom: 60px;
}
.invite-title .stroke {
    -webkit-text-stroke: 2px var(--ink);
    color: transparent;
    display: block;
}
.invite-title .gold { color: var(--accent); display: block; }

.invite-date-block {
    display: inline-flex;
    align-items: stretch;
    gap: 24px;
    border: 1px solid var(--line);
    background: rgba(8,8,10,.72);
    backdrop-filter: blur(6px);
    padding: 28px 36px;
    margin-bottom: 40px;
    text-align: left;
}
.invite-date-day {
    border-right: 1px solid var(--line);
    padding-right: 36px;
    text-align: center;
    min-width: 180px;
}
.invite-date-day .dow {
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .42em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.invite-date-day .dnum {
    font-family: var(--f-display);
    font-size: 92px;
    line-height: 1;
    color: var(--accent);
    margin: 4px 0;
}
.invite-date-day .dmy {
    font-family: var(--f-head);
    font-size: 13px;
    letter-spacing: .42em;
    color: var(--ink-dim);
    text-transform: uppercase;
}
.invite-event {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.invite-event-label {
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.invite-event-name {
    font-family: var(--f-display);
    font-size: clamp(28px, 3vw, 44px);
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--ink);
    line-height: 1.05;
    margin: 6px 0 8px;
}
.invite-event-place {
    font-family: var(--f-head);
    font-size: 13px;
    letter-spacing: .15em;
    color: var(--ink-dim);
    text-transform: uppercase;
}
.invite-event-place i { color: var(--accent); margin-right: 6px; }

.invite-countdown {
    display: inline-flex;
    gap: 0;
    border: 1px solid var(--line);
    background: rgba(8,8,10,.7);
    backdrop-filter: blur(6px);
}
.cd-cell {
    padding: 16px 28px;
    text-align: center;
    border-right: 1px solid var(--line);
    min-width: 96px;
}
.cd-cell:last-child { border-right: 0; }
.cd-num {
    display: block;
    font-family: var(--f-display);
    font-size: 44px;
    line-height: 1;
    color: var(--ink);
}
.cd-lbl {
    display: block;
    font-family: var(--f-head);
    font-size: 10px;
    letter-spacing: .4em;
    color: var(--ink-mute);
    text-transform: uppercase;
    margin-top: 8px;
}

/* BRIEF SECTION */
.invite-brief .brief-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: stretch;
}
.invite-warcry {
    margin-top: 32px;
    padding: 24px 28px;
    border-left: 4px solid var(--accent);
    background: rgba(212,175,55,.06);
    font-family: var(--f-display);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.1;
}
.brief-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--bg-1), var(--bg-0));
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}
.brief-card::before {
    content: 'RIDE BRIEF';
    position: absolute;
    top: 0; left: 0;
    transform: translateY(-50%);
    background: var(--accent);
    color: #000;
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .45em;
    padding: 6px 16px;
    text-transform: uppercase;
}
.brief-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--line);
}
.brief-row:last-of-type { border-bottom: 0; }
.brief-row i {
    color: var(--accent);
    width: 28px;
    text-align: center;
    font-size: 18px;
    margin-top: 2px;
}
.brief-k {
    font-family: var(--f-head);
    font-size: 11px;
    letter-spacing: .4em;
    color: var(--ink-mute);
    text-transform: uppercase;
}
.brief-v {
    font-family: var(--f-head);
    font-size: 16px;
    color: var(--ink);
    margin-top: 4px;
    letter-spacing: .03em;
}
.brief-cta { align-self: flex-start; margin-top: 8px; }
@media (max-width: 880px) {
    .invite-brief .brief-grid { grid-template-columns: 1fr; gap: 48px; }
    .invite-corner.top-left, .invite-corner.top-right { top: 96px; font-size: 9px; letter-spacing: .3em; }
    .invite-date-block { flex-direction: column; gap: 20px; padding: 24px; }
    .invite-date-day { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 20px 0; }
    .cd-cell { min-width: 72px; padding: 14px 18px; }
    .cd-num { font-size: 32px; }
}

/* CHECK GRID */
.check-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.check-card {
    padding: 32px 24px;
    border: 1px solid var(--line);
    background: var(--bg-1);
    transition: transform .4s ease, border-color .4s ease;
    text-align: left;
}
.check-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.check-icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 18px;
}
.check-card h3 {
    font-family: var(--f-display);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 8px;
}
.check-card p {
    color: var(--ink-dim);
    font-size: 14px;
}
@media (max-width: 880px) { .check-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .check-grid { grid-template-columns: 1fr; } }

.rsvp-buttons {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
