*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:var(--body-font);
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

button,
input,
textarea,
select{
    font:inherit;
}

.container{
    width:min(1180px, calc(100% - 40px));
    margin:0 auto;
}

.section{
    padding:90px 0;
}

h1,h2,h3,h4,h5,h6{
    margin:0 0 14px;
    font-family:var(--heading-font);
    color:var(--text);
    line-height:1.15;
}

h1{
    font-size:clamp(2.4rem, 5vw, 4.8rem);
}

h2{
    font-size:clamp(2rem, 4vw, 3.2rem);
}

h3{
    font-size:1.35rem;
}

p{
    margin:0 0 14px;
    color:var(--muted);
}

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid var(--border);
    backdrop-filter:blur(10px);
}

.header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:800;
}

.brand-mark{
    width:48px;
    height:48px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--primary),#3B82F6);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    box-shadow:var(--shadow-sm);
    overflow:hidden;
}

.brand-mark img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.brand-text small{
    display:block;
    color:#64748B;
    font-weight:600;
    font-size:.82rem;
}

.nav{
    display:flex;
    flex-wrap:wrap;
    gap:22px;
}

.nav a{
    font-weight:600;
    color:var(--text);
}

.nav a:hover{
    color:var(--primary);
}

.hero{
    position:relative;
    color:#fff;
    padding:100px 0 120px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(30,58,138,.82), var(--hero-overlay));
}

.hero > .container{
    position:relative;
    z-index:1;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.08fr .92fr;
    gap:36px;
    align-items:center;
}

.eyebrow{
    display:inline-block;
    padding:8px 14px;
    border-radius:var(--radius-pill);
    background:rgba(255,255,255,.16);
    color:#fff;
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    margin-bottom:14px;
}

.hero h1,
.hero h2,
.hero h3{
    color:#fff;
}

.hero p{
    color:#DBEAFE;
}

.hero-card{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.2);
    border-radius:var(--radius-lg);
    padding:22px;
    box-shadow:var(--shadow-lg);
    backdrop-filter:blur(10px);
}

.hero-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:20px;
    margin-bottom:18px;
}

.badge{
    display:inline-block;
    padding:7px 14px;
    border-radius:999px;
    background:rgba(245,158,11,.18);
    color:#FDE68A;
    font-size:.82rem;
    font-weight:700;
    margin-bottom:14px;
}

.btn-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:18px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    transition:.25s ease;
    border:none;
    cursor:pointer;
}

.btn-primary{
    background:var(--accent);
    color:#111827;
}

.btn-primary:hover{
    background:var(--accent-dark);
    transform:translateY(-2px);
}

.btn-outline{
    background:#fff;
    color:var(--text);
    border:1px solid var(--border);
}

.btn-outline:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow-sm);
}

.section-head{
    max-width:760px;
    margin:0 auto 42px;
    text-align:center;
}

.kicker{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#EAF1FF;
    color:var(--primary);
    font-size:.82rem;
    font-weight:700;
    margin-bottom:12px;
}

.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
}

.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-md);
    box-shadow:var(--shadow-sm);
}

.card-body{
    padding:26px;
}

.image-card{
    overflow:hidden;
}

.image-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.feature-card{
    padding:22px;
}

.alt{
    background:var(--bg-soft);
}

.soft{
    background:var(--bg-alt);
}

.about-image{
    width:100%;
    height:540px;
    object-fit:cover;
    border-radius:var(--radius-lg);
    box-shadow:var(--shadow-md);
}

.event-item{
    display:grid;
    grid-template-columns:110px 1fr auto;
    gap:20px;
    align-items:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    padding:20px;
    box-shadow:var(--shadow-sm);
    margin-bottom:18px;
}

.event-date{
    background:linear-gradient(135deg,var(--primary),#3B82F6);
    color:#fff;
    border-radius:18px;
    text-align:center;
    padding:16px 12px;
}

.event-date strong{
    display:block;
    font-size:1.7rem;
    line-height:1;
}

.info-list{
    display:grid;
    gap:16px;
}

.info-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px 20px;
}

.form-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:var(--radius-lg);
    padding:30px;
    box-shadow:var(--shadow-sm);
}

.field{
    margin-bottom:18px;
}

.field label{
    display:block;
    font-weight:700;
    margin-bottom:8px;
    color:var(--text);
}

.field input,
.field textarea,
.field select{
    width:100%;
    padding:14px 16px;
    border:1px solid #CBD5E1;
    border-radius:16px;
    background:#fff;
    color:var(--text);
}

.field textarea{
    min-height:160px;
    resize:vertical;
}

.notice-success{
    background:#DCFCE7;
    color:#166534;
    border:1px solid #BBF7D0;
    padding:14px 16px;
    border-radius:16px;
    margin-bottom:18px;
}

.notice-error{
    background:#FEE2E2;
    color:#991B1B;
    border:1px solid #FECACA;
    padding:14px 16px;
    border-radius:16px;
    margin-bottom:18px;
}

.footer{
    background:#0F172A;
    color:#CBD5E1;
    padding:72px 0 28px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:28px;
}

.footer h3,
.footer h4{
    color:#fff;
}

.footer p,
.footer a{
    color:#CBD5E1;
}

.footer-bottom{
    margin-top:28px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    font-size:.95rem;
}

@media (max-width: 980px){
    .section{
        padding:74px 0;
    }

    .header-inner{
        flex-direction:column;
        align-items:flex-start;
        padding:16px 0;
    }

    .hero-grid,
    .grid-2,
    .grid-3,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .event-item{
        grid-template-columns:1fr;
    }
}