:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #1b1f2a;
  --muted: #5f677a;
  --border: #dbe0ea;
  --brand: #2f6fed;
  --brand-strong: #174cb4;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow { width: min(860px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
  font-size: 1.1rem;
}

.nav-links { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.eyebrow {
  margin: 0;
  font-weight: 700;
  color: var(--brand-strong);
}

h1, h2, h3 { line-height: 1.2; }

h1 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.hero-image,
.shots-grid img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.section {
  padding: 3.2rem 0;
}

.section-muted {
  background: #eef2fa;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-subtitle {
  margin-top: -0.2rem;
  color: var(--muted);
}

.video-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-wrap img {
  display: block;
  width: 100%;
  min-height: 440px;
  border: 0;
}

.feature-grid,
.shots-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.shots-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

figure { margin: 0; }
figcaption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  background: var(--surface);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a { color: var(--brand-strong); text-decoration: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .video-wrap img { min-height: 280px; }
}
