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

:root {
    --navy: #080d1a;
    --navy2: #0d1526;
    --red: #e63946;
    --red-dim: rgba(230, 57, 70, 0.15);
    --red-glow: rgba(230, 57, 70, 0.45);
    --blue: #3a86ff;
    --white: #ffffff;
    --off: #f8fafc;
    --g100: #f1f5f9;
    --g200: #e2e8f0;
    --g500: #64748b;
    --g600: #475569;
    --g900: #0f172a;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-b: rgba(255, 255, 255, 0.08);
    --fh: 'Space Grotesk', sans-serif;
    --fb: 'Inter', sans-serif;
    --r: 16px;
    --rl: 24px;
    --sh: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shc: 0 8px 32px rgba(0, 0, 0, 0.1);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t: 0.35s var(--ease);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    background: var(--navy2);
    color: var(--g900);
    overflow-x: hidden;
    line-height: 1.6
}

h1,
h2,
h3,
h4 {
    font-family: var(--fh);
    line-height: 1.12
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none
}

/* EYEBROW */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--red-dim);
    border: 1px solid rgba(230, 57, 70, .22);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pdot 2s ease-in-out infinite;
}

@keyframes pdot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.6)
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    font-family: var(--fb);
    font-size: .88rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--t);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 20px var(--red-glow)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--red-glow)
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px)
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .5);
    transform: translateY(-2px)
}

.btn-dark {
    background: var(--g900);
    color: #fff
}

.btn-dark:hover {
    background: #1e293b;
    transform: translateY(-2px)
}

.btn-outline {
    background: transparent;
    color: var(--g900);
    border: 1.5px solid var(--g200)
}

.btn-outline:hover {
    border-color: var(--g900);
    background: var(--g100);
    transform: translateY(-2px)
}

.btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--t);
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(8, 13, 26, .88);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-b);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 6px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-text span:first-child {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    letter-spacing: .06em;
}

.logo-text span:last-child {
    display: block;
    font-size: .6rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

.nav-links a {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    font-weight: 500;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    transition: var(--t);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%) scaleX(0);
    width: 55%;
    height: 2.5px;
    border-radius: 999px;
    background: var(--red);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
    opacity: 0;
    pointer-events: none;
}

.nav-links a:hover {
    color: #fff;
    background: var(--glass);
}

.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
    box-shadow:
        0 0 8px var(--red-glow),
        0 0 16px var(--red-glow),
        0 0 24px rgba(230, 57, 70, 0.25);
}

.ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--t)
}

.mob {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(8, 13, 26, .97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.mob.open {
    opacity: 1;
    pointer-events: all;
    display: flex
}

.mob a {
    color: #fff;
    font-family: var(--fh);
    font-size: 1.8rem;
    font-weight: 700;
    transition: color .2s;
}

.mob a:hover {
    color: var(--red)
}

.mob-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--navy);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-grad {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230, 57, 70, .1) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 85% 100%, rgba(58, 134, 255, .07) 0%, transparent 60%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    border: 1px solid var(--glass-b);
    border-radius: 100px;
    padding: 6px 16px 6px 10px;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    animation: pbadge 2s ease-in-out infinite;
}

@keyframes pbadge {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--red-glow)
    }

    50% {
        box-shadow: 0 0 0 6px transparent
    }
}

.hero-badge span {
    font-size: .76rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .03em
}

.hero-h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-h1 .acc {
    color: var(--red)
}

.hero-h1 .acc2 {
    color: var(--blue)
}

.hero-p {
    font-size: clamp(.9rem, 1.3vw, 1.05rem);
    color: rgba(255, 255, 255, .52);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--glass-b);
}

.hstat-num {
    font-family: var(--fh);
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
}

.hstat-num span {
    color: var(--red)
}

.hstat-lbl {
    font-size: .74rem;
    color: rgba(255, 255, 255, .38);
    font-weight: 500;
    margin-top: 2px;
    letter-spacing: .04em
}

.hero-vis {
    position: relative
}

.hero-img-wrap {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-b);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: brightness(.82) saturate(1.1);
}

.hero-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, .12) 0%, transparent 60%);
}

