:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5d5d5d;
  --nav: #0f0d25;
  --brand: #f5d500;
  --card: #f7f7f8;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92vw); margin: 0 auto; }

.site-header { background: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 rgba(0,0,0,.08); }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.brand img { height: 74px; width: auto; display: block; }
.cta-top { border: 1px solid #ddd; padding: 10px 16px; border-radius: 999px; font-weight: 700; }
.cta-top:hover { border-color: var(--brand); }

.nav-bar { background: var(--nav); }
.nav-inner { display: flex; gap: 34px; align-items: center; min-height: 64px; }
.nav-inner a { color: #fff; font-weight: 700; font-size: 18px; opacity: .95; }
.nav-inner a:hover { color: var(--brand); }

.hero { background: #f2f2f2; padding: 48px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 24px; }
.eyebrow { font-size: clamp(24px, 3vw, 46px); margin: 0 0 8px; letter-spacing: .4px; }
.hero h1 { margin: 0; line-height: .95; font-size: clamp(44px, 8vw, 102px); color: #100f29; }
.lead { font-size: clamp(20px, 2.3vw, 42px); margin: 18px 0 26px; max-width: 640px; }
.hero-image-wrap { display: flex; justify-content: flex-end; }
.hero-image { width: 100%; max-width: 700px; object-fit: contain; border-radius: 10px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 12px 22px; border-radius: 999px; font-weight: 800; }
.btn-yellow { background: var(--brand); color: #111; }
.btn-outline { border: 1px solid #111; }

.section { padding: 70px 0; }
.section-light { background: #fafafa; }
.section-dark { background: #100f29; color: #fff; }
.section h2 { margin: 0 0 10px; font-size: clamp(30px, 4.5vw, 52px); }
.section p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.section-dark p { color: rgba(255,255,255,.8); }
.section-head { margin-bottom: 26px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border-radius: 14px; overflow: hidden; border: 1px solid #ececec; }
.card img { width: 100%; height: 250px; object-fit: cover; display: block; }
.card-body { padding: 16px; }
.card h3 { margin: 0 0 8px; font-size: 24px; }
.card p { margin: 0; font-size: 16px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stats h3 { margin: 0 0 6px; color: var(--brand); font-size: clamp(24px, 3vw, 40px); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; }

.contact-box { text-align: center; }
.contact-box p { margin: 8px 0 20px; }

.site-footer { padding: 20px 0 36px; border-top: 1px solid #ececec; text-align: center; color: #666; }

@media (max-width: 980px) {
  .brand img { height: 56px; }
  .nav-inner { overflow-x: auto; gap: 20px; min-height: 58px; }
  .nav-inner a { font-size: 16px; white-space: nowrap; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { justify-content: center; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
