
:root {
  --brand-red: #E94B35;
  --brand-blue: #2F7DD3;
  --ink: #1E2A2F;
  --bg-lite: #F6F7F9;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: #222; }
a { color: var(--brand-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.header { position: relative; min-height: 86vh; color: #fff; display:flex; align-items:center; }
.header::before {
  content: ""; position:absolute; inset:0;
  background: url('assets/hero.jpg') center/cover no-repeat;
  filter: brightness(0.55);
}
.header .wrap { position: relative; z-index: 1; width: 100%; max-width: 1100px; margin: 0 auto; padding: 24px; }
.brand { display:flex; align-items:center; gap:14px; }
.brand img { width: 76px; height:auto; }
.brand .name { font-weight: 800; letter-spacing: 0.5px; font-size: 1.1rem; text-transform: uppercase; opacity: 0.9;}

.hero { margin-top: 14vh; max-width: 760px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 8px 0 12px; }
.hero p { font-size: clamp(16px, 2.3vw, 20px); opacity: 0.95; }

.cta-row { display:flex; gap:12px; flex-wrap: wrap; margin-top: 18px; }
.btn { display:inline-block; padding: 14px 20px; border-radius: 10px; font-weight: 700; border: 0; cursor: pointer; }
.btn-primary { background: var(--brand-red); color:#fff; }
.btn-secondary { background: #ffffff; color: var(--ink); }
.btn:hover { transform: translateY(-1px); filter: brightness(1.03); transition: all .2s ease; }

.topbar { position: fixed; top:0; left:0; right:0; backdrop-filter: blur(8px); background: rgba(30,42,47,0.6); z-index: 10; }
.nav { max-width: 1100px; margin:0 auto; display:flex; align-items:center; justify-content: space-between; padding: 10px 16px; }
.nav a { color:#fff; margin-left: 14px; font-weight: 600; }
.nav a:hover { color: #E6F0FF; }

.section { padding: 72px 20px; }
.section.alt { background: var(--bg-lite); }
.container { max-width: 1100px; margin: 0 auto; }
.section h2 { margin-top:0; font-size: clamp(26px, 4vw, 36px); color: var(--ink); }
.kicker { color: var(--brand-blue); text-transform: uppercase; font-weight: 800; letter-spacing: .08em; font-size: .9rem; margin-bottom: 8px; }

.grid-3 { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; }
.card { background:#fff; border:1px solid #e7e8ea; border-radius: 12px; padding:18px; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.card h3 { margin:6px 0 8px; color: var(--ink); }
.card p { margin:0; color:#444; }

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

.contact { display:grid; grid-template-columns: 1.1fr .9fr; gap:24px; }
.form input, .form textarea { width:100%; padding: 12px 14px; border-radius: 10px; border:1px solid #dfe3e8; font-size: 16px; }
.form textarea { min-height: 120px; resize: vertical; }
.form .row { display:flex; gap:12px; }
.form button { margin-top: 8px; }

.footer { background:#0f1417; color:#b6c0c7; padding: 28px 20px; }
.footer a { color:#e4eefb; }
.badge { display:inline-block; font-size:.82rem; background: #0f1417; border:1px solid #2a3237; color:#d6e2ee; padding:6px 10px; border-radius: 999px; }

.sticky-call { position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 20; }
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .brand .name { display:none; }
  .hero { margin-top: 10vh; }
}