.fc {
    position: absolute;
    bottom: -18px;
    left: -24px;
    background: rgba(13, 21, 38, .88);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-b);
    border-radius: var(--r);
    padding: 14px 18px;
    min-width: 170px;
    animation: flt 4s ease-in-out infinite;
}

@keyframes flt {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.fc-lbl {
    font-size: .68rem;
    color: rgba(255, 255, 255, .38);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px
}

.fc-val {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff
}

.fc-val span {
    color: var(--red)
}

.fc2 {
    position: absolute;
    top: 20px;
    right: -18px;
    background: var(--red);
    border-radius: var(--r);
    padding: 14px 16px;
    animation: flt 4s ease-in-out infinite 2s;
    box-shadow: 0 12px 40px var(--red-glow);
}

.fc2-lbl {
    font-size: .66rem;
    color: rgba(255, 255, 255, .7);
    letter-spacing: .08em;
    font-weight: 600
}

.fc2-val {
    font-family: var(--fh);
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-top: 3px
}

.scroll-ind {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .28);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-mouse::before {
    content: '';
    width: 3px;
    height: 6px;
    background: rgba(255, 255, 255, .35);
    border-radius: 2px;
    animation: smouse 2s ease-in-out infinite;
}

@keyframes smouse {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    100% {
        transform: translateY(10px);
        opacity: 0
    }
}

/* ABOUT */
#about {
    padding: 100px 0;
    background: #fff;
    position: relative
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-img-wrap {
    position: relative
}

.about-frame {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--sh);
}

.about-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.deco1 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--red);
    border-radius: var(--r);
    opacity: .1;
    z-index: -1;
}

.deco2 {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--blue);
    opacity: .07;
    z-index: -1;
    animation: flt 6s ease-in-out infinite;
}

.qcard {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: #fff;
    border: 1px solid var(--g200);
    border-radius: var(--r);
    padding: 18px;
    max-width: 210px;
    box-shadow: var(--shc);
}

.qstars {
    color: #f59e0b;
    font-size: .8rem;
    margin-bottom: 8px
}

.qtext {
    font-size: .78rem;
    color: var(--g600);
    line-height: 1.55;
    font-style: italic
}

.qname {
    font-size: .72rem;
    font-weight: 700;
    color: var(--g900);
    margin-top: 8px
}

.about-bq {
    border-left: 3px solid var(--red);
    padding-left: 18px;
    margin: 22px 0 28px;
}

.about-bq p {
    font-size: clamp(.9rem, 1.2vw, 1rem);
    color: var(--g600);
    font-style: italic;
    line-height: 1.78
}

.about-bq cite {
    display: block;
    margin-top: 10px;
    font-size: .8rem;
    color: var(--g900);
    font-weight: 600;
    font-style: normal;
}

.about-bq cite span {
    color: var(--g500);
    font-weight: 400;
    display: block;
    font-size: .74rem
}

.about-body {
    font-size: .92rem;
    color: var(--g600);
    line-height: 1.82
}

.about-body strong {
    color: var(--g900);
    font-weight: 600
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px
}

.chip {
    padding: 5px 12px;
    border-radius: 100px;
    font-size: .76rem;
    font-weight: 600;
    background: var(--g100);
    color: var(--g700);
    border: 1px solid var(--g200);
}

/* FACILITIES */
#fac {
    padding: 100px 0;
    background: var(--off);
    position: relative;
    overflow: hidden
}

#fac::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--red-dim) 0%, transparent 70%);
}

.fac-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.sec-hdr {
    margin-bottom: 52px
}

.sec-hdr.c {
    text-align: center
}

.sec-hdr.c .sec-sub {
    margin: 10px auto 0
}

.sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--g900);
    letter-spacing: -.02em
}

.sec-title.lt {
    color: #fff
}

.sec-sub {
    font-size: clamp(.9rem, 1.3vw, 1.05rem);
    color: var(--g500);
    max-width: 560px;
    margin-top: 10px;
    line-height: 1.7
}

.sec-sub.lt {
    color: rgba(255, 255, 255, .55)
}

.fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.fac-card {
    background: #fff;
    border: 1px solid var(--g200);
    border-radius: var(--r);
    padding: 26px 22px;
    transition: var(--t);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.fac-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-dim), transparent);
    opacity: 0;
    transition: opacity .4s;
}

.fac-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 57, 70, .28);
    box-shadow: 0 16px 48px rgba(230, 57, 70, .1);
}

.fac-card:hover::before {
    opacity: 1
}

.fac-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--t);
    position: relative;
}

.fac-card:hover .fac-icon {
    background: var(--red);
    box-shadow: 0 8px 24px var(--red-glow)
}

.fac-icon svg {
    width: 21px;
    height: 21px;
    color: var(--red);
    transition: color .3s
}

.fac-card:hover .fac-icon svg {
    color: #fff
}

.fac-title {
    font-family: var(--fh);
    font-size: .9rem;
    font-weight: 700;
    color: var(--g900);
    margin-bottom: 5px;
    position: relative
}

.fac-desc {
    font-size: .78rem;
    color: var(--g500);
    line-height: 1.6;
    position: relative
}

/* SPACES */
#spaces {
    padding: 100px 0;
    background: #fff
}

.spaces-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.sp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 52px
}

.sp-card {
    border-radius: var(--rl);
    overflow: hidden;
    border: 1px solid var(--g200);
    transition: var(--t);
    background: #fff;
    box-shadow: var(--shc);
}

.sp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .11)
}

.sp-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

.sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
    filter: brightness(.88);
}

.sp-card:hover .sp-img img {
    transform: scale(1.04)
}

.sp-img-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .45) 100%);
}

.sp-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.sp-tag.p {
    background: var(--red);
    color: #fff
}

.sp-tag.s {
    background: rgba(0, 0, 0, .38);
    color: #fff;
    backdrop-filter: blur(8px)
}

.sp-body {
    padding: 26px
}

.sp-lbl {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 7px
}

.sp-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--g900);
    letter-spacing: -.02em;
    margin-bottom: 12px
}

.sp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px
}

.sp-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: var(--g600);
}

.sp-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0
}

/* EVENTS */
#events {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden
}

.eg1 {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(230, 57, 70, .1) 0%, transparent 70%);
    top: -180px;
    left: -180px;
    pointer-events: none;
}

.eg2 {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(58, 134, 255, .07) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

.events-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.ev-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-top: 52px;
}

.ev-tabs {
    display: flex;
    gap: 8px;
    margin: 24px 0 20px;
    flex-wrap: wrap
}

.ev-tab {
    padding: 7px 16px;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--glass-b);
    color: rgba(255, 255, 255, .45);
    background: var(--glass);
    transition: var(--t);
    backdrop-filter: blur(8px);
}

.ev-tab.active,
.ev-tab:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    box-shadow: 0 4px 16px var(--red-glow);
}

.ev-body {
    font-size: .92rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.82
}

.ev-cta {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-b);
    border-radius: var(--rl);
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.ev-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, .55), transparent);
}

.ev-cta-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 24px;
}

.ev-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ev-cta-title {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.ev-cta-sub {
    font-size: .85rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.65;
    margin-bottom: 22px
}

/* TESTIMONIALS */
#testi {
    padding: 80px 0;
    background: var(--off)
}

.testi-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 46px
}

.tc {
    background: #fff;
    border: 1px solid var(--g200);
    border-radius: var(--r);
    padding: 26px;
    transition: var(--t);
}

.tc:hover {
    transform: translateY(-4px);
    box-shadow: var(--shc)
}

.tc-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 12px
}

.tc-text {
    font-size: .85rem;
    color: var(--g600);
    line-height: 1.7;
    font-style: italic
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px
}

.tc-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--red), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-weight: 700;
    color: #fff;
    font-size: .8rem;
}

.tc-name {
    font-weight: 600;
    font-size: .82rem;
    color: var(--g900)
}

.tc-role {
    font-size: .72rem;
    color: var(--g500)
}

/* CONTACT */
#contact {
    padding: 100px 0;
    background: #fff
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
}

.ci-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px
}

.ci {
    display: flex;
    align-items: flex-start;
    gap: 14px
}

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--red-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 19px;
    height: 19px;
    color: var(--red)
}

