:root{
    --bg:#ffffff;
    --text:#000000;
    --muted:#444444;
    --border:#e5e7eb;
    --shadow: 0 14px 40px rgba(0,0,0,.08);
    --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
}

a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92%); margin:0 auto}

/* HEADER (white bg, black text) */
.header{
    position:sticky; top:0; z-index:20;
    background:#fff;
    border-bottom:1px solid var(--border);
}
.navbar{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 0;
}
.brand{
    display:flex; align-items:center; gap:10px;
    font-weight:800; letter-spacing:.2px;
    color: var(--text);
}
.logo{
    width:36px; height:36px; border-radius:12px;
    background:#111;
}
.navlinks{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.navlinks a{
    padding:10px 12px;
    border:1px solid transparent;
    border-radius: 999px;
    color: var(--text);
    transition:.2s;
}
.navlinks a:hover{
    border-color: var(--border);
    background: #f6f7f9;
}
.navlinks a.active{
    background:#111;
    color:#fff;
    border-color:#111;
    font-weight:700;
}

/* HERO */
.hero{padding:38px 0 22px;}
.hero-inner{
    display:grid;
    grid-template-columns: 1.3fr .7fr;
    gap:18px;
    align-items:stretch;
}
@media (max-width: 900px){ .hero-inner{grid-template-columns:1fr} }

.hero-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius: var(--radius);
    padding:18px;
    box-shadow: var(--shadow);
    color: var(--text);
}
.hero h1{
    margin:0 0 8px;
    font-size: clamp(28px, 3.3vw, 44px);
    line-height:1.1;
    color: var(--text);
}
.hero p{
    margin:0;
    color: var(--muted);
    font-size:16px;
    line-height:1.6;
}

.hero-stats{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:12px;
    margin-top:14px;
}
.stat{
    border:1px solid var(--border);
    background:#fff;
    border-radius: 16px;
    padding:12px;
}
.stat .num{font-size:20px; font-weight:800; color: var(--text)}
.stat .lbl{color:var(--muted); font-size:12px; margin-top:4px}

.hero-side{
    border:1px solid var(--border);
    background:#fff;
    border-radius: var(--radius);
    padding:18px;
    box-shadow: var(--shadow);
    color: var(--text);
}
.badge{
    display:inline-flex;
    gap:8px;
    align-items:center;
    padding:8px 10px;
    border:1px solid var(--border);
    border-radius:999px;
    color: var(--text);
    background:#fff;
    margin-bottom:10px;
    font-weight:700;
}
.dot{
    width:9px;height:9px;border-radius:99px;
    background:#111;
}
.cta{
    display:flex; gap:10px; margin-top:12px; flex-wrap:wrap;
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 14px;
    border-radius: 14px;
    border:1px solid var(--border);
    background:#fff;
    color: var(--text);
    font-weight:700;
    transition:.2s;
    cursor:pointer;
}
.btn:hover{transform: translateY(-1px); background:#f6f7f9}
.btn.primary{
    border:1px solid #111;
    color:#fff;
    background:#111;
}

/* SECTION */
.section{padding: 10px 0 28px}
.section-title{
    display:flex; align-items:end; justify-content:space-between;
    gap:12px; margin: 18px 0 12px;
}
.section-title h2{margin:0; font-size:20px; color: var(--text)}
.section-title p{margin:0; color:var(--muted); font-size:13px}

/* GRID */
.grid{
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    gap:12px;
}
.card{
    border:1px solid var(--border);
    background:#fff;
    border-radius: var(--radius);
    overflow:hidden;
    box-shadow: var(--shadow);
}
.card.pad{padding:14px}
.col-4{grid-column: span 4}
.col-6{grid-column: span 6}
.col-12{grid-column: span 12}
@media (max-width: 900px){
    .col-4,.col-6{grid-column: span 12}
}

/* GALLERY */
.gallery-item{
    position:relative;
    aspect-ratio: 4 / 3;
    cursor:pointer;
    border-radius: var(--radius);
    overflow:hidden;
    border:1px solid var(--border);
    background:#f3f4f6;
}
.gallery-item img{
    width:100%; height:100%;
    object-fit:contain;
    transform: scale(1.02);
    transition: .25s;
}
.gallery-item:hover img{transform: scale(1.07)}
.gcap{
    position:absolute;
    left:10px; right:10px; bottom:10px;
    padding:10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    border:1px solid var(--border);
    backdrop-filter: blur(8px);
}
.gcap .t{font-weight:800; font-size:14px; color: var(--text)}
.gcap .s{color: var(--muted); font-size:12px; margin-top:2px}

/* BLOG */
.blog-card .meta{color:var(--muted); font-size:12px}
.blog-card h3{margin:10px 0 8px; font-size:16px; color: var(--text)}
.blog-card p{margin:0; color:var(--muted); line-height:1.6}
.blog-card .read{
    margin-top:12px;
    display:inline-flex;
    gap:8px;
    align-items:center;
    color:#111;
    font-weight:800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* MODAL */
.modal{
    position:fixed; inset:0;
    display:none;
    align-items:center; justify-content:center;
    padding:18px;
    background: rgba(0,0,0,.75);
    z-index:50;
}
.modal.open{display:flex}
.modal-box{
    width:min(980px, 96%);
    border:1px solid var(--border);
    background:#fff;
    border-radius: 20px;
    overflow:hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,.35);
}
.modal-top{
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 14px;
    border-bottom:1px solid var(--border);
}
.modal-top .title{font-weight:900; color: var(--text)}
.icon-btn{
    width:38px; height:38px;
    border-radius: 12px;
    border:1px solid var(--border);
    background:#fff;
    color: var(--text);
    cursor:pointer;
    font-weight:900;
}
.icon-btn:hover{background:#f6f7f9}
.modal-img{
    width:100%;
    max-height: 70vh;
    object-fit: contain;
    background:#000;
}

.footer{
    padding:22px 0 30px;
    border-top:1px solid var(--border);
    color: var(--muted);
    font-size:13px;
}

.main-banner{
    width:100%;
    padding:40px 0;
}

.banner-inner{
    width:min(1200px, 92%);
    margin:0 auto;
    display:grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap:20px;
    align-items:center;
}

.banner-img{
    border-radius:18px;
    overflow:hidden;
    box-shadow: var(--shadow);
}

.banner-img img{
    width:100%;
    height:260px;
    object-fit:contain;
    display:block;
}

.banner-text{
    text-align:center;
    padding:10px 20px;
}

.banner-text h1{
    margin:0 0 12px;
    font-size:clamp(26px, 3vw, 42px);
    font-weight:900;
    color:#0a2c7d;
    line-height:1.15;
}

.banner-text p{
    margin:0;
    font-size:16px;
    color:#444;
    line-height:1.7;
}

/* Mobile */
@media (max-width: 900px){
    .banner-inner{
        grid-template-columns: 1fr;
    }
    .banner-img img{
        height:220px;
    }
}
