:root {
  --navy: #163a73;
  --navy-2: #1e56a8;
  --ink: #1a2b45;
  --muted: #5b6b80;
  --paper: #f3f8fd;
  --white: #ffffff;
  --gold: #1e6fc9;
  --gold-2: #2b8ce8;
  --line: #d5e4f3;
  --ok: #1f7a4d;
  --shadow: 0 16px 40px rgba(22, 58, 115, 0.08);
  --radius: 16px;
  --max: 1120px;
  --sans: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { left: 8px; }

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: auto;
  height: 58px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name strong { font-size: 15px; letter-spacing: 0.04em; }
.brand-name span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
nav.links { display: flex; align-items: center; gap: 22px; }
nav.links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
nav.links a:hover, nav.links a[aria-current="page"] { color: var(--gold-2); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 18px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
}
.btn:hover { background: var(--navy); }
.btn.ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
}
.btn.ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--navy);
  border-radius: 8px;
  padding: 8px 10px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: var(--white);
  background: #071525 center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,36,0.25) 0%, rgba(7,18,36,0.82) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 72px 0 56px; }
.kicker {
  display: inline-block;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 14px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  max-width: 16ch;
  letter-spacing: -0.03em;
}
.hero p.lead {
  max-width: 58ch;
  color: #d5e2f2;
  font-size: 18px;
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.stats {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 28px 0;
}
.stat { padding: 8px 0; }
.stat b { display: block; font-size: 28px; color: var(--navy); }
.stat span { color: var(--muted); font-size: 13px; }

section { padding: 88px 0; }
.section-head { max-width: 680px; margin-bottom: 36px; }
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
}
.section-head p { margin: 0; color: var(--muted); }
.band { background: var(--paper); }

.grid-3, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.05fr 0.95fr; align-items: center; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shots {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
}
.shots img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}
.shots img.tall {
  height: 100%;
  min-height: 372px;
  grid-row: span 2;
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 20px; }
.card p, .card li { color: var(--muted); font-size: 15px; }
.card ul { margin: 10px 0 0; padding-left: 18px; }

.feature {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: 0; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); margin-top: 8px; flex: none;
}

.project {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.project:first-of-type { border-top: 0; }
.project .when { color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }
.project h3 { margin: 6px 0 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  background: var(--paper);
  color: var(--navy-2);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
}

.cta-band {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.cta-band h2 { margin: 0 0 8px; color: var(--navy); }
.cta-band .btn.ghost {
  color: var(--navy);
  border-color: var(--navy-2);
}
.cta-band .btn.ghost:hover {
  background: var(--navy);
  color: #fff;
}

footer.site {
  background: var(--paper);
  color: var(--muted);
  padding: 42px 0 24px;
  border-top: 1px solid var(--line);
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
footer a { color: var(--navy); text-decoration: none; }
.legal {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.page-hero {
  background: var(--navy) center/cover no-repeat;
  color: var(--white);
  padding: 72px 0 48px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,18,36,0.82), rgba(7,18,36,0.45));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin: 8px 0 10px; font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.03em; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; }
.info-block h3 { margin: 0 0 6px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.info-block { margin-bottom: 22px; }
form.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  margin-bottom: 14px;
  background: var(--white);
}
.note { font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .shots { grid-template-columns: 1fr 1fr; }
  .shots img.tall { grid-row: auto; min-height: 200px; height: 200px; }
  .grid-3, .grid-2, .stats .wrap, .project, .contact-grid, .foot, .cta-band {
    grid-template-columns: 1fr;
  }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .menu-toggle { display: block; }
  nav.links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 84px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 22px;
    gap: 14px;
  }
  nav.links.open { display: flex; }
}