.ci-lbl {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--g500);
    margin-bottom: 3px
}

.ci-val {
    font-size: .9rem;
    color: var(--g900);
    font-weight: 500
}

.ci-sub {
    font-size: .76rem;
    color: var(--g500);
    margin-top: 2px
}

.map-wrap {
    margin-top: 28px;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--g200);
    height: 260px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block
}

.cf {
    background: var(--off);
    border: 1px solid var(--g200);
    border-radius: var(--rl);
    padding: 36px;
}

.cf h3 {
    font-family: var(--fh);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--g900);
    letter-spacing: -.02em;
    margin-bottom: 24px
}

.fg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.fgrp {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.fgrp.full {
    grid-column: 1/-1
}

.flbl {
    font-size: .76rem;
    font-weight: 600;
    color: var(--g700);
    letter-spacing: .04em
}

.finp,
.fta,
.fsel {
    background: #fff;
    border: 1.5px solid var(--g200);
    border-radius: var(--r);
    padding: 11px 14px;
    font-family: var(--fb);
    font-size: .86rem;
    color: var(--g900);
    transition: var(--t);
    outline: none;
    width: 100%;
}

.finp::placeholder,
.fta::placeholder {
    color: var(--g500)
}

.finp:focus,
.fta:focus,
.fsel:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px var(--red-dim);
}

.fta {
    resize: vertical;
    min-height: 110px
}

.fsel {
    background: #fff;
    border: 1.5px solid var(--g200);
    border-radius: var(--r);
    padding: 11px 14px;
    padding-right: 36px;
    font-family: var(--fb);
    font-size: .86rem;
    color: var(--g900);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
}

.fsub {
    width: 100%;
    justify-content: center;
    margin-top: 16px
}

/* FOOTER */
footer {
    background: var(--navy2);
    padding: 44px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    flex-wrap: wrap;
    gap: 28px;
}

.foot-tag {
    font-size: .8rem;
    color: rgba(255, 255, 255, .32);
    margin-top: 10px;
    max-width: 210px;
    line-height: 1.6
}

.foot-col {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.foot-col-t {
    font-size: .7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.foot-col a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s
}

.foot-col a:hover {
    color: #fff
}

.foot-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    flex-wrap: wrap;
    gap: 14px;
}

.foot-copy {
    font-size: .76rem;
    color: rgba(255, 255, 255, .22)
}

.socials {
    display: flex;
    gap: 10px
}

.soc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    font-size: .8rem;
    font-weight: 700;
    transition: var(--t);
}

.soc:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px)
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s var(--ease), transform .3s var(--ease)
}

.reveal.vis {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

#events .ev-layout {
    align-items: start;
}

#events .ev-cta {
    margin-top: -200px;
}

@media(max-width:768px) {
    #events .ev-cta {
        margin-top: 0;
    }
}

.full-map {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 24px;
    height: 320px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.full-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: var(--r);
}

.map-wrap.full-map {
    border: none;
    background: transparent;
}

#events .ev-tab,
#events .ev-tab.active,
#events .ev-tab:hover {
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    color: rgba(255, 255, 255, .65) !important;
    box-shadow: none !important;
}

#events .ev-tab {
    pointer-events: none;
    cursor: default;
}

.fsub:disabled {
    opacity: 0.9;
    cursor: not-allowed;
}

.soc {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .45);
    transition: var(--t);
}

.soc svg {
    width: 16px;
    height: 16px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
}

.soc:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .fac-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 96px
    }

    .hero-vis {
        display: none
    }

    .hero-stats {
        gap: 18px
    }

    .about-inner,
    .ev-layout,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .qcard {
        display: none
    }

    .sp-grid {
        grid-template-columns: 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .fg {
        grid-template-columns: 1fr
    }

    .foot-top {
        flex-direction: column
    }

    .nav-links,
    .nav-actions {
        display: none
    }

    .ham {
        display: flex
    }
}

@media(max-width:480px) {
    .fac-grid {
        grid-template-columns: 1fr
    }

    .hero-btns {
        flex-direction: column
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center
    }
}